/* ==========================================================================
   SEVEN GLOBAL — Kurumsal Dış Ticaret Web Sitesi
   Ana stil dosyası
   ========================================================================== */

/* ---------- 1. Değişkenler / Tasarım Sistemi ---------- */
:root {
  --navy-950: #050f1f;
  --navy-900: #08192f;
  --navy-800: #0b2244;
  --navy-700: #12315b;
  --navy-600: #1b4374;
  --navy-050: #eef3f9;

  --gold-600: #a8862a;
  --gold-500: #c9a227;
  --gold-400: #dcbb52;
  --gold-100: #f7eecf;

  --ink: #131c28;
  --body: #4a5a6b;
  --muted: #7a8899;
  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --soft: #f5f8fb;
  --white: #ffffff;

  --success: #1f9d63;
  --danger: #d64545;

  --ff-head: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --sh-sm: 0 1px 2px rgba(8, 25, 47, .06), 0 2px 6px rgba(8, 25, 47, .05);
  --sh-md: 0 6px 18px rgba(8, 25, 47, .08);
  --sh-lg: 0 18px 48px rgba(8, 25, 47, .14);
  --sh-gold: 0 10px 28px rgba(201, 162, 39, .28);

  --wrap: 1240px;
  --gut: 24px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --t: .35s var(--ease);

  --header-h: 84px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); }
h4 { font-size: 1.08rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold-500); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Yerleşim yardımcıları ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }
.section--navy { background: var(--navy-900); color: rgba(255, 255, 255, .78); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 12px 20px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- 4. Bölüm başlıkları ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}
.section--navy .eyebrow { color: var(--gold-400); }

.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head p { font-size: 1.05rem; }

.lead { font-size: 1.1rem; color: var(--body); }

/* ---------- 5. Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-sm);
  font-family: var(--ff-head);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--gold { background: var(--gold-500); color: var(--navy-950); }
.btn--gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--sh-gold); }

.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn--ghost { border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; transform: translateY(-2px); }

.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--navy-800); color: var(--navy-800); transform: translateY(-2px); }

.btn--sm { padding: 11px 20px; font-size: .85rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy-800);
  transition: var(--t);
}
.link-arrow svg { width: 16px; height: 16px; transition: var(--t); }
.link-arrow:hover { color: var(--gold-600); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 6. Üst bilgi çubuğu ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; transition: var(--t); }
.topbar__item svg { width: 15px; height: 15px; color: var(--gold-500); flex: none; }
a.topbar__item:hover { color: #fff; }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-sm);
  padding: 3px;
}
.lang a {
  padding: 3px 11px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 3px;
  transition: var(--t);
}
.lang a:hover { color: #fff; }
.lang a.is-on { background: var(--gold-500); color: var(--navy-950); }

/* ---------- 7. Header / Navigasyon ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--t), background var(--t);
}
.header.is-stuck { box-shadow: var(--sh-md); }
.header.is-stuck .nav { min-height: 70px; }
.header.is-stuck .brand__logo { height: 48px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo {
  display: block;
  height: 58px;
  width: auto;
  flex: none;
  transition: opacity var(--t), height var(--t);
}
.brand:hover .brand__logo { opacity: .82; }
.brand__logo--lg { height: 68px; }
.brand__logo--sm { height: 42px; }

.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--ff-head);
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--navy-900);
}
.brand__name span { color: var(--gold-600); }
.brand__sub {
  font-size: .61rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }
.menu > li > a {
  display: block;
  padding: 12px 15px;
  font-family: var(--ff-head);
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.menu > li > a:hover { color: var(--navy-700); background: var(--navy-050); }
.menu > li > a.is-active { color: var(--gold-600); }
.menu > li > a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  width: 22px;
  background: var(--gold-500);
  border-radius: 2px;
  margin: 4px auto 0;
}

.has-sub > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--t);
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--body);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.submenu a:hover { background: var(--navy-050); color: var(--navy-800); padding-left: 18px; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fff;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: var(--t);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil çekmece */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--sh-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__close {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.3rem; color: var(--ink);
}
.drawer__menu { padding: 12px 14px; }
.drawer__menu a {
  display: block;
  padding: 13px 12px;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.drawer__menu a:hover, .drawer__menu a.is-active { color: var(--gold-600); }
.drawer__menu .sub a { font-weight: 500; font-size: .9rem; padding-left: 26px; color: var(--body); }
.drawer__foot { margin-top: auto; padding: 22px; background: var(--soft); font-size: .9rem; }
.drawer__foot .btn { margin-bottom: 14px; }

.backdrop {
  position: fixed; inset: 0;
  background: rgba(5, 15, 31, .55);
  backdrop-filter: blur(2px);
  z-index: 110;
  opacity: 0; visibility: hidden;
  transition: var(--t);
}
.backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- 8. Hero (slider) ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 780px);
  display: grid;
  align-items: center;
  background: var(--navy-950);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 7s linear;
}
.hero__slide.is-on { opacity: 1; transform: scale(1); }
.hero__slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 15, 31, .94) 0%, rgba(8, 25, 47, .86) 45%, rgba(11, 34, 68, .58) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 70% at 70% 40%, #000 20%, transparent 78%);
}

