/* ============================================================
   MAXX GLOBAL MEDİKAL — Site Stili
   Tek dosya, framework yok. Renkler mevcut kurumsal kimlikten.
   ============================================================ */

/* ---------- Font (self-hosted, değişken ağırlık 400–800) ---------- */
@font-face {
  font-family: "Rethink Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/rethink-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Rethink Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/rethink-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Değişkenler ---------- */
:root {
  --primary: #08363b;
  --primary-dark: #052226;
  --accent: #00a8bc;
  --accent-dark: #008a9b;
  --accent-text: #007a89; /* açık zeminde okunabilirlik (WCAG 4.5:1) için koyulaştırılmış turkuaz */
  --soft: #edf9fc;
  --text: #67787a;
  --heading: #08363b;
  --white: #fff;
  --line: rgba(8, 54, 59, .1);
  --line-dark: rgba(255, 255, 255, .12);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(8, 54, 59, .08);
  --shadow-lg: 0 2px 6px rgba(8, 54, 59, .05), 0 24px 48px -12px rgba(8, 54, 59, .18);
  --ease: cubic-bezier(.22, .8, .3, 1);
  --grad-accent: linear-gradient(135deg, #00b9ce, var(--accent-dark));
  --container: 1200px;
  --font: "Rethink Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Seçim rengi ve klavye odağı — kurumsal detaylar */
::selection { background: rgba(0, 168, 188, .22); color: var(--primary); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-text); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.22; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
/* Ekran dışındaki bölümler ilk yüklemede hiç hesaplanmasın — kasmayı önler */
main > .section { content-visibility: auto; contain-intrinsic-size: auto 700px; }
.section-soft { background: var(--soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-text); font-weight: 700; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--grad-accent); border-radius: 2px; }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 12px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: .95rem;
  letter-spacing: .01em;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease),
              transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-dark { background: rgba(8, 54, 59, .82); color: var(--white); }
.btn-dark:hover { background: var(--primary-dark); color: var(--white); }
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--grad-accent); color: var(--white); box-shadow: 0 6px 16px -4px rgba(0, 138, 155, .45); }
.btn-accent:hover { color: var(--white); box-shadow: 0 12px 26px -6px rgba(0, 138, 155, .55); filter: brightness(1.06); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { color: var(--accent-dark); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.45); color: var(--white); background: rgba(255,255,255,.06); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.14); }

