/* ============ TASARIM SİSTEMİ ============ */
:root {
  --primary: #0B72B5;
  --primary-dark: #085A91;
  --primary-deep: #0A2E4A;
  --navy: #082540;
  --sky: #E9F4FC;
  --sky-soft: #F4F9FD;
  --green: #0FA383;
  --green-dark: #0B8168;
  --wa: #25D366;
  --ink: #0F2E47;
  --text: #4A6378;
  --line: #DCE8F2;
  --bg-soft: #F5F9FC;
  --amber: #F6A62A;
  --danger: #E0554D;
  --white: #fff;
  --radius: 18px;
  --shadow-sm: 0 4px 14px rgba(8, 60, 100, .07);
  --shadow-md: 0 12px 34px rgba(8, 60, 100, .10);
  --shadow-lg: 0 24px 60px rgba(8, 60, 100, .14);
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --plus-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 32 32'%3E%3Cpath fill-rule='evenodd' d='M4.234,6.266c-1.409,1.45 -2.202,3.415 -2.202,5.464c-0,2.05 0.793,4.015 2.202,5.464l9.625,9.899c0.568,0.584 1.339,0.91 2.143,0.91c0.803,0 1.575,-0.326 2.143,-0.91c1.743,-1.793 9.617,-9.907 9.617,-9.907c1.409,-1.449 2.202,-3.414 2.202,-5.464c0,-2.05 -0.793,-4.014 -2.202,-5.464c-0,0 -0,0 -0,0c-1.419,-1.459 -3.345,-2.277 -5.352,-2.277c-2.007,-0 -3.932,0.818 -5.351,2.277c-0,0 -1.065,1.095 -1.065,1.095c0,0 -1.057,-1.087 -1.057,-1.087c-1.419,-1.459 -3.344,-2.277 -5.351,-2.277c-2.007,0 -3.933,0.818 -5.352,2.277m1.434,1.395c1.039,-1.069 2.448,-1.672 3.918,-1.672c1.47,0 2.878,0.603 3.917,1.672c0,-0 1.774,1.824 1.774,1.824c0.188,0.193 0.447,0.303 0.717,0.303c0.27,-0 0.529,-0.11 0.717,-0.303l1.782,-1.833c1.039,-1.068 2.447,-1.671 3.917,-1.671c1.47,-0 2.878,0.603 3.918,1.671c0.003,0.004 0.006,0.007 0.01,0.011c1.039,1.069 1.626,2.533 1.626,4.059c0,1.526 -0.587,2.991 -1.636,4.07c-0,-0 -7.874,8.114 -9.617,9.907c-0.188,0.193 -0.443,0.304 -0.709,0.304c-0.266,0 -0.521,-0.111 -0.709,-0.304l-9.625,-9.899c-1.049,-1.079 -1.636,-2.544 -1.636,-4.07c-0,-1.526 0.587,-2.99 1.636,-4.069' fill='%230B72B5' fill-opacity='0.06'/%3E%3Cpath d='M14.998,15.003l-1.997,-0c-0.552,-0 -1,0.448 -1,1c0,0.552 0.448,1 1,1l1.997,-0l-0,1.997c-0,0.552 0.448,1 1,1c0.552,-0 1,-0.448 1,-1l-0,-1.997l1.997,-0c0.552,-0 1,-0.448 1,-1c-0,-0.552 -0.448,-1 -1,-1l-1.997,-0l-0,-1.997c-0,-0.552 -0.448,-1 -1,-1c-0.552,0 -1,0.448 -1,1l-0,1.997Z' fill='%230B72B5' fill-opacity='0.06'/%3E%3C/svg%3E");
  --plus-pattern-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64"><path d="M32 24v16M24 32h16" stroke="%23ffffff" stroke-opacity=".05" stroke-width="3" stroke-linecap="round"/></svg>');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img,
svg {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

:focus-visible {
  outline: 3px solid rgba(11, 114, 181, .45);
  outline-offset: 2px;
  border-radius: 6px
}

::selection {
  background: var(--primary);
  color: #fff
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 96px 0;
  scroll-margin-top: 90px
}

.section--tint {
  background: var(--bg-soft)
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  z-index: 999
}

.skip-link:focus {
  left: 0
}

/* Bölüm başlıkları */
.sec-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center
}

.sec-head--left {
  margin: 0 0 40px;
  text-align: left
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 12px/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--sky);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px
}

.eyebrow i {
  color: var(--green);
  font-size: 12px
}

.sec-title {
  font: 700 clamp(1.7rem, 3.4vw, 2.45rem)/1.25 var(--font-display);
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 16px
}

.sec-sub {
  font-size: 17px;
  color: var(--text)
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 700 15.5px/1 var(--font-body);
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap
}

.btn i {
  font-size: 14px
}

.btn-primary {
  background: linear-gradient(135deg, #13B48F, #0C8F70);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 163, 131, .32)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 163, 131, .42)
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px)
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18)
}

.btn-light:hover {
  transform: translateY(-2px)
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .32)
}

.btn-wa:hover {
  transform: translateY(-2px)
}

.btn-sm {
  padding: 12px 22px;
  font-size: 14px
}

.btn-block {
  width: 100%
}


