/* ==========================================================================
   İKİ LİSANIM — Kurumsal Web Sitesi
   Tasarım sistemi (logo paletinden türetilmiştir)
   ========================================================================== */

:root {
  /* --- Renk: lacivert (ana) + kırmızı (aksiyon) + altın (vurgu) + nötrler --- */
  --navy: #1b2e52;
  --navy-deep: #12203c;
  --navy-soft: #2d4576;
  --navy-tint: #eef1f7;

  --crimson: #c1202e;
  --crimson-deep: #9c1622;
  --crimson-tint: #fdeef0;

  --gold: #f2b12c;
  --gold-soft: #ffd884;
  --gold-tint: #fdf4e2;

  --cream: #fbf7f0;
  --surface: #ffffff;

  --ink: #16203a;
  --ink-soft: #56607a;
  --line: #e8e1d3;
  --line-cool: #dde3ee;

  /* --- Tipografi --- */
  --font-display: "Marcellus", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --fs-h1: clamp(1.95rem, 5.8vw, 3.45rem);
  --fs-h2: clamp(1.6rem, 4.2vw, 2.45rem);
  --fs-h3: clamp(1.12rem, 1.6vw, 1.3rem);
  --fs-lead: clamp(1rem, 1.5vw, 1.16rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.76rem;

  /* --- Aralık ölçeği (8px tabanlı) --- */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px;
  --s9: 96px;

  --section-y: clamp(56px, 7.5vw, 104px);
  --maxw: 1180px;
  --maxw-narrow: 760px;

  /* --- Yuvarlaklık, gölge, geçiş --- */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --sh-sm: 0 2px 10px rgba(22, 32, 58, .06);
  --sh: 0 12px 34px rgba(22, 32, 58, .09);
  --sh-lg: 0 26px 60px rgba(22, 32, 58, .16);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 74px;
}

/* ==========================================================================
   Temel / reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 400; }
h1, h2 { font-family: var(--font-display); letter-spacing: -.01em; }
h3, h4 { font-family: var(--font-body); font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; text-decoration: none; }

strong, b { font-weight: 700; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-soft); color: var(--navy-deep); }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Yerleşim yardımcıları
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 32px);
}

.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream); }
.section--tint { background: linear-gradient(180deg, var(--navy-tint), #fff); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--s4); color: var(--ink-soft); font-size: var(--fs-lead); }

.section--navy .section-head p,
.section--navy .lead { color: rgba(255, 255, 255, .78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s4);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--crimson);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  flex: none;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  flex: none;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--navy { color: var(--navy-soft); }

.lead { color: var(--ink-soft); font-size: var(--fs-lead); }
.muted { color: var(--ink-soft); }
.stack > * + * { margin-top: var(--s4); }
.stack-sm > * + * { margin-top: var(--s3); }

/* Logodaki çizgi motifi: lacivert çizgi · nokta · kırmızı çizgi */
.rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: var(--s5) 0;
}
.rule::before, .rule::after {
  content: "";
  height: 2px;
  flex: 1 1 0;
  max-width: 120px;
  background: var(--navy);
  opacity: .5;
}
.rule::after { background: var(--crimson); }
.rule span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.section-head--center .rule { justify-content: center; }
.section--navy .rule::before { background: #fff; opacity: .35; }
.section--navy .rule::after { background: var(--gold); opacity: .8; }

/* ==========================================================================
   Butonlar
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  background: var(--crimson);
  color: #fff;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  box-shadow: 0 8px 22px rgba(193, 32, 46, .26);
}
.btn .ico { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--navy {
  background: var(--navy);
  box-shadow: 0 8px 22px rgba(27, 46, 82, .26);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(242, 177, 44, .32);
}
.btn--outline {
  background: transparent;
  border-color: var(--line-cool);
  color: var(--navy);
  box-shadow: none;
}
.btn--light {
  background: #fff;
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}
.btn--ghost-light {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  box-shadow: none;
}
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: 10px 20px; font-size: .9rem; }

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn:hover { background: var(--crimson-deep); }
  .btn--navy:hover { background: var(--navy-deep); }
  .btn--gold:hover { background: #e5a521; }
  .btn--outline:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
  .btn--light:hover { background: var(--cream); }
  .btn--ghost-light:hover { background: rgba(255, 255, 255, .16); }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s6);
}
.btn-row--center { justify-content: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--crimson);
  border-bottom: 1px solid transparent;
  transition: gap .2s var(--ease), border-color .2s var(--ease);
}
.textlink .ico { width: 16px; height: 16px; }
@media (hover: hover) {
  .textlink:hover { gap: 12px; border-color: currentColor; }
}
.textlink--light { color: var(--gold); }

/* ==========================================================================
   Üst bar + Header + Navigasyon
   ========================================================================== */

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .8);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  min-height: 38px;
  text-align: center;
}
.topbar b { color: var(--gold); font-weight: 600; }
.topbar__dot { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
  padding-top: env(safe-area-inset-top);
}
.site-header.is-stuck { box-shadow: 0 8px 26px rgba(22, 32, 58, .08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  padding: 6px 0;
}
.brand__logo {
  width: 46px; height: 46px;
  object-fit: contain;
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.19rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.brand__name em { font-style: normal; color: var(--crimson); }
.brand__tag {
  font-size: .61rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(6px, 1.1vw, 18px); }
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 6px 8px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav__link[aria-current="page"] { color: var(--crimson); font-weight: 600; border-color: var(--crimson); }
@media (hover: hover) { .nav__link:hover { color: var(--crimson); } }

.header__cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex: none;
  color: var(--navy);
}
.nav-toggle__bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle__bars i {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 6px; }
.nav-toggle__bars i:nth-child(3) { top: 12px; }

/* Mobil çekmece */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(18, 32, 60, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 120;
  width: min(370px, 88vw);
  background: var(--navy-deep);
  color: #fff;
  transform: translateX(102%);
  transition: transform .34s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
}
body.nav-open { overflow: hidden; }
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
body.nav-open .drawer { transform: translateX(0); }

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: 18px 20px;
  padding-top: calc(18px + env(safe-area-inset-top));
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.drawer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.drawer__brand img { width: 38px; height: 38px; object-fit: contain; background: #fff; border-radius: 9px; padding: 3px; }
.drawer__close {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}
.drawer__close .ico { width: 20px; height: 20px; }

.drawer__nav { padding: 12px 20px 4px; }
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: 54px;
  padding: 10px 2px;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.drawer__nav a .ico { width: 16px; height: 16px; opacity: .45; }
.drawer__nav a[aria-current="page"] { color: var(--gold); font-weight: 600; }
.drawer__nav a[aria-current="page"] .ico { opacity: 1; }

.drawer__foot { margin-top: auto; padding: 22px 20px 6px; display: grid; gap: 12px; }
.drawer__foot .note {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

@media (min-width: 1140px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .nav-toggle, .drawer, .nav-backdrop { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 88% 8%, #24406f 0%, var(--navy) 42%, var(--navy-deep) 100%);
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .9;
  z-index: -2;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}
.hero__glow--gold {
  width: 46vw; height: 46vw;
  max-width: 520px; max-height: 520px;
  right: -12%; top: -14%;
  background: rgba(242, 177, 44, .3);
}
.hero__glow--crimson {
  width: 40vw; height: 40vw;
  max-width: 460px; max-height: 460px;
  left: -14%; bottom: -22%;
  background: rgba(193, 32, 46, .34);
}
.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  padding-block: clamp(52px, 8vw, 104px);
}
.hero__copy { max-width: 620px; }
.hero h1 { margin-bottom: var(--s5); }
.hero h1 .accent { color: var(--gold); }
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--gold-soft);
  letter-spacing: .02em;
  margin-bottom: var(--s4);
}
.hero__lead { color: rgba(255, 255, 255, .82); font-size: var(--fs-lead); }
.hero__lead + .hero__lead { margin-top: var(--s4); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--s6);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
}
.pill .ico { width: 15px; height: 15px; color: var(--gold); }
.pill--light {
  background: var(--gold-tint);
  border-color: #f2dcae;
  color: var(--navy-deep);
}
.pill--light .ico { color: var(--crimson); }