.hero__in { position: relative; padding-block: 90px; }
.hero__panel { max-width: 720px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(201, 162, 39, .38);
  background: rgba(201, 162, 39, .1);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 26px;
}
.hero__tag b {
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .7rem;
  letter-spacing: .06em;
}

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero__txt {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .8);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 46px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__fact strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero__fact span { font-size: .84rem; color: rgba(255, 255, 255, .6); }

.hero__dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dots button {
  width: 34px; height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .28);
  transition: var(--t);
}
.hero__dots button.is-on { background: var(--gold-500); width: 52px; }

/* ---------- 9. Sayfa başlığı (iç sayfalar) ---------- */
.phero {
  position: relative;
  background: var(--navy-900);
  padding: clamp(70px, 9vw, 116px) 0 clamp(58px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
}
.phero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 30%, #000, transparent 75%);
}
.phero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.2), transparent 68%);
  z-index: -1;
}
.phero h1 { color: #fff; margin-bottom: 14px; }
.phero p { color: rgba(255, 255, 255, .72); max-width: 640px; font-size: 1.05rem; }
.phero p a {
  color: var(--gold-400);
  border-bottom: 1px solid rgba(220, 187, 82, .4);
  transition: var(--t);
}
.phero p a:hover { border-bottom-color: var(--gold-400); }

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
}
.crumb a { transition: var(--t); }
.crumb a:hover { color: var(--gold-400); }
.crumb span { color: var(--gold-400); }
.crumb i { font-style: normal; opacity: .5; }

/* ---------- 10. Kartlar ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--navy-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card__ico {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  background: var(--navy-050);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: var(--t);
}
.card__ico svg { width: 28px; height: 28px; }
.card:hover .card__ico { background: var(--navy-800); color: var(--gold-400); }

.card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.card p { font-size: .95rem; margin-bottom: 18px; }

.card__no {
  position: absolute;
  right: 22px; top: 18px;
  font-family: var(--ff-head);
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--navy-050);
  line-height: 1;
  transition: var(--t);
  pointer-events: none;
}
.card:hover .card__no { color: var(--gold-100); }

/* Öne çıkan (koyu) kart */
.card--dark {
  background: var(--navy-900);
  border-color: transparent;
  color: rgba(255, 255, 255, .74);
}
.card--dark h3 { color: #fff; }
.card--dark .card__ico { background: rgba(255, 255, 255, .08); color: var(--gold-400); }
.card--dark .card__no { color: rgba(255, 255, 255, .06); }
.card--dark .link-arrow { color: var(--gold-400); }

/* ---------- 11. Sektör / ürün grubu kutuları ---------- */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--navy-800);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: var(--t);
}
.tile::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,25,47,.25) 0%, rgba(5,15,31,.92) 100%);
}
.tile__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.tile:hover .tile__bg { transform: scale(1.08); }
.tile__ico { width: 34px; height: 34px; color: var(--gold-400); margin-bottom: 12px; }
.tile h3 { color: #fff; font-size: 1.08rem; margin-bottom: 6px; }
.tile p { font-size: .86rem; color: rgba(255, 255, 255, .68); margin: 0; }

/* ---------- 12. İstatistik şeridi ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat { background: #fff; padding: 34px 26px; text-align: center; }
.stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 8px;
}
.stat strong sup { color: var(--gold-500); font-size: .5em; top: -.6em; }
.stat > span { display: block; font-size: .9rem; color: var(--muted); }

.stats--navy { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.stats--navy .stat { background: var(--navy-900); }
.stats--navy .stat strong { color: #fff; }
.stats--navy .stat > span { color: rgba(255, 255, 255, .6); }

/* ---------- 13. İki sütunlu içerik ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split--rev .split__media { order: -1; }

.split__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  background: var(--navy-800);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.badge-float {
  position: absolute;
  left: 24px; bottom: 24px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 24px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 300px;
}
.badge-float svg { width: 34px; height: 34px; color: var(--gold-600); flex: none; }
.badge-float strong { display: block; font-family: var(--ff-head); color: var(--ink); font-size: 1.05rem; }
.badge-float span { font-size: .82rem; color: var(--muted); }

.ticks { display: grid; gap: 14px; margin: 26px 0 34px; }
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: .97rem;
  color: var(--body);
}
.ticks svg { width: 21px; height: 21px; flex: none; color: var(--gold-600); margin-top: 3px; }
.ticks b { color: var(--ink); font-weight: 600; }

/* Grafik medya paneli (fotoğraf yerine dekoratif kutu) */
.split__media--art { display: grid; place-items: center; min-height: 380px; }
.split__media--art::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 72%);
}
.media-ico { width: 40%; max-width: 210px; height: auto; color: rgba(255, 255, 255, .22); position: relative; }
.media-tags {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.media-tag {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 100px;
}

/* Etiket bulutu */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  font-size: .8rem;
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--navy-050);
  color: var(--navy-700);
  border: 1px solid var(--line);
  transition: var(--t);
}
.card:hover .chip { background: #fff; border-color: var(--gold-500); }
a.chip:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.card--dark .chip { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .8); }
.card--dark:hover .chip { background: rgba(255, 255, 255, .1); border-color: rgba(201, 162, 39, .5); }