/* ============ HEADER ============ */
.header {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 12px;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: top 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.header.scrolled {
  top: 6px
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 24px;
  border-radius: .75rem;
  background: rgb(103 103 103 / 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 114, 181, 0.15);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled .nav {
  background: rgba(103 103 103 / 10%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border-color: var(--line)
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  /*background: linear-gradient(135deg, var(--primary), #0A98D8);*/
  /*box-shadow: 0 8px 18px rgba(11, 114, 181, .30)*/
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
}

.logo-text {
  font: 800 22px/1.05 var(--font-display);
  color: var(--ink);
  letter-spacing: -.02em
}

.logo-text em {
  font-style: normal;
  color: var(--green)
}

.logo-text small {
  display: block;
  font: 700 9.5px/1 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8AA3B8;
  margin-top: 5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-links a {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .2s
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green);
  transition: width .25s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--primary);
  font-size: 19px;
  align-items: center;
  justify-content: center
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 20px 20px;
  flex-direction: column;
  gap: 4px
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  padding: 13px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.mobile-menu a:hover {
  background: var(--sky-soft);
  color: var(--primary)
}

.mobile-menu .btn {
  margin-top: 12px;
  justify-content: center
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F0F8FE 0%, #FBFDFF 100%)
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-pattern);
  pointer-events: none
}

.hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -220px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 114, 181, .10), transparent 65%);
  pointer-events: none
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 120px 0 100px;
  z-index: 1
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 9px 18px;
  border-radius: 999px;
  font: 700 13px/1 var(--font-body);
  color: var(--primary);
  margin-bottom: 26px
}

.hero-eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.8s infinite
}

.hero h1 {
  font: 800 clamp(2.15rem, 4.6vw, 3.55rem)/1.14 var(--font-display);
  color: var(--ink);
  letter-spacing: -.028em;
  margin-bottom: 8px
}

.hero h1 .hl {
  color: var(--primary);
  position: relative;
  display: inline-block
}

.ekg {
  width: min(300px, 72%);
  height: 40px;
  margin: 2px 0 18px
}

.ekg path {
  fill: none;
  stroke: url(#ekgGrad);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  animation: ekg-draw 3.4s linear infinite
}

.hero-sub {
  font-size: 17.5px;
  max-width: 520px;
  margin-bottom: 32px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px
}

.hero-note i {
  color: var(--green)
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 11px 18px;
  border-radius: 14px;
  font: 700 13.5px/1.2 var(--font-body);
  color: var(--ink)
}

.chip i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 14px
}

.chip:nth-child(1) i {
  background: var(--sky);
  color: var(--primary)
}

.chip:nth-child(2) i {
  background: #E7F7F2;
  color: var(--green)
}

.chip:nth-child(3) i {
  background: #FEF3E2;
  color: var(--amber)
}

/* Hero görsel kompozisyonu */
.hero-visual {
  position: relative;
  min-height: 520px
}

.hv-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #D6EDFC, #EAF7F3 70%)
}

.hv-ring {
  position: absolute;
  width: 490px;
  height: 490px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed #B9DCF3;
  border-radius: 50%;
  animation: spin 46s linear infinite
}

.hv-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2
}

.hv-main {
  width: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 22px;
  animation: float-a 6s ease-in-out infinite
}

.hv-main-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px
}

.hv-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0A98D8);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0
}

.hv-name {
  font: 700 15.5px/1.25 var(--font-display);
  color: var(--ink)
}

.hv-role {
  font-size: 12.5px;
  font-weight: 600;
  color: #7E97AC;
  margin-top: 3px
}

.hv-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 13px
}

.hv-stars i {
  color: var(--amber);
  font-size: 12.5px
}

.hv-stars b {
  font-size: 13px;
  color: var(--ink);
  margin-left: 5px
}

.hv-stars span {
  font-size: 12px;
  color: #8AA3B8
}

.hv-status {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #EDFAF5;
  border-radius: 12px;
  padding: 11px 14px;
  font: 700 13px/1.2 var(--font-body);
  color: var(--green-dark)
}

.hv-status .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0
}

.hv-mini {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px
}

.hv-mini i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0
}

.hv-mini b {
  display: block;
  font: 700 14.5px/1.2 var(--font-display);
  color: var(--ink)
}

.hv-mini span {
  font-size: 12px;
  font-weight: 600;
  color: #8AA3B8
}

.hv-bpm {
  right: -6px;
  top: 56px;
  animation: float-b 7s ease-in-out infinite
}

.hv-bpm i {
  background: #FDEDEC;
  color: var(--danger)
}

.hv-appt {
  left: -8px;
  top: 12px;
  animation: float-c 5.5s ease-in-out infinite
}

.hv-appt i {
  background: #E7F7F2;
  color: var(--green)
}

.hv-badge {
  left: 26px;
  bottom: 44px;
  animation: float-b 6.5s ease-in-out infinite;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 13.5px/1 var(--font-display);
  color: var(--ink)
}

.hv-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.8s infinite
}

.hv-plus {
  position: absolute;
  color: rgba(11, 114, 181, .22);
  font-size: 20px;
  z-index: 1
}

/* ============ İSTATİSTİKLER ============ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 38px 0
}

.stat {
  text-align: center;
  padding: 8px 18px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border-right: none
}

.stat-num {
  font: 800 clamp(1.7rem, 3vw, 2.3rem)/1.1 var(--font-display);
  color: var(--primary);
  letter-spacing: -.02em
}

.stat-num .suffix {
  color: var(--green)
}

.stat-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #7E97AC;
  margin-top: 7px;
  text-transform: uppercase;
  letter-spacing: .06em
}

/* ============ HİZMETLER ============ */
.svc-tabs {
  display: inline-flex;
  gap: 6px;
  background: #EAF2F9;
  padding: 6px;
  border-radius: 999px;
  margin: 0 auto 44px
}

.svc-tabs-wrap {
  text-align: center
}

.tab-btn {
  padding: 13px 26px;
  border-radius: 999px;
  font: 700 14.5px/1 var(--font-body);
  color: var(--text);
  transition: .25s;
  display: inline-flex;
  align-items: center;
  gap: 9px
}