/* ---------- Üst bilgi çubuğu ---------- */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,.85); font-size: .85rem; border-bottom: 1px solid var(--line-dark); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar svg { width: 14px; height: 14px; flex: none; }
.topbar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar a:hover { color: var(--white); }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .lang a { font-weight: 700; }
.topbar .lang .active { color: var(--accent); }
@media (max-width: 620px) { .topbar .lang { display: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 96px; }
.brand img { width: 250px; height: 56px; object-fit: contain; }
@media (max-width: 620px) { .brand img { width: 170px; height: 38px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav a, .nav .nav-toggle-sub {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px; color: var(--white); font-weight: 600; font-size: .95rem;
  border-radius: 8px; width: 100%; text-align: left;
}
.nav a:hover, .nav .nav-toggle-sub:hover, .nav a[aria-current="page"] { color: var(--accent); }
.nav .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; flex: none; }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav > li:hover > .dropdown,
.nav > li:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 9px 14px; font-weight: 500; border-radius: 8px; font-size: .92rem; color: var(--primary); }
.dropdown a:hover { background: var(--soft); color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 12px; flex: none; }
.header-right .lang-switch { margin-right: 8px; }
.header-cta { flex: none; padding: 11px 22px; font-size: .92rem; }
.lang-switch { display: flex; gap: 12px; font-weight: 700; font-size: .92rem; }
.lang-switch a { color: rgba(255,255,255,.65); }
.lang-switch a.active, .lang-switch a:hover { color: var(--white); }
.lang-switch a.active { color: var(--accent); }
.lang-mobile { display: none; }
.btn svg { width: 15px; height: 15px; flex: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ---------- Mobil menü ---------- */
@media (max-width: 1080px) {
  .nav-burger { display: flex; }
  .header-right { display: none; }
  .lang-mobile { display: flex; margin-top: 20px; justify-content: center; gap: 20px; font-size: 1.05rem; }
  .lang-mobile a { color: var(--text); }
  .lang-mobile a.active { color: var(--accent); }
  .main-nav {
    position: fixed; inset: 0; top: 0; z-index: 99;
    background: var(--white); padding: 110px 24px 40px;
    overflow-y: auto; display: none;
  }
  body.nav-open .main-nav { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  body.nav-open .nav-burger span { background: var(--primary); }
  .nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a, .nav .nav-toggle-sub { padding: 12px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--primary); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: 0 0 0 16px; min-width: 0;
  }
  .dropdown a { font-size: .95rem; color: var(--text); }
  .nav .caret { margin-left: auto; }
  .nav-mobile-cta { margin-top: 20px; display: block; text-align: center; }
  .nav-mobile-cta + .nav-mobile-cta { margin-top: 10px; }
}
@media (min-width: 1081px) { .nav-mobile-cta { display: none; } }

/* ---------- Hero (ana sayfa, video arka planlı) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(0, 168, 188, .35), transparent 60%),
    linear-gradient(140deg, var(--primary-dark), var(--primary) 55%, #0a4a52);
  color: rgba(255, 255, 255, .88);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  /* DİKKAT: videoya filter/backdrop-filter EKLEME — her karede GPU'yu yorup
     sayfayı kastırıyor. Renk tonu overlay katmanıyla veriliyor. */
}
/* iOS'un video üzerine bindirdiği yerel oynat düğmesini gizle */
.hero-bg::-webkit-media-controls,
.hero-bg::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(5, 34, 38, .38)),
    linear-gradient(180deg, rgba(5, 34, 38, .58), rgba(5, 34, 38, .3) 50%, rgba(5, 34, 38, .8));
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(120px, 14vw, 180px); padding-bottom: clamp(20px, 3vw, 36px);
}
.hero-top {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 72px); align-items: end;
}
.hero h1 {
  color: var(--white); margin: 22px 0 0;
  font-size: clamp(2.2rem, 5.2vw, 4rem); line-height: 1.12;
}
.hero p.lead { font-size: clamp(1rem, 1.4vw, 1.1rem); margin: 0 0 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  padding: 8px 22px; font-size: .85rem; font-weight: 600; color: var(--white);
  letter-spacing: .05em;
  background: rgba(8, 54, 59, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-list {
  display: flex; justify-content: center; flex-wrap: wrap;
  margin-top: clamp(36px, 6vw, 70px); padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 30px; font-weight: 600; color: var(--white); font-size: .98rem;
}
.hero-list li + li { border-left: 1px solid rgba(255, 255, 255, .18); }
.hero-list .check { color: var(--accent); display: grid; place-items: center; flex: none; }
.hero-list .check svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
  .hero-top { grid-template-columns: 1fr; align-items: start; }
  .hero-list { flex-direction: column; align-items: flex-start; }
  .hero-list li { padding: 10px 4px; }
  .hero-list li + li { border-left: 0; }
}

/* ---------- Sayfa başlığı (alt sayfalar) ---------- */
.page-hero {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(0,168,188,.28), transparent 60%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: rgba(255,255,255,.8);
  padding: calc(clamp(48px, 7vw, 84px) + 100px) 0 clamp(48px, 7vw, 84px);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .9rem; font-weight: 600; }
.breadcrumb a { color: var(--accent); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(255,255,255,.4); }
.breadcrumb .current { color: rgba(255,255,255,.75); }

/* ---------- Ana sayfa: hakkımızda / istatistik ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-grid > *, .why-grid > *, .product-detail > * { min-width: 0; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-media .exp-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--accent); color: var(--white);
  border-radius: 12px; padding: 14px 20px; font-weight: 700; line-height: 1.3;
  box-shadow: 0 12px 24px rgba(0,168,188,.35);
}
.about-media .exp-badge strong { display: block; font-size: 1.6rem; font-weight: 800; }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
@media (max-width: 620px) { .stat-cards { grid-template-columns: 1fr; } }
.stat-card {
  background: linear-gradient(160deg, var(--soft), #f7fcfd 70%);
  border: 1px solid rgba(0, 168, 188, .12);
  border-radius: 18px; padding: 26px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card .num {
  display: block; font-size: 2.6rem; font-weight: 800; line-height: 1.1; margin-bottom: 8px;
  background: linear-gradient(120deg, var(--primary), var(--accent-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--heading);
}
.stat-card h3 { font-size: 1.02rem; font-weight: 500; color: #3f5254; line-height: 1.5; }
.stat-card hr { border: 0; border-top: 1px solid var(--line); margin: 14px 0; }
.stat-card p { display: flex; gap: 10px; align-items: baseline; font-size: .98rem; }
.stat-card p::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; transform: translateY(-1px); }

/* Dönen dünya (orijinaldeki rotating-globe efekti) */
.globe-wrap { display: grid; place-items: center; }
.rotating-globe { border-radius: 50%; animation: spin-globe 20s linear infinite; }
@keyframes spin-globe { to { transform: rotate(360deg); } }

/* ---------- Kart ızgaraları ---------- */
.grid { display: grid; gap: 24px; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

.card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0, 168, 188, .25); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; }
.card .num-badge {
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  border-radius: 13px; background: var(--soft); color: var(--accent);
  font-weight: 800; font-size: 1.05rem; margin-bottom: 18px;
  border: 1px solid rgba(0, 168, 188, .15);
}