/* Numaralı bölüm rozeti */
.svc-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--navy-050);
  color: var(--navy-700);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 18px;
}

/* Basit iki sütunlu liste */
/* ---------- 13b. Fotoğraflı ürün kartı ---------- */
.pcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--t);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }

.pcard__media {
  position: relative;
  aspect-ratio: 20 / 13;
  overflow: hidden;
  background: var(--navy-050);
}
.pcard__media img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 15, 31, .55));
}
.pcard__no {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 1;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: 8px 15px;
  border-top-right-radius: var(--r-md);
}

.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 28px; }
.pcard__body h3 { font-size: 1.12rem; margin-bottom: 9px; }
.pcard__body p { font-size: .93rem; margin-bottom: 0; }
.pcard .chips { margin-top: 16px; }
.pcard:hover .chip { background: #fff; border-color: var(--gold-500); }
.pcard .link-arrow { margin-top: auto; padding-top: 20px; align-self: flex-start; }

a.pcard { color: inherit; }
a.pcard h3 { transition: color var(--t); }
a.pcard:hover h3 { color: var(--gold-600); }

/* ---------- 13c. Ürün detay blokları ---------- */
.pdetail { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; }
.pdetail + .pdetail { margin-top: clamp(56px, 7vw, 88px); padding-top: clamp(56px, 7vw, 88px); border-top: 1px solid var(--line); }
.pdetail:nth-of-type(even) .pdetail__media { order: 2; }

.pdetail__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.pdetail__media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.pdetail__tag {
  position: absolute;
  left: 20px; top: 20px;
  background: rgba(5, 15, 31, .82);
  color: var(--gold-400);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .12em;
  padding: 9px 15px;
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
}
.pdetail h2 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-bottom: 14px; }
.pdetail__sub { font-weight: 600; color: var(--navy-700); margin-bottom: 14px; }

.spec { margin-top: 26px; }
.spec h4 {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
}
.spec-list { display: grid; gap: 12px; }
.spec-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; }
.spec-list svg { width: 19px; height: 19px; flex: none; color: var(--gold-600); margin-top: 3px; }
.spec-list b { color: var(--ink); font-weight: 600; }

/* ---------- 13d. Ürün karuseli ---------- */
.carousel { position: relative; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 26px) / 4);
  gap: 26px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 8px;
  margin: -4px -4px -8px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }

.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-800);
  display: grid;
  place-items: center;
  transition: var(--t);
}
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__btn:hover:not(:disabled) { background: var(--navy-800); border-color: var(--navy-800); color: var(--gold-400); }
.carousel__btn:disabled { opacity: .35; cursor: not-allowed; }

.carousel__bar { height: 3px; border-radius: 3px; background: var(--line); margin-top: 30px; overflow: hidden; }
.carousel__bar i { display: block; height: 100%; width: 25%; border-radius: 3px; background: var(--gold-500); transition: transform .3s var(--ease), width .3s var(--ease); }

@media (max-width: 1100px) { .carousel__track { grid-auto-columns: calc((100% - 2 * 24px) / 3); } }
@media (max-width: 900px)  { .carousel__track { grid-auto-columns: calc((100% - 22px) / 2); gap: 22px; } }
@media (max-width: 620px)  { .carousel__track { grid-auto-columns: 82%; gap: 16px; } }