.tab-btn i {
  font-size: 13px
}

.tab-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm)
}

.svc-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.svc-panel.active {
  display: grid;
  animation: fade-up .45s ease
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
  position: relative;
  overflow: hidden
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--green));
  opacity: 0;
  transition: opacity .28s
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: #C9E2F4
}

.svc-card:hover::before {
  opacity: 1
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky), #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 21px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: .28s
}

.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--primary), #0A98D8);
  color: #fff;
  border-color: transparent
}

.svc-card h3 {
  font: 700 16.5px/1.35 var(--font-display);
  color: var(--ink);
  margin-bottom: 9px
}

.svc-card p {
  font-size: 14px;
  line-height: 1.65
}

/* ============ EVDE BAKIM NEDİR ============ */
.nedir-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 64px;
  align-items: center
}

.nedir-visual {
  position: relative;
  background: linear-gradient(160deg, #EAF5FD, #E9F8F3);
  border-radius: 28px;
  padding: 44px 34px;
  overflow: hidden
}

.nedir-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-pattern)
}

.nedir-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto
}

.nedir-chip {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 10px 16px;
  font: 700 12.5px/1 var(--font-body);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px
}

.nedir-chip i {
  color: var(--green);
  font-size: 12px
}

.nc-1 {
  top: 26px;
  right: 26px;
  animation: float-c 6s ease-in-out infinite
}

.nc-2 {
  bottom: 30px;
  left: 26px;
  animation: float-b 7s ease-in-out infinite
}

.nedir-body h3 {
  font: 700 18px/1.35 var(--font-display);
  color: var(--ink);
  margin: 26px 0 10px;
  display: flex;
  align-items: center;
  gap: 11px
}

.nedir-body h3 i {
  color: var(--primary);
  font-size: 16px
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 6px
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink)
}

.check-list li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E7F7F2;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px
}

.nedir-callout {
  display: flex;
  gap: 16px;
  background: var(--sky);
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
  margin-top: 28px;
  font-size: 14.5px
}

.nedir-callout i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px
}

/* ============ AVANTAJLAR ============ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.adv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  gap: 18px;
  transition: transform .28s, box-shadow .28s
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.adv-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0
}

.adv-card:nth-child(odd) .adv-icon {
  background: var(--sky);
  color: var(--primary)
}

.adv-card:nth-child(even) .adv-icon {
  background: #E7F7F2;
  color: var(--green)
}

.adv-card h3 {
  font: 700 16.5px/1.3 var(--font-display);
  color: var(--ink);
  margin-bottom: 7px
}

.adv-card p {
  font-size: 14px;
  line-height: 1.65
}

/* ============ SENARYOLAR ============ */
.sen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.sen-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .28s, box-shadow .28s;
  overflow: hidden
}

.sen-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.sen-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -46px;
  bottom: -46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 114, 181, .07), transparent 70%)
}

.sen-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0A98D8);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 22px rgba(11, 114, 181, .28)
}

.sen-card:nth-child(even) .sen-icon {
  background: linear-gradient(135deg, #13B48F, #0C8F70);
  box-shadow: 0 10px 22px rgba(15, 163, 131, .28)
}

.sen-card h3 {
  font: 700 17px/1.3 var(--font-display);
  color: var(--ink);
  margin-bottom: 9px
}

.sen-card p {
  font-size: 14px;
  line-height: 1.68
}

/* ============ NASIL ÇALIŞIR ============ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 8px
}

.steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 14%;
  right: 14%;
  border-top: 2.5px dashed #BBD8ED;
  z-index: 0
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px
}

.step-num {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow-sm)
}

.step-num i {
  font-size: 28px;
  color: var(--primary)
}

.step-num b {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #13B48F, #0C8F70);
  color: #fff;
  font: 800 14px/1 var(--font-display);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(15, 163, 131, .35)
}

.step h3 {
  font: 700 18px/1.3 var(--font-display);
  color: var(--ink);
  margin-bottom: 9px
}

.step p {
  font-size: 14.5px;
  max-width: 300px;
  margin: 0 auto
}

.steps-cta {
  text-align: center;
  margin-top: 52px
}

/* ============ SSS ============ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: box-shadow .25s, border-color .25s
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: #C9E2F4
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 21px 24px;
  font: 700 16px/1.4 var(--font-display);
  color: var(--ink)
}

.faq-q .fi {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s
}

.faq-item.open .fi {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin: 0 24px 0;
  padding-left: 0;
  padding-right: 0
}

/* ============ BAŞVURU FORMU ============ */
.apply {
  position: relative;
  background: linear-gradient(150deg, var(--primary-deep) 0%, #0C3F66 100%);
  overflow: hidden
}

.apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-pattern-light)
}

.apply::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -200px;
  bottom: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 163, 131, .16), transparent 65%)
}

.apply-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.apply-left .eyebrow {
  background: rgba(255, 255, 255, .10);
  color: #8FD4FF
}

.apply-left .sec-title {
  color: #fff
}

.apply-left .sec-sub {
  color: #B9D3E6;
  margin-bottom: 34px
}

.apply-phone {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px
}

.apply-phone .ic {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  place-items: center;
  color: #5BE0B8;
  font-size: 22px
}

.apply-phone b {
  display: block;
  font: 800 clamp(1.6rem, 3vw, 2.1rem)/1 var(--font-display);
  color: #fff;
  letter-spacing: .01em
}

.apply-phone span {
  font-size: 13.5px;
  font-weight: 700;
  color: #8FB6D2;
  text-transform: uppercase;
  letter-spacing: .08em
}