/* ---------- Ürün kartları ---------- */
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0, 168, 188, .25); }
.product-card .media { position: relative; background: var(--soft); aspect-ratio: 4 / 3; overflow: hidden; }
.product-card .media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(8, 54, 59, .1));
  opacity: 0; transition: opacity .3s var(--ease);
}
.product-card:hover .media::after { opacity: 1; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .media img { transform: scale(1.06); }
.product-card .more { transition: gap .25s var(--ease), color .2s; }
.product-card:hover .more { gap: 10px; }
.product-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .tag { color: var(--accent-text); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { font-size: 1.05rem; }
.product-card h3 a { color: var(--heading); }
.product-card h3 a:hover { color: var(--accent); }
.product-card p { font-size: .9rem; }
.product-card .more { margin-top: auto; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Ürün detay ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.product-detail .media { position: sticky; top: 110px; background: var(--soft); border-radius: var(--radius); overflow: hidden; }
.product-detail .media img { width: 100%; }
.product-detail .content p { margin-bottom: 16px; }
.product-detail .content h2 { margin-bottom: 16px; }
.product-cta {
  margin-top: 26px; padding: 22px; border-radius: var(--radius);
  background: var(--soft); display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.product-cta strong { color: var(--heading); }
.product-cta p { color: #596a6c; } /* soft zeminde WCAG 4.5:1 */
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; } .product-detail .media { position: static; } }

/* ---------- Neden Biz ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; } }
.icon-box { display: flex; gap: 18px; align-items: flex-start; margin-top: 26px; }
.icon-box .icon {
  flex: none; width: 56px; height: 56px; border-radius: 15px;
  background: linear-gradient(150deg, var(--soft), #e0f4f8);
  border: 1px solid rgba(0, 168, 188, .15);
  color: var(--accent); display: grid; place-items: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.icon-box:hover .icon { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 20px -8px rgba(0, 138, 155, .35); }
.icon-box .icon svg { width: 26px; height: 26px; }
.icon-box h3 { font-size: 1.08rem; margin-bottom: 4px; }
.call-box {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 16px;
  background: var(--primary); color: rgba(255,255,255,.75);
  border-radius: 999px; padding: 12px 26px 12px 14px;
}
.call-box .icon { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: var(--white); display: grid; place-items: center; flex: none; }
.call-box .icon svg { width: 22px; height: 22px; }
.call-box a { display: block; color: var(--white); font-weight: 800; font-size: 1.15rem; line-height: 1.2; }
.call-box small { font-size: .8rem; }

/* ---------- Sertifikalar ---------- */
.cert-card { text-align: center; }
.cert-card img {
  width: 140px; margin: 0 auto 20px; border-radius: 12px;
  box-shadow: 0 0 0 1px var(--line), 0 8px 20px -8px rgba(8, 54, 59, .18);
  transition: transform .3s var(--ease);
}
.cert-card:hover img { transform: scale(1.04); }
.cert-card h3 { color: var(--accent-text); font-size: 1.3rem; margin-bottom: 8px; letter-spacing: .01em; }

/* ---------- CTA bandı ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 15% 120%, rgba(0,168,188,.4), transparent 60%),
    radial-gradient(500px 260px at 90% -20%, rgba(0,168,188,.22), transparent 55%),
    linear-gradient(120deg, var(--primary-dark), var(--primary));
  border-radius: 22px; color: rgba(255,255,255,.82);
  padding: clamp(36px, 6vw, 64px); text-align: center;
  box-shadow: 0 28px 56px -18px rgba(5, 34, 38, .45);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(120deg, rgba(0,168,188,.5), transparent 40%, transparent 70%, rgba(0,168,188,.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; }

/* ---------- Düz içerik (politika sayfaları) ---------- */
.prose { max-width: 820px; }
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 18px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a8bc' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.prose h2 { margin: 30px 0 14px; font-size: 1.4rem; }

/* ---------- İletişim ---------- */
.contact-card { text-align: center; padding: 40px 28px; }
.contact-card .icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--soft); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.contact-card .icon svg { width: 28px; height: 28px; }
.contact-card h3 { margin-bottom: 6px; }
.contact-card a { font-weight: 700; }

/* ---------- Form ---------- */
.form-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-lg); }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: rgba(0, 168, 188, .4); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { box-shadow: 0 0 0 3px rgba(0, 168, 188, .12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; color: var(--heading); font-size: .9rem; }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px;
  background: var(--white); width: 100%; transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-note { font-size: .85rem; margin-top: 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(0, 168, 188, .1), transparent 60%),
    var(--primary-dark);
  color: rgba(255,255,255,.72); font-size: .95rem;
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad-accent);
}
.site-footer .top { padding: clamp(48px, 7vw, 72px) 0; display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: clamp(28px, 5vw, 56px); }
@media (max-width: 900px) { .site-footer .top { grid-template-columns: 1fr; } }
.site-footer h2 { color: var(--white); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; }
.site-footer .logo img { width: 190px; margin-bottom: 20px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { flex: none; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); color: var(--accent); display: grid; place-items: center; }
.footer-contact .icon svg { width: 18px; height: 18px; }
.footer-contact strong { color: var(--white); display: block; font-size: .85rem; }
.site-footer .bottom { border-top: 1px solid var(--line-dark); padding: 20px 0; font-size: .85rem; }
.site-footer .bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Animasyonlar (orijinal temadaki WOW/GSAP efektlerinin karşılığı) ----------
   JS yüklenince <html> "js" sınıfı alır; JS yoksa hiçbir şey gizli kalmaz. */