@media (max-width: 860px) {
  .pdetail { grid-template-columns: 1fr; }
  .pdetail:nth-of-type(even) .pdetail__media { order: 0; }
}

/* Tedarik edilen marka duvarı */
.brandwall { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.brandwall span {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 78px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .86rem;
  line-height: 1.35;
  color: var(--navy-800);
  transition: var(--t);
}
.brandwall span:hover {
  border-color: var(--gold-500);
  box-shadow: var(--sh-sm);
  transform: translateY(-3px);
}
@media (max-width: 1180px) { .brandwall { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 992px) { .brandwall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .brandwall { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Malzeme grubu paneli */
.panel {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-sm);
}
@media (max-width: 640px) { .panel { padding: 26px 22px; } }

.cols-2 { columns: 2; column-gap: 34px; }
.ticks.cols-2 { display: block; margin: 0; }
.cols-2 li {
  break-inside: avoid;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 11px;
  font-size: .94rem;
}
.cols-2 svg { width: 18px; height: 18px; flex: none; color: var(--gold-600); margin-top: 4px; }
@media (max-width: 640px) { .cols-2 { columns: 1; } }

/* ---------- 14. Süreç adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: st; }
.step { position: relative; padding-top: 56px; }
.step::before {
  counter-increment: st;
  content: "0" counter(st);
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .9rem;
  display: grid;
  place-items: center;
}
.step::after {
  content: "";
  position: absolute;
  top: 22px; left: 56px; right: -14px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
}
.step:last-child::after { display: none; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: .92rem; margin: 0; }

.section--navy .step::before { background: var(--gold-500); color: var(--navy-950); }
.section--navy .step::after { background: repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0 7px, transparent 7px 14px); }

/* ---------- 15. CTA bandı ---------- */
.cta {
  position: relative;
  background: var(--navy-900);
  border-radius: var(--r-xl);
  padding: clamp(38px, 5vw, 62px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 85% 20%, #000, transparent 70%);
}
.cta::after {
  content: "";
  position: absolute;
  left: -90px; bottom: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.18), transparent 70%);
  z-index: -1;
}
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: rgba(255, 255, 255, .7); margin: 0; max-width: 560px; }
.cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 16. Değer / özellik satırı ---------- */
.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.feat { background: #fff; padding: 32px 26px; transition: var(--t); }
.feat:hover { background: var(--soft); }
.feat svg { width: 34px; height: 34px; color: var(--gold-600); margin-bottom: 16px; }
.feat h4 { margin-bottom: 8px; }
.feat p { font-size: .92rem; margin: 0; }

/* ---------- 17. Referans / rozet şeridi ---------- */
.marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 44px;
}
.mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy-800);
  background: #fff;
  transition: var(--t);
}
.mark svg { width: 20px; height: 20px; color: var(--gold-600); }
.mark:hover { border-color: var(--gold-500); transform: translateY(-3px); box-shadow: var(--sh-sm); }