.apply-points {
  display: grid;
  gap: 15px;
  margin-bottom: 32px
}

.apply-points li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: #D7E8F5;
  font-size: 15px;
  font-weight: 600
}

.apply-points li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 163, 131, .22);
  color: #4FE0B4;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 38px 36px;
  box-shadow: var(--shadow-lg)
}

.form-card h3 {
  font: 700 21px/1.3 var(--font-display);
  color: var(--ink);
  margin-bottom: 6px
}

.form-card>p {
  font-size: 14px;
  margin-bottom: 26px
}

.f-group {
  margin-bottom: 18px
}

.f-group label {
  display: block;
  font: 700 13.5px/1 var(--font-body);
  color: var(--ink);
  margin-bottom: 9px
}

.f-group label span {
  color: var(--danger)
}

.f-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: #F8FBFD;
  font: 600 15px/1.4 var(--font-body);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s
}

.f-control::placeholder {
  color: #9FB4C6;
  font-weight: 500
}

.f-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 114, 181, .12)
}

.f-group.err .f-control {
  border-color: var(--danger);
  background: #FEF6F5
}

.f-msg {
  display: none;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--danger);
  margin-top: 7px
}

.f-group.err .f-msg {
  display: block
}

select.f-control {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path d="M1 1l5 5 5-5" stroke="%234A6378" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center
}

.f-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0;
  font-size: 13.5px;
  line-height: 1.55
}

.f-check input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer
}

.f-check a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline
}

.f-check.err label {
  color: var(--danger)
}

.form-success {
  display: none;
  text-align: center;
  padding: 34px 10px
}

.form-success .ok {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #13B48F, #0C8F70);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 36px;
  animation: pop-in .5s cubic-bezier(.5, 1.6, .4, 1)
}

.form-success h3 {
  margin-bottom: 10px
}

.form-success p {
  font-size: 15px;
  margin-bottom: 6px
}

.form-success .mini {
  font-size: 13.5px;
  color: #8AA3B8
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .28s, box-shadow .28s;
  display: flex;
  flex-direction: column
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md)
}

.blog-cover {
  position: relative;
  height: 158px;
  display: grid;
  place-items: center;
  overflow: hidden
}

.blog-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-pattern-light)
}

.bc-1 {
  background: linear-gradient(135deg, #0B72B5, #0A98D8)
}

.bc-2 {
  background: linear-gradient(135deg, #0FA383, #0B8168)
}

.bc-3 {
  background: linear-gradient(135deg, #0A2E4A, #155A8A)
}

.blog-cover i {
  position: relative;
  font-size: 52px;
  color: rgba(255, 255, 255, .9)
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  font: 700 11.5px/1 var(--font-body);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: #8AA3B8;
  margin-bottom: 11px
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary)
}

.blog-body h3 {
  font: 700 17px/1.4 var(--font-display);
  color: var(--ink);
  margin-bottom: 10px
}

.blog-body p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px
}

.blog-link {
  margin-top: auto;
  font: 700 14px/1 var(--font-body);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.blog-link i {
  transition: transform .22s
}

.blog-card:hover .blog-link i {
  transform: translateX(5px)
}

/* ============ İLETİŞİM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 26px
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: center;
  transition: transform .28s, box-shadow .28s
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--sky);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 21px
}

.contact-card:nth-child(2) .contact-icon {
  background: #E7F7F2;
  color: var(--green)
}

.contact-card:nth-child(3) .contact-icon {
  background: #FEF3E2;
  color: var(--amber)
}

.contact-card h3 {
  font: 700 16.5px/1.3 var(--font-display);
  color: var(--ink);
  margin-bottom: 8px
}

.contact-card p {
  font-size: 14.5px;
  margin-bottom: 12px
}

.contact-card b {
  color: var(--ink)
}

.contact-card a.mini-link {
  font: 700 13.5px/1 var(--font-body);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.map-panel {
  position: relative;
  height: 340px;
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(11, 114, 181, .07) 39px, rgba(11, 114, 181, .07) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(11, 114, 181, .07) 39px, rgba(11, 114, 181, .07) 40px),
    linear-gradient(140deg, #EDF5FB, #F6FBF9)
}

.map-road {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(11, 114, 181, .10)
}

.map-road.r1 {
  width: 140%;
  height: 26px;
  top: 42%;
  left: -20%;
  transform: rotate(-7deg)
}

.map-road.r2 {
  width: 26px;
  height: 140%;
  left: 62%;
  top: -20%;
  transform: rotate(9deg)
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -100%);
  text-align: center;
  z-index: 2
}

.map-pin i {
  font-size: 46px;
  color: var(--danger);
  filter: drop-shadow(0 8px 14px rgba(224, 85, 77, .4));
  animation: float-c 3.4s ease-in-out infinite
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 52px;
  height: 14px;
  border-radius: 50%;
  background: rgba(224, 85, 77, .22);
  animation: pulse-shadow 3.4s ease-in-out infinite
}

.map-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  z-index: 2
}

.map-label b {
  display: block;
  font: 700 14.5px/1.3 var(--font-display);
  color: var(--ink)
}

.map-label span {
  font-size: 13px;
  color: var(--text)
}

.map-open {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: #A9C4D9;
  position: relative;
  overflow: hidden
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-pattern-light);
  opacity: .6
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 70px 0 50px
}

.footer .logo-text {
  color: #fff
}

.footer .logo-text small {
  color: #6E93AF
}

.footer-about {
  font-size: 14px;
  line-height: 1.75;
  margin: 20px 0 24px;
  max-width: 300px
}

.socials {
  display: flex;
  gap: 11px
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  display: grid;
  place-items: center;
  color: #CFE4F5;
  font-size: 15px;
  transition: .25s
}

.socials a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px)
}

.footer h4 {
  font: 700 15px/1 var(--font-display);
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: .02em
}

.footer-links {
  display: grid;
  gap: 12px
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color .2s, gap .2s
}

.footer-links a i {
  font-size: 10px;
  color: var(--green)
}

.footer-links a:hover {
  color: #fff;
  gap: 12px
}

.footer-contact {
  display: grid;
  gap: 16px
}

.footer-contact li {
  display: flex;
  gap: 13px;
  font-size: 14px;
  font-weight: 600
}

.footer-contact i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #5BE0B8;
  font-size: 14px;
  flex-shrink: 0
}

.footer-contact b {
  color: #fff;
  display: block
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px
}

.footer-legal {
  display: flex;
  gap: 22px
}

.footer-legal a:hover {
  color: #fff
}

.footer-note {
  position: relative;
  font-size: 12px;
  color: #6E93AF;
  padding-bottom: 26px;
  max-width: 760px
}

/* ============ YÜZEN ÖĞELER ============ */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 27px;
  z-index: 90;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
  transition: transform .25s
}

.wa-float:hover {
  transform: scale(1.08)
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: wa-pulse 2s infinite
}

.wa-tip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font: 700 12.5px/1 var(--font-body);
  padding: 9px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s
}