/* Hero görsel kartı */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 30px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--sh-lg);
}
.hero-card__logo {
  width: clamp(150px, 40vw, 210px);
  margin: 0 auto var(--s5);
  background: #fff;
  border-radius: var(--r);
  padding: 14px;
}
.hero-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-sm);
  padding: 14px;
  text-align: center;
}
.mini__k {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}
.mini__v {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.08fr .92fr; align-items: center; }
}

/* Sayfa başlığı (alt sayfalar) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.page-hero__art {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: clamp(180px, 34vw, 400px);
  opacity: .14;
  color: #fff;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  padding-block: clamp(44px, 6.5vw, 86px);
  max-width: 780px;
}
.page-hero h1 { margin-bottom: var(--s4); }
.page-hero .lead { color: rgba(255, 255, 255, .8); }
.page-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--gold-soft);
  margin-bottom: var(--s4);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--s5);
  font-size: .8rem;
  color: rgba(255, 255, 255, .62);
}
.crumbs a { color: rgba(255, 255, 255, .82); }
@media (hover: hover) { .crumbs a:hover { color: var(--gold); } }
.crumbs span { opacity: .5; }

/* ==========================================================================
   Kartlar / ızgaralar
   ========================================================================== */

.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.grid + .btn-row { margin-top: var(--s7); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(20px, 2.6vw, 30px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card h3 { margin-bottom: var(--s3); color: var(--navy); }
.card p { color: var(--ink-soft); }
.card p + p { margin-top: var(--s3); }
@media (hover: hover) {
  .card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: #fff; }
}
.section--cream .card { border-color: #efe7d8; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: var(--s4);
  background: var(--navy-tint);
  color: var(--navy);
}
.card__icon .ico { width: 25px; height: 25px; }
.card__icon--crimson { background: var(--crimson-tint); color: var(--crimson); }
.card__icon--gold { background: var(--gold-tint); color: #b57d05; }

.card--flush { border: 0; background: transparent; padding: 0; }
.card--flush:hover { transform: none; box-shadow: none; }

/* Dil kartları (İngilizce / İspanyolca) */
.langs { display: grid; gap: clamp(18px, 2.6vw, 26px); }
@media (min-width: 820px) { .langs { grid-template-columns: 1fr 1fr; } }

.lang-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 40px);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  box-shadow: var(--sh);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
@media (hover: hover) {
  .lang-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
}
.lang-card--en { background: linear-gradient(150deg, #24406f, var(--navy-deep)); }
.lang-card--es { background: linear-gradient(150deg, #ce2c3a, var(--crimson-deep)); }
.lang-card__art {
  position: absolute;
  right: -8px; bottom: -8px;
  width: clamp(120px, 26%, 190px);
  opacity: .18;
  color: #fff;
  pointer-events: none;
}
.lang-card__flagline {
  display: flex;
  gap: 5px;
  margin-bottom: var(--s5);
}
.lang-card__flagline i { display: block; width: 34px; height: 5px; border-radius: 3px; }
.lang-card--en .lang-card__flagline i:nth-child(1) { background: #fff; }
.lang-card--en .lang-card__flagline i:nth-child(2) { background: var(--crimson); }
.lang-card--en .lang-card__flagline i:nth-child(3) { background: rgba(255, 255, 255, .35); }
.lang-card--es .lang-card__flagline i:nth-child(1) { background: var(--gold); }
.lang-card--es .lang-card__flagline i:nth-child(2) { background: #fff; }
.lang-card--es .lang-card__flagline i:nth-child(3) { background: rgba(255, 255, 255, .35); }

.lang-card__label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--s3);
}
.lang-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--s4);
}
.lang-card p { color: rgba(255, 255, 255, .84); }
.lang-card__list { margin: var(--s5) 0 var(--s6); display: grid; gap: 10px; position: relative; }
.lang-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .9);
}
.lang-card__list .ico { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--gold); }
.lang-card .btn-row { margin-top: auto; }

/* Özellik listesi (tik işaretli) */
.checklist { display: grid; gap: 12px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
}
.checklist .ico {
  width: 21px; height: 21px;
  flex: none;
  margin-top: 3px;
  color: var(--crimson);
}
.checklist--navy .ico { color: var(--navy); }
.section--navy .checklist li { color: rgba(255, 255, 255, .84); }
.section--navy .checklist .ico { color: var(--gold); }

/* Etiket bulutu (kimler için) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: .89rem;
  font-weight: 500;
  color: var(--ink);
}
.chip .ico { width: 15px; height: 15px; color: var(--crimson); }
.section--cream .chip { background: #fff; }

/* İkili düzen (metin + görsel/kart) */
.split { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  .split--reverse .split__media { order: -1; }
}

.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy), var(--navy-deep));
  padding: clamp(24px, 3.6vw, 40px);
  color: #fff;
  box-shadow: var(--sh);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.frame--cream { background: var(--cream); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.frame--cream::after { display: none; }
.frame > * { position: relative; z-index: 1; }

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.4;
}
.quote--navy { color: var(--navy); }