/* ---------- 18. Akordiyon (SSS) ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  transition: var(--t);
}
.acc__btn:hover { color: var(--gold-600); }
.acc__btn i {
  font-style: normal;
  width: 28px; height: 28px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--navy-700);
  transition: var(--t);
}
.acc__item.is-open .acc__btn i { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); transform: rotate(45deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__body > div { padding: 0 4px 24px; font-size: .96rem; }

/* ---------- 19. İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.info-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: var(--t);
}
.info-card:hover { box-shadow: var(--sh-md); border-color: transparent; transform: translateY(-3px); }
.info-card__ico {
  width: 48px; height: 48px;
  flex: none;
  border-radius: var(--r-sm);
  background: var(--navy-050);
  color: var(--navy-700);
  display: grid;
  place-items: center;
}
.info-card__ico svg { width: 22px; height: 22px; }
.info-card h4 { margin-bottom: 4px; font-size: .98rem; }
.info-card p, .info-card a { font-size: .93rem; color: var(--body); margin: 0; }
.info-card a:hover { color: var(--gold-600); }

.form {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.2vw, 42px);
  box-shadow: var(--sh-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--ff-head);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field label span { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: var(--t);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(18, 49, 91, .09);
}
.field--check { display: flex; align-items: flex-start; gap: 11px; }
.field--check input { width: auto; margin-top: 4px; flex: none; }
.field--check label { font-weight: 400; font-size: .86rem; color: var(--body); font-family: var(--ff-body); margin: 0; }
.field--check label a { color: var(--navy-700); text-decoration: underline; }

.form__note {
  margin-top: 16px;
  font-size: .84rem;
  color: var(--muted);
  text-align: center;
}
.form__alert {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  margin-bottom: 20px;
}
.form__alert.is-on { display: block; }
.form__alert--ok { background: #e8f6ef; color: #14603c; border: 1px solid #bde5d1; }

.map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
  filter: grayscale(.25);
}
.map iframe { width: 100%; height: 420px; border: 0; }

/* ---------- 19b. Metin sayfaları (KVKK vb.) ---------- */
.prose { max-width: 840px; }
.prose h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 46px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: 30px; }
.prose ul { margin: 0 0 1.2em; }
.prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: .97rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.prose ol { counter-reset: pr; margin: 0 0 1.2em; }
.prose ol li {
  counter-increment: pr;
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
  font-size: .97rem;
}
.prose ol li::before {
  content: counter(pr) ".";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--gold-600);
}
.prose a { color: var(--navy-700); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .93rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.prose th { background: var(--soft); font-family: var(--ff-head); color: var(--ink); font-weight: 600; }

/* ---------- 20. Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255, 255, 255, .62); font-size: .93rem; }
.footer a { transition: var(--t); }
.footer a:hover { color: var(--gold-400); }

.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding: clamp(52px, 6vw, 80px) 0 52px;
}
.footer h4 {
  color: #fff;
  font-size: .96rem;
  letter-spacing: .04em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--gold-500);
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: rgba(255, 255, 255, .45); }
.footer__about { margin: 22px 0; font-size: .9rem; line-height: 1.8; }

.footer__links li { margin-bottom: 11px; }
.footer__links a { display: inline-flex; align-items: center; gap: 9px; }
.footer__links a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: .6;
  flex: none;
}

.footer__contact li { display: flex; gap: 13px; margin-bottom: 17px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-500); flex: none; margin-top: 4px; }
.footer__contact strong { display: block; color: #fff; font-weight: 600; font-size: .92rem; }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
}
.socials svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }

.legal-box {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: .82rem;
  line-height: 1.7;
  background: rgba(255, 255, 255, .03);
  margin-top: 24px;
}
.legal-box b { color: rgba(255, 255, 255, .85); display: block; margin-bottom: 4px; font-size: .86rem; }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .84rem;
}
.footer__bar nav { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- 21. Sabit iletişim düğmeleri ---------- */
.floaters {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floaters a, .floaters button {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-md);
  transition: var(--t);
  color: #fff;
}
.floaters svg { width: 24px; height: 24px; }
.fl-wa { background: #25d366; }
.fl-tel { background: var(--navy-800); }
.floaters .fl-top { background: #fff; color: var(--navy-800); border: 1px solid var(--line); opacity: 0; visibility: hidden; }
.floaters .fl-top.is-on { opacity: 1; visibility: visible; }
.floaters a:hover, .floaters button:hover { transform: translateY(-4px) scale(1.05); }

/* ---------- 22. Görünme animasyonu ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: .09s; }
.rv[data-d="2"] { transition-delay: .18s; }
.rv[data-d="3"] { transition-delay: .27s; }
.rv[data-d="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .rv { opacity: 1; transform: none; }
}

/* ---------- 23. Duyarlı (responsive) ---------- */
@media (max-width: 1100px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 38px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .step:nth-child(2)::after { display: none; }
}

@media (max-width: 992px) {
  :root { --header-h: 72px; }
  .brand__logo { height: 52px; }
  .menu, .nav__cta .btn { display: none; }
  .burger { display: flex; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .feats { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { min-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .topbar__list--left { display: none; }
  .topbar__in { justify-content: center; }
}

@media (max-width: 640px) {
  :root { --gut: 18px; }
  .topbar { display: none; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .feats, .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .step::after { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__in { padding-block: 62px 78px; }
  .hero__facts { gap: 20px 30px; }
  .hero__fact strong { font-size: 1.5rem; }
  .cta { flex-direction: column; align-items: flex-start; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
  .brand__logo { height: 44px; }
  .brand__logo--lg { height: 56px; }
  .brand__name { font-size: 1.08rem; }
  .marks { gap: 12px; }
  .mark { padding: 11px 16px; font-size: .8rem; }
  .badge-float { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}

/* ---------- 24. Yazdırma ---------- */
@media print {
  .topbar, .header, .floaters, .hero__dots, .footer__bar nav, .cta__btns { display: none !important; }
  body { color: #000; }
  .section { padding: 20px 0; }
}