.wa-float:hover .wa-tip {
  opacity: 1
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 95;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 6px;
  gap: 4px;
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 2px;
  border-radius: 22px;
  font: 600 11px/1 var(--font-body);
  color: var(--ink);
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1), background-color 0.2s;
}

.mobile-bar a:active {
  transform: scale(0.92);
  background-color: rgba(0, 0, 0, 0.04);
}

.mobile-bar a i {
  font-size: 22px;
  margin-bottom: 2px;
}

.mb-call i {
  color: #34C759;
}

.mb-wa i {
  color: #25D366;
}

.mb-ai i {
  color: var(--primary);
}

.mb-form i {
  color: #007AFF;
}

/* ============ ANİMASYONLAR ============ */
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 163, 131, .45)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(15, 163, 131, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(15, 163, 131, 0)
  }
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(1.35);
    opacity: 0
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes float-a {

  0%,
  100% {
    transform: translate(-50%, -50%)
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px))
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

@keyframes float-c {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

@keyframes ekg-draw {
  0% {
    stroke-dashoffset: 460
  }

  55% {
    stroke-dashoffset: 0
  }

  100% {
    stroke-dashoffset: -460
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pop-in {
  from {
    transform: scale(.4);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes pulse-shadow {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: .8
  }

  50% {
    transform: translateX(-50%) scale(.72);
    opacity: .45
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============ RESPONSIVE ============ */
@media(max-width:1040px) {
  .svc-panel {
    grid-template-columns: repeat(3, 1fr)
  }

  .hero-inner {
    gap: 36px
  }
}

@media(max-width:900px) {
  .section {
    padding: 72px 0
  }

  .nav-links,
  .nav-cta .btn-outline {
    display: none
  }

  .nav-toggle {
    display: inline-flex
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 0 56px
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 16px
  }

  .hero-content {
    text-align: center;
    margin-top: 45px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions {
    justify-content: center
  }

  .hero-note {
    justify-content: center
  }

  .trust-chips {
    justify-content: center
  }

  .nedir-grid,
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .adv-grid,
  .sen-grid,
  .blog-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .svc-panel {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto
  }

  .steps::before {
    display: none
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat {
    border-right: none;
    padding: 16px 12px
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--line)
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line)
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 38px
  }
}

@media(max-width:768px) {
  body {
    padding-bottom: 110px
  }

  .mobile-bar {
    display: grid
  }

  .wa-float {
    display: none
  }



  /* Header optimizasyonu */
  .header {
    padding: 0 16px;
    top: 12px;
  }

  .nav {
    padding: 8px 16px;
    border-radius: 12px;
    background: rgb(103 103 103 / 10%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 114, 181, 0.15);
    box-shadow: var(--shadow-sm);
  }

  .header.scrolled .nav {
    background: rgba(103, 103, 103, 0.15);
    border-color: var(--line);
  }

  .mobile-menu {
    left: 16px;
    right: 16px;
    border-radius: 14px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 17px
  }

  .logo-text {
    font-size: 19px
  }

  .logo-text small {
    font-size: 8.5px;
    letter-spacing: .16em;
    margin-top: 3px
  }

  .nav-cta .btn-primary.btn-sm {
    padding: 10px 18px;
    font-size: 13px
  }

  /* Hero görsel taşma düzeltmesi */
  .hero-visual {
    overflow: hidden
  }

  .hv-ring {
    width: 380px;
    height: 380px
  }

  .hv-orb {
    width: 320px;
    height: 320px
  }

  .hv-main {
    width: 260px;
    padding: 18px
  }

  .hv-name {
    font-size: 14px
  }

  .hv-role {
    font-size: 11.5px
  }

  .hv-mini {
    padding: 11px 14px
  }

  .hv-mini i {
    width: 34px;
    height: 34px;
    font-size: 14px
  }

  .hv-mini b {
    font-size: 13px
  }

  .hv-mini span {
    font-size: 11px
  }

  /* EKG küçültme */
  .ekg {
    width: min(220px, 60%);
    height: 30px;
    margin: 0 auto 14px
  }

  /* Stats */
  .stat-num {
    font-size: clamp(1.4rem, 5vw, 1.8rem)
  }

  .stat-label {
    font-size: 12px
  }

  /* SSS */
  .faq-q {
    padding: 18px 18px;
    font-size: 14.5px;
    gap: 14px
  }

  .faq-q .fi {
    width: 30px;
    height: 30px;
    font-size: 11px
  }

  .faq-a-inner {
    padding: 0 18px 18px;
    font-size: 14px;
    margin: 0 18px
  }

  /* İletişim */
  .map-panel {
    height: 280px;
    border-radius: 18px
  }

  .map-pin i {
    font-size: 36px
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 14px
  }
}

@media(max-width:600px) {
  .container {
    padding: 0 16px
  }

  .section {
    padding: 52px 0
  }



  /* Header ince ayar */
  .header {
    padding: 0 12px;
    top: 12px;
  }

  .mobile-menu {
    left: 12px;
    right: 12px;
    padding: 10px 16px 20px
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 15px;
    border-radius: 9px
  }

  .logo-text {
    font-size: 16px
  }

  .logo-text small {
    font-size: 7px;
    letter-spacing: .12em
  }

  .nav {
    gap: 6px;
    padding: 6px 10px;
  }

  .nav-cta {
    gap: 6px;
  }

  .nav-cta .btn-primary {
    padding: 6px 10px;
    font-size: 10.5px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 9px
  }

  /* Mobile menu link alignment */
  .mobile-menu a {
    padding: 12px 10px;
    font-size: 14.5px
  }

  /* Hero */
  .hero-inner {
    padding: 36px 0 44px
  }

  .hero-eyebrow {
    font-size: 11.5px;
    padding: 7px 14px;
    margin-bottom: 20px
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    margin-bottom: 4px
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px
  }

  .hero-actions {
    gap: 10px
  }

  .hero-actions .btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 14.5px
  }

  .hero-note {
    font-size: 13px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    justify-content: center
  }

  .trust-chips {
    gap: 8px
  }

  .chip {
    padding: 9px 14px;
    font-size: 12.5px;
    border-radius: 12px
  }

  .chip i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 12px
  }

  /* Hero visual */
  .hero-visual {
    min-height: 360px;
    transform: none;
    margin: 0 -8px
  }

  .hv-ring {
    width: 340px;
    height: 340px
  }

  .hv-orb {
    width: 290px;
    height: 290px
  }

  .hv-main {
    width: 240px;
    padding: 16px
  }

  .hv-main-head {
    gap: 10px;
    margin-bottom: 12px
  }

  .hv-avatar {
    width: 44px;
    height: 44px;
    font-size: 18px
  }

  .hv-name {
    font-size: 13.5px
  }

  .hv-role {
    font-size: 11px
  }

  .hv-stars {
    padding: 8px 0;
    margin-bottom: 10px
  }

  .hv-stars i {
    font-size: 11px
  }

  .hv-stars b {
    font-size: 12px
  }

  .hv-stars span {
    font-size: 11px
  }

  .hv-status {
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 10px
  }

  .hv-status .dot {
    width: 7px;
    height: 7px
  }

  .hv-bpm {
    right: 0;
    top: 40px
  }

  .hv-appt {
    left: 0;
    top: 6px
  }

  .hv-badge {
    left: 14px;
    bottom: 30px;
    padding: 10px 14px;
    font-size: 12px
  }

  .hv-badge .dot {
    width: 8px;
    height: 8px
  }

  .hv-plus {
    font-size: 14px
  }

  /* Gridler tek sütun */
  .adv-grid,
  .sen-grid,
  .blog-grid,
  .contact-grid,
  .svc-panel {
    grid-template-columns: 1fr
  }

  /* Hizmet sekmeleri */
  .svc-tabs {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap
  }

  .tab-btn {
    padding: 11px 16px;
    font-size: 12.5px;
    gap: 6px
  }

  .tab-btn i {
    font-size: 11px
  }

  /* Kartlar */
  .svc-card {
    padding: 22px 20px
  }

  .svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
    margin-bottom: 16px
  }

  .svc-card h3 {
    font-size: 15.5px
  }

  .svc-card p {
    font-size: 13.5px
  }

  /* Avantajlar */
  .adv-card {
    padding: 22px 20px;
    gap: 14px
  }

  .adv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px
  }

  .adv-card h3 {
    font-size: 15px
  }

  .adv-card p {
    font-size: 13.5px
  }

  /* Senaryolar */
  .sen-card {
    padding: 24px 20px
  }

  .sen-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 16px
  }

  .sen-card h3 {
    font-size: 15.5px
  }

  .sen-card p {
    font-size: 13.5px
  }

  /* Nasıl çalışır */
  .step-num {
    width: 72px;
    height: 72px
  }

  .step-num i {
    font-size: 24px
  }

  .step-num b {
    width: 28px;
    height: 28px;
    font-size: 12px
  }

  .step h3 {
    font-size: 16px
  }

  .step p {
    font-size: 13.5px
  }

  .steps-cta {
    margin-top: 36px
  }

  /* Bölüm başlıkları */
  .sec-head {
    margin-bottom: 36px
  }

  .sec-title {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
    margin-bottom: 12px
  }

  .sec-sub {
    font-size: 15px
  }

  .eyebrow {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 14px
  }

  /* Başvuru formu */
  .apply-grid {
    gap: 32px
  }

  .apply-phone .ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 18px
  }

  .apply-phone b {
    font-size: clamp(1.3rem, 5vw, 1.7rem)
  }

  .apply-phone span {
    font-size: 12px
  }

  .apply-points li {
    font-size: 14px
  }

  .form-card {
    padding: 24px 18px;
    border-radius: 20px
  }

  .form-card h3 {
    font-size: 18px
  }

  .f-group {
    margin-bottom: 14px
  }

  .f-group label {
    font-size: 13px;
    margin-bottom: 7px
  }

  .f-control {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 11px
  }

  .f-check {
    font-size: 12.5px;
    gap: 10px;
    margin: 16px 0
  }

  .f-check input {
    width: 17px;
    height: 17px
  }

  .btn-block {
    font-size: 14.5px;
    padding: 14px 20px
  }

  /* Blog */
  .blog-cover {
    height: 130px
  }

  .blog-cover i {
    font-size: 40px
  }

  .blog-body {
    padding: 18px
  }

  .blog-body h3 {
    font-size: 15.5px
  }

  .blog-body p {
    font-size: 13.5px;
    margin-bottom: 14px
  }

  .blog-meta {
    font-size: 11.5px;
    gap: 12px
  }

  /* İletişim */
  .contact-card {
    padding: 22px 18px
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 18px
  }

  .contact-card h3 {
    font-size: 15px
  }

  .contact-card p {
    font-size: 13.5px
  }

  .map-panel {
    height: 240px;
    border-radius: 16px
  }

  .map-pin i {
    font-size: 32px
  }

  .map-label {
    padding: 10px 14px;
    border-radius: 10px;
    left: 12px;
    bottom: 12px
  }

  .map-label b {
    font-size: 13px
  }

  .map-label span {
    font-size: 11.5px
  }

  .map-open {
    top: auto;
    bottom: 12px;
    right: 12px
  }

  .map-open.btn-sm {
    padding: 10px 14px;
    font-size: 12px
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 32px
  }

  .footer-about {
    font-size: 13.5px;
    margin: 16px 0 20px
  }

  .footer h4 {
    font-size: 14px;
    margin-bottom: 16px
  }

  .footer-links {
    gap: 10px
  }

  .footer-links a {
    font-size: 13.5px
  }

  .footer-contact li {
    font-size: 13px
  }

  .footer-contact i {
    width: 32px;
    height: 32px;
    font-size: 13px
  }

  .footer-bottom {
    font-size: 12px;
    padding: 18px 0
  }

  .footer-legal {
    gap: 12px;
    font-size: 12px
  }

  .footer-note {
    font-size: 11px;
    padding-bottom: 18px
  }

  /* Nedir */
  .nedir-visual {
    padding: 28px 20px;
    border-radius: 20px
  }

  .nedir-chip {
    padding: 8px 12px;
    font-size: 11.5px
  }

  .nedir-body h3 {
    font-size: 16px;
    margin: 20px 0 8px
  }

  .nedir-callout {
    padding: 14px 16px;
    font-size: 13.5px
  }

  .check-list li {
    font-size: 14px
  }

  .check-list li i {
    width: 22px;
    height: 22px;
    font-size: 10px
  }


}