.js [data-anim] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16, .84, .32, 1);
  transition-delay: var(--d, 0s);
}
.js [data-anim].in-view { opacity: 1; transform: none; }

/* Başlıklarda harf harf açılma (text-anime-style-3 karşılığı) */
.js .ta-word { display: inline-block; white-space: nowrap; }
.js .ta-char {
  display: inline-block; opacity: 0; transform: translateX(50px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, .9, .3, 1);
}
.js .ta.ta-in .ta-char { opacity: 1; transform: none; }

/* Görsel üzerinde parlama süpürmesi (image-anime birebir) */
.image-anime { position: relative; overflow: hidden; }
.image-anime::after {
  content: ""; position: absolute; width: 200%; height: 0; left: 50%; top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg); z-index: 1; pointer-events: none;
}
.image-anime:hover::after { height: 250%; transition: all .6s linear; background-color: transparent; }

/* Ürün grupları slaytı (orijinaldeki Swiper: 3/2/1 görünüm, 40px boşluk, 5 sn otomatik) */
.carousel-track {
  display: flex; gap: 40px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; cursor: grab;
}
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { flex: 0 0 calc((100% - 80px) / 3); scroll-snap-align: start; }
@media (max-width: 980px) { .carousel-track > * { flex-basis: calc((100% - 40px) / 2); } }
@media (max-width: 620px) { .carousel-track { gap: 24px; } .carousel-track > * { flex-basis: 100%; } }

/* Hareket azaltma tercihinde her şey görünür ve sabit kalır */
@media (prefers-reduced-motion: reduce) {
  .js [data-anim], .js .ta-char { opacity: 1; transform: none; }
}

/* ---------- Ürün teknik tablo + SSS ---------- */
.spec-tablo {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 22px 0 6px; font-size: .92rem;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 14px -6px rgba(8, 54, 59, .08);
}
.spec-tablo th, .spec-tablo td { text-align: left; padding: 13px 18px; vertical-align: top; }
.spec-tablo th {
  width: 40%; color: var(--heading); font-weight: 600; font-size: .88rem;
  background: var(--soft); border-right: 1px solid var(--line);
}
.spec-tablo td { color: #3f5254; font-weight: 500; }
.spec-tablo tr:not(:last-child) th, .spec-tablo tr:not(:last-child) td { border-bottom: 1px solid var(--line); }
.spec-tablo tr:nth-child(even) td { background: #fafdfe; }
.sss-bolum details {
  border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px;
  background: var(--white); overflow: hidden;
}
.sss-bolum summary {
  padding: 16px 20px; font-weight: 700; color: var(--heading); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.sss-bolum summary::-webkit-details-marker { display: none; }
.sss-bolum summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; font-weight: 800; flex: none; }
.sss-bolum details[open] summary::after { content: "−"; }
.sss-bolum details[open] summary { border-bottom: 1px solid var(--line); }
.sss-bolum details p {
  padding: 14px 20px 18px 38px;
  font-size: .92rem; color: #7d8c8e; line-height: 1.75;
}

/* ---------- Yardımcılar ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