/* ==========================================================================
   Beceriler (Speaking / Listening / ...)
   ========================================================================== */

.skills { display: grid; gap: clamp(16px, 2.2vw, 22px); }
@media (min-width: 640px) { .skills { grid-template-columns: 1fr 1fr; } }

.skill {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--crimson);
  border-radius: var(--r);
  padding: clamp(20px, 2.4vw, 28px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
@media (hover: hover) { .skill:hover { transform: translateY(-3px); box-shadow: var(--sh); } }
.skill:nth-child(2n) { border-left-color: var(--navy); }
.skill__head { display: flex; align-items: center; gap: 14px; margin-bottom: var(--s3); }
.skill__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy-tint);
  color: var(--navy);
  flex: none;
}
.skill__ico .ico { width: 22px; height: 22px; }
.skill h3 { margin: 0; color: var(--navy); }
.skill__t2 {
  display: block;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-top: 3px;
}
.skill p { color: var(--ink-soft); }

/* ==========================================================================
   Süreç adımları
   ========================================================================== */

.steps { display: grid; gap: clamp(18px, 2.4vw, 26px); counter-reset: step; }
@media (min-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .steps--3 { grid-template-columns: repeat(3, 1fr); } }

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(22px, 2.6vw, 30px);
  padding-top: 34px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