/* ============ EKSTRA KÜÇÜK EKRANLAR (≤ 400px) ============ */
@media(max-width:400px) {
  .container {
    padding: 0 14px
  }

  .section {
    padding: 44px 0
  }

  .hero-inner {
    padding: 100px 0 36px
  }

  .hero-eyebrow {
    font-size: 10.5px;
    padding: 6px 12px
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem)
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 20px
  }

  .hero-actions .btn {
    padding: 14px 20px;
    font-size: 13.5px
  }

  .hero-note {
    font-size: 12px
  }

  .chip {
    padding: 8px 10px;
    font-size: 11.5px
  }

  .chip i {
    width: 24px;
    height: 24px;
    font-size: 11px;
    border-radius: 7px
  }

  /* Hero visual daha da küçült */
  .hero-visual {
    min-height: 300px;
    margin: 0 -12px
  }

  .hv-ring {
    width: 280px;
    height: 280px
  }

  .hv-orb {
    width: 240px;
    height: 240px
  }

  .hv-main {
    width: 210px;
    padding: 14px
  }

  .hv-avatar {
    width: 38px;
    height: 38px;
    font-size: 15px
  }

  .hv-name {
    font-size: 12.5px
  }

  .hv-role {
    font-size: 10px
  }

  .hv-stars i {
    font-size: 10px
  }

  .hv-status {
    padding: 7px 10px;
    font-size: 11px
  }

  .hv-mini {
    padding: 9px 12px;
    gap: 8px
  }

  .hv-mini i {
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 9px
  }

  .hv-mini b {
    font-size: 12px
  }

  .hv-mini span {
    font-size: 10px
  }

  .hv-badge {
    padding: 8px 12px;
    font-size: 11px;
    left: 8px;
    bottom: 20px
  }

  .hv-bpm {
    right: -4px;
    top: 30px
  }

  .hv-appt {
    left: -4px;
    top: 2px
  }

  /* Başlıklar */
  .sec-title {
    font-size: clamp(1.2rem, 5vw, 1.55rem)
  }

  .sec-sub {
    font-size: 14px
  }

  /* Kartlar */
  .svc-card {
    padding: 18px 16px
  }

  .adv-card {
    padding: 18px 16px
  }

  .sen-card {
    padding: 20px 16px
  }

  .form-card {
    padding: 20px 14px
  }



  .header {
    padding: 0 8px;
    top: 8px;
  }

  .mobile-menu {
    left: 8px;
    right: 8px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border-radius: 8px
  }

  .logo-text {
    font-size: 14.5px
  }

  .logo-text small {
    font-size: 6px
  }

  .nav {
    padding: 6px 8px;
    gap: 4px;
  }

  .nav-cta {
    gap: 4px;
  }

  .nav-cta .btn-primary {
    padding: 6px 8px;
    font-size: 9.5px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    font-size: 14px
  }
}

/* Hareket azaltma tercihi */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ============ AI CHAT WIDGET STİLLERİ ============ */
:root {
  --ai-primary: #0B72B5;
  --ai-primary-light: #E9F4FC;
  --ai-navy: #082540;
  --ai-gray-bg: #F5F9FC;
  --ai-border: #DCE8F2;
  --ai-bubble-user: #0B72B5;
  --ai-bubble-assistant: #FFFFFF;
  --ai-text-dark: #0F2E47;
  --ai-text-muted: #6C8294;
}

/* Tetikleyici Buton (Floating Button) */
.ai-chat-trigger {
  position: fixed;
  bottom: 100px; /* WhatsApp butonunun üstünde dursun */
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(11, 114, 181, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chat-trigger:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(11, 114, 181, 0.5);
}

.ai-chat-trigger:active {
  transform: scale(0.95);
}

/* Butonun yanındaki küçük rozet yazı */
.ai-badge-text {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font: 700 12.5px/1 var(--font-body);
  padding: 9px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.ai-chat-trigger:hover .ai-badge-text {
  opacity: 1;
}

/* Dalgalanma Animasyonu (Pulse) */
.ai-trigger-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
  z-index: -1;
  animation: ai-pulse 2s infinite;
}

@keyframes ai-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Chat Penceresi */
.ai-chat-window {
  position: fixed;
  bottom: 175px;
  right: 24px;
  width: 380px;
  height: 550px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--ai-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Giriş çıkış animasyonları */
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transform-origin: bottom right;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-window.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.ai-chat-header {
  background: linear-gradient(135deg, var(--ai-navy) 0%, #0A2E4A 100%);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.ai-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.2;
}

.ai-status {
  font-size: 11px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 8px var(--green);
}

.ai-chat-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0 5px;
}

.ai-chat-close:hover {
  color: var(--white);
  transform: scale(1.1);
}

/* Mesajlaşma Alanı */
.ai-chat-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--ai-gray-bg);
  background-image: var(--plus-pattern); /* Sitenin deseniyle uyum */
}