@media (hover: hover) { .step:hover { transform: translateY(-4px); box-shadow: var(--sh); } }
.step__num {
  position: absolute;
  top: -18px;
  left: clamp(22px, 2.6vw, 30px);
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(27, 46, 82, .28);
}
.step:nth-child(3n+2) .step__num { background: var(--crimson); box-shadow: 0 8px 20px rgba(193, 32, 46, .26); }
.step:nth-child(3n+3) .step__num { background: var(--gold); color: var(--navy-deep); box-shadow: 0 8px 20px rgba(242, 177, 44, .3); }
.step h3 { margin-bottom: var(--s3); color: var(--navy); }
.step p { color: var(--ink-soft); }

/* ==========================================================================
   SSS (native accordion)
   ========================================================================== */

.faq { max-width: 880px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item[open] { border-color: #d9cfb9; box-shadow: var(--sh-sm); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: 18px clamp(18px, 2.4vw, 24px);
  min-height: 60px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q span:first-child { flex: 1; }
.faq__sign {
  position: relative;
  width: 28px; height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--navy-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq__sign::before { width: 12px; height: 2px; }
.faq__sign::after { width: 2px; height: 12px; transition: opacity .2s var(--ease); }
.faq__item[open] .faq__sign { background: var(--crimson); color: #fff; transform: rotate(90deg); }
.faq__item[open] .faq__sign::after { opacity: 0; }
.faq__a {
  padding: 0 clamp(18px, 2.4vw, 24px) 22px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: -1px;
}
@media (hover: hover) { .faq__q:hover { color: var(--crimson); } }

/* ==========================================================================
   CTA bandı
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 60%, #0e1a31 100%);
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta__glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  background: rgba(242, 177, 44, .26);
  right: -80px; top: -140px;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  padding-block: clamp(52px, 7vw, 96px);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.cta h2 { margin-bottom: var(--s4); }
.cta p { color: rgba(255, 255, 255, .82); font-size: var(--fs-lead); }
.cta__sign {
  margin-top: var(--s7);
  font-family: var(--font-display);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .95rem;
}

/* ==========================================================================
   İletişim formu
   ========================================================================== */

.contact { display: grid; gap: clamp(28px, 4vw, 48px); }
@media (min-width: 940px) { .contact { grid-template-columns: .9fr 1.1fr; align-items: start; } }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--sh-sm);
}
.form__grid { display: grid; gap: var(--s4); }
@media (min-width: 620px) { .form__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); } }

.field { display: grid; gap: 7px; }
.field > label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .01em;
}
.field .req { color: var(--crimson); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--line-cool);
  border-radius: var(--r-sm);
  background: #fdfdfe;
  font-family: inherit;
  font-size: 16px; /* iOS'ta odakta yakınlaşmayı engeller */
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2356607a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 4px rgba(45, 69, 118, .12);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa2b3; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.consent input {
  width: 20px; height: 20px;
  min-height: 0;
  margin: 2px 0 0;
  accent-color: var(--crimson);
  flex: none;
}
.form__note { margin-top: var(--s4); font-size: .8rem; color: var(--ink-soft); text-align: center; }
.form__status {
  margin-top: var(--s4);
  padding: 13px 16px;
  border-radius: var(--r-sm);
  background: var(--gold-tint);
  border: 1px solid #f0dcb0;
  color: #6d4c07;
  font-size: .88rem;
  display: none;
}
.form__status.is-visible { display: block; }

.info-list { display: grid; gap: var(--s4); }
.info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.info__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy-tint);
  color: var(--navy);
  flex: none;
}
.info__ico .ico { width: 21px; height: 21px; }
.info b { display: block; color: var(--navy); font-size: .97rem; margin-bottom: 2px; }
.info span { color: var(--ink-soft); font-size: .9rem; word-break: break-word; }
.info a { color: var(--crimson); font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  padding-top: clamp(48px, 6vw, 76px);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-soft) 0%, var(--navy-soft) 33%, var(--gold) 33%, var(--gold) 66%, var(--crimson) 66%);
}
.footer__grid {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }

.footer__brand { display: flex; align-items: center; gap: 13px; margin-bottom: var(--s4); }
.footer__brand img {
  width: 56px; height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  flex: none;
}
.footer__brand .n {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.footer__brand .t {
  font-size: .64rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.footer p { font-size: .92rem; max-width: 44ch; }

.footer h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}
.footer__links { display: grid; gap: 2px; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-size: .93rem;
  color: rgba(255, 255, 255, .72);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
@media (hover: hover) { .footer__links a:hover { color: var(--gold); transform: translateX(3px); } }

.footer__social { display: flex; gap: 10px; margin-top: var(--s4); }
.footer__social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.footer__social .ico { width: 20px; height: 20px; }
@media (hover: hover) { .footer__social a:hover { background: var(--crimson); transform: translateY(-2px); } }

.footer__bottom {
  margin-top: clamp(36px, 5vw, 60px);
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px var(--s5);
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255, .58);
}
.footer__bottom .tagline { color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; }

/* Mobil sabit aksiyon çubuğu */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(22, 32, 58, .1);
  transform: translateY(120%);
  transition: transform .3s var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar .btn { flex: 1; min-height: 46px; font-size: .9rem; padding: 10px 12px; }
@media (min-width: 1140px) { .mobile-bar { display: none; } }
body.has-mobile-bar .footer__bottom { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
@media (min-width: 1140px) {
  body.has-mobile-bar .footer__bottom { padding-bottom: 22px; }
}

/* ==========================================================================
   İkonlar + hareket
   ========================================================================== */

.ico {
  width: 24px; height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Küçük ekran ince ayarları
   ========================================================================== */

@media (max-width: 420px) {
  :root { --header-h: 66px; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 1.04rem; }
  .brand__tag { font-size: .56rem; letter-spacing: .14em; }
  .btn { width: 100%; }
  .btn--auto { width: auto; }
  .btn-row { gap: 10px; }
  .topbar__inner { min-height: 34px; font-size: .68rem; letter-spacing: .04em; }
  .hero-card__grid { gap: 10px; }
  .mini { padding: 12px 10px; }
}

@media print {
  .site-header, .topbar, .mobile-bar, .drawer, .nav-backdrop, .cta { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   Dekoratif çizim öğeleri (data-ico="art-*")
   ========================================================================== */

.page-hero__art .ico,
.lang-card__art .ico,
.art-block .ico {
  width: 100%;
  height: auto;
  stroke-width: 1.4;
  opacity: 1;
}

.art-block {
  display: block;
  color: var(--navy);
  opacity: .16;
  pointer-events: none;
}

.frame__art {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: clamp(150px, 40%, 260px);
  color: #fff;
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}
.frame__art .ico { width: 100%; height: auto; stroke-width: 1.3; }

/* İkon taşıyıcı (JS ile doldurulur) */
[data-ico] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.page-hero__art, .lang-card__art, .frame__art { display: block; }

/* --- Masaüstü menü ince ayarı: satır kırılmasını engelle --- */
.nav__link { white-space: nowrap; }
.header__cta { white-space: nowrap; }
.nav__list { gap: clamp(4px, .9vw, 16px); }
@media (min-width: 1140px) {
  .nav__link { font-size: .95rem; padding: 6px 10px; }
}

/* --- Dokunma hedefi düzeltmeleri (min. 44px) --- */
.footer__links a { min-height: 44px; }
.drawer__brand { min-height: 44px; }
.crumbs a { display: inline-flex; align-items: center; min-height: 32px; }

/* --- Masaüstü menü: taşmayı önleyen son ölçüler --- */
@media (min-width: 1140px) {
  .nav__link { font-size: .9rem; padding: 6px 9px; }
  .nav__list { gap: 6px; }
  /* Ana sayfa bağlantısı logo üzerinden verilir; menüde yer kaplamasın */
  .nav__list > li:first-child { display: none; }
  .header__cta { font-size: .85rem; padding: 10px 18px; min-height: 44px; }
  .header__inner { gap: var(--s5); }
}

/* Breadcrumb dokunma hedefi */
.crumbs a { min-height: 44px; }

/* ==========================================================================
   Düzeltmeler
   ========================================================================== */

/* Koyu/kırmızı zeminli çerçevelerde liste metni okunur olsun */
.frame:not(.frame--cream) .checklist li { color: rgba(255, 255, 255, .92); }
.frame:not(.frame--cream) .checklist .ico { color: var(--gold); }
.frame:not(.frame--cream) .rule::before { background: #fff; opacity: .38; }
.frame:not(.frame--cream) .rule::after { background: var(--gold); opacity: .85; }
.frame:not(.frame--cream) .quote { color: #fff; }

/* Amblem doğal en/boy oranını korusun */
.brand__logo { width: 46px; height: auto; }
.drawer__brand img { width: 38px; height: auto; }
.footer__brand img { width: 56px; height: auto; }
@media (max-width: 420px) { .brand__logo { width: 40px; height: auto; } }

/* Eyebrow tek parça kalsın (flex öğesi bölünmesin) */
.eyebrow { flex-wrap: wrap; }
.eyebrow::before { align-self: center; }

/* Mobilde dekoratif çizim metnin okunurluğunu bozmasın */
@media (max-width: 620px) {
  .page-hero__art { opacity: .09; right: -34px; }
}