/* Mesaj Baloncukları */
.ai-msg-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  animation: ai-bubble-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(8, 60, 100, 0.03);
}

@keyframes ai-bubble-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-msg-bubble.assistant {
  align-self: flex-start;
  background: var(--ai-bubble-assistant);
  color: var(--ai-text-dark);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(220, 232, 242, 0.8);
}

.ai-msg-bubble.user {
  align-self: flex-end;
  background: var(--ai-bubble-user);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.ai-msg-bubble a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

/* Hazır Öneriler */
.ai-suggestions-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  animation: ai-bubble-in 0.3s ease;
}

.ai-suggest-btn {
  background: #FFFFFF;
  border: 1px solid var(--ai-border);
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ai-primary);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.ai-suggest-btn:hover {
  background: var(--ai-primary-light);
  border-color: var(--ai-primary);
  transform: translateY(-1px);
}

/* Yazıyor Animasyonu (Typing) */
.ai-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 18px !important;
}

.ai-typing .dot {
  width: 6px;
  height: 6px;
  background: var(--ai-text-muted);
  border-radius: 50%;
  opacity: 0.6;
  animation: ai-type-dot 1.2s infinite ease-in-out;
}

.ai-typing .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-typing .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes ai-type-dot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* Alt Input Alanı */
.ai-chat-input-area {
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--ai-border);
}

#aiChatForm {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

#aiChatInput {
  flex-grow: 1;
  border: 1.5px solid var(--ai-border);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  background: #F8FBFD;
  transition: border-color 0.2s, background 0.2s;
}

#aiChatInput:focus {
  border-color: var(--ai-primary);
  background: #FFFFFF;
}

#aiChatSend {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ai-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s, transform 0.1s;
}

#aiChatSend:hover {
  background: var(--primary-dark);
}

#aiChatSend:active {
  transform: scale(0.95);
}

/* Chat Footer Linkleri */
.ai-chat-footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ai-text-muted);
}

.ai-to-wa {
  color: var(--green) !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.ai-to-wa:hover {
  color: var(--green-dark) !important;
}

/* ============ RESPONSIVE (MOBİL UYUMLULUK) ============ */
@media (max-width: 767px) {
  /* Mobilde yüzen butonu gizleyip alt bardaki AI Asistan butonunu kullanıyoruz */
  .ai-chat-trigger {
    display: none !important;
  }

  /* Sohbet Penceresini Tam Ekran Yap */
  .ai-chat-window {
    bottom: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    transform: translateY(100%) !important; /* Aşağıdan yukarı kayarak gelsin */
  }

  .ai-chat-window.open {
    transform: translateY(0) !important;
  }
  
  .ai-chat-header {
    padding: 18px 16px;
    border-radius: 0;
  }
  
  .ai-chat-messages {
    padding: 16px;
  }
  
  .ai-chat-input-area {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px)); /* Safe area (notch) desteği */
  }
}

/* AI Chat Tablo Stilleri */
.ai-table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 12px 0;
  border-radius: 12px;
  border: 1px solid var(--ai-border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.ai-table-responsive table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.ai-table-responsive th {
  background: var(--ai-navy);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 700;
}

.ai-table-responsive td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--ai-border);
  color: var(--ai-text-dark);
  line-height: 1.5;
}

.ai-table-responsive tr:last-child td {
  border-bottom: none;
}

.ai-table-responsive tr:nth-child(even) {
  background: #F8FBFD;
}

/* AI Chat Liste Stilleri */
.ai-msg-bubble ul {
  margin: 8px 0 8px 20px;
  padding: 0;
}

.ai-msg-bubble li {
  margin-bottom: 5px;
}
