/*
Theme Name: BeNova Tema
Author: Antigravity AI
Description: BeNova Consulting özel kurumsal teması.
Version: 1.0.0
Text Domain: benova-tema
*/

:root {
  --primary: #382A7C;
  --primary-dark: #2A1F5E;
  --primary-light: #5241A4;
  --secondary: #FBAE17;
  --secondary-hover: #e09910;
  --text-dark: #333333;
  --text-light: #F4F4FA;
  --text-muted: #6b7280;
  --bg-light: #F7F7FA;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --radius-md: 8px;
  --radius-lg: 16px;
  --container-width: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: inherit;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--text-dark);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

/* ============================================================
   HEADER — üst mor bar + beyaz ana header (birebir canlı site)
   ============================================================ */

/* Top Bar (purple) */
.top-bar {
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 46px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.top-bar__text {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
}
.top-bar__cta {
  background: #fff;
  color: var(--primary) !important;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.top-bar__cta:hover {
  background: var(--secondary);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Main Header (white) */
.site-header {
  background-color: #fff;
  padding: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}

/* Branding (logo) */
.site-branding {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-branding__logo {
  display: block;
  height: auto;
  max-height: 58px;
  width: auto;
}

/* Nav */
.main-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-navigation__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation__list > li { position: relative; }
.main-navigation__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 30px 16px;
  letter-spacing: .2px;
  transition: color .2s ease;
}
.main-navigation__list > li > a .caret {
  font-size: 10px;
  line-height: 1;
  color: var(--primary);
  margin-left: 2px;
}
.main-navigation__list > li > a:hover,
.main-navigation__list > li:hover > a,
.main-navigation__list > li.current-menu-item > a {
  color: var(--primary);
}

/* Mega menu (Hakkımızda & Hizmetlerimiz) */
.main-navigation__list .has-mega { position: static; }

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--primary);
  padding: 28px 40px 32px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 30px 50px -20px rgba(18, 11, 40, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 50;
}

.main-navigation__list > li.has-mega:hover > .mega-menu,
.main-navigation__list > li.has-mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  gap: 6px 28px;
}

.mega-menu__grid--2col {
  grid-template-columns: 1fr 1fr;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s ease, transform 0.25s ease;
}

.mega-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.mega-item--wide {
  grid-column: 1 / -1;
  justify-content: center;
}

.mega-item__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.mega-item:hover .mega-item__icon {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: rotate(-4deg);
}

.mega-item__icon--img img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.mega-item:hover .mega-item__icon--img img {
  filter: none;
}

.mega-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mega-item__title {
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.mega-item__desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

/* Mobile menu toggle */
.main-navigation__toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.main-navigation__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
}

/* Header actions (right cluster) */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-actions__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease;
}
.header-actions__lang:hover { color: var(--primary); }
.header-actions__flag {
  display: inline-flex;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.header-actions__flag svg { display: block; }

.header-actions__social {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-actions__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.header-actions__social a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.header-actions__search {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.header-actions__search:hover {
  background: rgba(56, 42, 124, 0.08);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(20, 15, 50, 0.9) 0%, rgba(20, 15, 50, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Intro Split (below hero) */
.intro-section {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.intro-copy {
  padding-right: 20px;
}

.intro-eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.intro-title {
  font-size: 42px;
  line-height: 1.15;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 24px;
}

.intro-copy p {
  color: #4a4a52;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.intro-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 42px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.intro-cta:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.intro-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 6px 16px rgba(56, 42, 124, 0.25);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.intro-slider__arrow:hover {
  background-color: var(--primary-dark);
  transform: translateY(-50%) scale(1.05);
}

.intro-slider__arrow--prev { left: -18px; }
.intro-slider__arrow--next { right: -18px; }

.intro-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 15, 60, 0.18);
}

.intro-card__brandbar {
  background: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #efeff3;
}

.intro-card__brandbar img {
  max-height: 34px;
  width: auto;
}

.intro-card__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f7;
}

.intro-card__track {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-card__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.intro-card__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.intro-card__slide a,
.intro-card__slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.intro-card__slide img {
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.intro-card__footerbar {
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

@media (max-width: 960px) {
  .intro-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-copy { padding-right: 0; }
  .intro-title { font-size: 32px; }
  .intro-slider__arrow--prev { left: 6px; }
  .intro-slider__arrow--next { right: 6px; }
}

@media (max-width: 520px) {
  .intro-section { padding: 60px 0; }
  .intro-title { font-size: 26px; }
  .intro-card__caption { padding: 18px; }
  .intro-card__caption p { font-size: 15px; }
}

/* NEDEN BeNova Consulting */
.neden-section {
  padding: 90px 0;
  background-color: var(--bg-light);
  position: relative;
}

.neden-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.neden-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 15, 60, 0.18);
}

.neden-media img {
  width: 100%;
  height: auto;
  display: block;
}

.neden-copy {
  padding-left: 10px;
}

.neden-eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.neden-title {
  color: var(--primary);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.neden-copy p {
  color: #4a4a52;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.neden-copy p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .neden-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .neden-copy { padding-left: 0; }
  .neden-title { font-size: 30px; }
}

@media (max-width: 520px) {
  .neden-section { padding: 60px 0; }
  .neden-title { font-size: 26px; }
}

/* About Sections */
.about-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.alt-bg {
  background-color: var(--bg-light);
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Legacy section title (kept for backward compatibility) */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

/* Danışmanlık Modellerimiz */
.models-section {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 20% 10%, rgba(123, 90, 255, 0.22), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(251, 174, 23, 0.12), transparent 45%),
    linear-gradient(180deg, #2e2366 0%, #3a2c84 50%, #2b2161 100%);
  color: #fff;
  overflow: hidden;
}

.models-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.75), transparent 70%);
  pointer-events: none;
}

.models-section > .container { position: relative; z-index: 1; }

.models-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 60px;
  color: #fff;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 40px 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(251, 174, 23, 0.18) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 174, 23, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  color: #fff;
}

.model-card:hover::before { opacity: 1; }

.model-card--wide {
  grid-row: span 2;
}

.model-card__icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 174, 23, 0.14);
  border: 1px solid rgba(251, 174, 23, 0.35);
  border-radius: 14px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.model-card:hover .model-card__icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(251, 174, 23, 0.24);
}

.model-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.model-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 70px 22px 0;
  color: #fff;
}

.model-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.model-card__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.model-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(251, 174, 23, 0.18);
}

.model-card__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.model-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
  opacity: 0;
}

.model-card:hover .model-card__arrow {
  opacity: 1;
  background: var(--secondary);
  color: #1a1040;
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .models-title { font-size: 32px; margin-bottom: 40px; }
  .models-grid { grid-template-columns: 1fr; gap: 20px; }
  .model-card { padding: 30px 28px 34px; }
  .model-card--wide { grid-row: auto; }
  .model-card__title { font-size: 18px; margin-right: 64px; }
  .model-card__icon { width: 48px; height: 48px; top: 24px; right: 24px; }
  .model-card__icon img { width: 26px; height: 26px; }
}

/* Logos / References */
.references-section {
  padding: 60px 0;
  background-color: #fff;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.logo-item {
  border: 1px solid var(--border-color);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 90px;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}
.logo-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.logo-item img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.logo-item span {
  font-weight: bold;
  color: var(--text-muted);
}

/* News Section */
.news-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.news-image {
  height: 200px;
  background-color: var(--text-muted);
}

.news-content {
  padding: 25px;
}

.news-meta {
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.news-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.news-title a {
  color: var(--text-dark);
}

.news-title a:hover {
  color: var(--primary);
}

/* ============================================================
   FOOTER — birebir canlı site tasarımı
   ============================================================ */
.site-footer {
  background-color: var(--primary);
  color: #fff;
  position: relative;
  padding-top: 120px; /* breathing room inside footer so bottom half of CTA card can sit on purple */
}

.site-footer__top { padding: 40px 0 30px; }

/* ======================================================================
   Contact CTA (overlaps footer top — half on body, half on footer)
   ====================================================================== */
.footer-cta {
  position: relative;
  margin-top: -160px;   /* pulls card UP so upper half sits on white body, lower half on purple footer */
  margin-bottom: 30px;
  z-index: 5;
}

.footer-cta__card {
  position: relative;
  background:
    radial-gradient(1200px 400px at 110% -10%, rgba(251, 174, 23, 0.28) 0%, transparent 55%),
    radial-gradient(900px 500px at -10% 110%, rgba(123, 97, 255, 0.35) 0%, transparent 55%),
    linear-gradient(135deg, #2a1f6b 0%, #382a7c 55%, #1f174f 100%);
  border-radius: 28px;
  padding: 60px 64px 52px;
  box-shadow:
    0 50px 100px -30px rgba(20, 15, 60, 0.55),
    0 20px 40px -15px rgba(20, 15, 60, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  isolation: isolate;
}

.footer-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-cta__card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(251, 174, 23, 0.35) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.footer-cta__head {
  position: relative;
  margin-bottom: 36px;
  text-align: center;
  z-index: 1;
}

.footer-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fbae17;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(251, 174, 23, 0.12);
  border: 1px solid rgba(251, 174, 23, 0.3);
  border-radius: 40px;
}

.footer-cta__title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.footer-cta__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer-cta__form { position: relative; z-index: 1; }

.footer-cta__row { margin-bottom: 18px; }

.footer-cta__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Floating-label fields */
.footer-field {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.footer-cta__row .footer-field { margin-bottom: 0; }

.footer-field input,
.footer-field textarea,
.footer-field select {
  width: 100%;
  padding: 22px 20px 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

.footer-field select option { color: #1a1a1a; background: #fff; }

.footer-field--select { position: relative; }

.footer-field__chevron {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-field select:focus ~ .footer-field__chevron { color: #fbae17; }

.footer-field select:required:invalid { color: rgba(255, 255, 255, 0.4); }

.footer-field select:focus + .footer-field__label,
.footer-field select:valid + .footer-field__label {
  top: 0;
  transform: translateY(-50%);
  font-size: 11px;
  color: #fbae17;
  background: #2e2370;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-field textarea { min-height: 120px; padding-top: 28px; }

.footer-field input::placeholder,
.footer-field textarea::placeholder { color: transparent; }

.footer-field input:focus,
.footer-field textarea:focus {
  outline: none;
  border-color: rgba(251, 174, 23, 0.7);
  box-shadow: 0 0 0 4px rgba(251, 174, 23, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

.footer-field__label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}

.footer-field--textarea .footer-field__label {
  top: 22px;
  transform: none;
}

.footer-field input:focus + .footer-field__label,
.footer-field input:not(:placeholder-shown) + .footer-field__label,
.footer-field textarea:focus + .footer-field__label,
.footer-field textarea:not(:placeholder-shown) + .footer-field__label {
  top: 0;
  transform: translateY(-50%);
  font-size: 11px;
  color: #fbae17;
  background: #2e2370;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Consent checkboxes */
.footer-cta__consents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.footer-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-check input { position: absolute; opacity: 0; pointer-events: none; }

.footer-check__box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.footer-check input:checked ~ .footer-check__box {
  background: #fbae17;
  border-color: #fbae17;
  color: #1f174f;
}

.footer-check input:focus-visible ~ .footer-check__box {
  box-shadow: 0 0 0 4px rgba(251, 174, 23, 0.2);
}

.footer-check__text a {
  color: #fbae17;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(251, 174, 23, 0.4);
  text-underline-offset: 2px;
}

.footer-check__text a:hover { color: #ffc34a; }

/* Submit */
.footer-cta__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-cta__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #fbae17 0%, #ff9a00 100%);
  color: #1f174f;
  border: none;
  border-radius: 40px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 18px 40px -12px rgba(251, 174, 23, 0.55), 0 6px 14px -6px rgba(251, 174, 23, 0.3);
}

.footer-cta__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -12px rgba(251, 174, 23, 0.7), 0 8px 18px -6px rgba(251, 174, 23, 0.4);
  filter: brightness(1.05);
}

.footer-cta__submit svg {
  transition: transform 0.25s ease;
}

.footer-cta__submit:hover svg {
  transform: translateX(4px);
}

.footer-cta__note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

@media (max-width: 820px) {
  .site-footer { padding-top: 90px; }
  .footer-cta { margin-top: -110px; }
  .site-footer__top { padding: 30px 0 20px; }
  .footer-cta__card { padding: 36px 24px 32px; border-radius: 22px; }
  .footer-cta__title { font-size: 26px; }
  .footer-cta__row--2,
  .footer-cta__consents { grid-template-columns: 1fr; gap: 12px; }
  .footer-cta__actions { flex-direction: column; align-items: flex-start; }
}

/* --- Brand row (logo + justified tagline) --- */
.site-footer__brand-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 36px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  padding-right: 34px;
  border-right: 1px solid rgba(255,255,255,0.35);
}
.site-footer__logo img {
  display: block;
  height: auto;
  max-width: 300px;
  filter: brightness(0) invert(1);
}

.site-footer__tagline {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  text-align: justify;
  margin: 0;
  opacity: 0.95;
}

/* --- Divider lines --- */
.site-footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 0 0 30px;
}

/* --- Offices block --- */
.site-footer__offices {
  padding: 0 20px 10px;
}
.site-footer__office-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 14px 0;
}
.site-footer__office-addr,
.site-footer__office-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
}
.site-footer__office-contact { justify-content: flex-end; }
.site-footer__office-label,
.site-footer__c-label {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.site-footer__office-value,
.site-footer__c-value {
  color: #fff;
  font-weight: 600;
}
.site-footer__c-value { white-space: nowrap; }
a.site-footer__c-value:hover,
a.site-footer__office-value:hover { color: rgba(255, 255, 255, 0.75); }

/* --- Legal link row --- */
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 34px;
  padding: 30px 20px 40px;
  font-size: 13.5px;
}
.site-footer__legal a {
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  transition: color .2s ease;
}
.site-footer__legal a:hover { color: var(--secondary); }

/* --- Bottom strip (lighter purple) --- */
.site-footer__bottom {
  background: rgba(255,255,255,0.10);
  padding: 18px 0;
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.site-footer__social {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.site-footer__social a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .site-footer__brand-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__logo {
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding: 0 0 20px;
  }
  .site-footer__office-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .site-footer__office-contact { justify-content: flex-start; }
  .site-footer__legal { gap: 10px 20px; }
  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Utilities */
.py-section { padding-top: 80px; padding-bottom: 80px; }
.text-center { text-align: center; }

@media (max-width: 1200px) {
  .logos-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-grid { grid-template-columns: repeat(5, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .main-navigation__toggle { display: inline-flex; }
  .main-navigation__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 10px 0;
    gap: 0;
    display: none;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,.15);
  }
  .main-navigation.is-open .main-navigation__list { display: flex; }
  .main-navigation__list > li > a {
    padding: 14px 20px;
    width: 100%;
  }
  .main-navigation__list .has-mega { position: relative; }
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 12px 18px;
    border-radius: 0;
  }
  .mega-menu__grid--2col { grid-template-columns: 1fr; gap: 4px; }
  .mega-item { padding: 12px 14px; gap: 12px; }
  .mega-item__icon { width: 38px; height: 38px; }
  .mega-item__title { font-size: 14px; }
  .mega-item__desc { font-size: 12px; }
  .mega-item--wide { justify-content: flex-start; }
  .header-actions__lang-label { display: none; }
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .hero-content h2 { font-size: 36px; }
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .header-actions { gap: 8px; }
  .header-actions__social { display: none; }
  .top-bar__text { font-size: 12px; letter-spacing: .5px; }
}

@media (max-width: 500px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ======================================================================
   Service detail page (Stratejik Yönetim & friends)
   ====================================================================== */
.service-page { background: #f7f7fa; }

/* Hero */
.service-hero {
  padding: 70px 0 30px;
  background: #f7f7fa;
}

.service-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
}

.service-hero__title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  max-width: 75%;
}

.service-hero__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 18px 40px -12px rgba(56, 42, 124, 0.45);
}

.service-hero__icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Banner */
.service-banner { padding: 0 0 30px; }

.service-banner__frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px -20px rgba(20, 15, 60, 0.25);
}

.service-banner__frame img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* Content blocks */
.service-body { padding: 20px 0 60px; background: #f7f7fa; }

.service-block { margin-bottom: 38px; }

.service-block__head {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px -10px rgba(56, 42, 124, 0.5);
}

.service-block__head h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}

.service-block > p,
.service-block__list {
  color: #444456;
  font-size: 15.5px;
  line-height: 1.75;
  padding-left: 4px;
  max-width: 980px;
}

.service-block__list {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

.service-block__list li { margin-bottom: 6px; }

/* Sub-services chip grid */
.service-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 22px;
  margin-top: 18px;
  margin-bottom: 40px;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px 14px 14px;
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 40px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(56, 42, 124, 0.4);
  background: #fafaff;
}

.service-chip__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
}

.service-chip__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-chip__label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

/* Academy panel */
.service-academy { padding: 30px 0 80px; background: #f7f7fa; }

.service-academy__panel {
  background: #eeeef2;
  border-radius: 18px;
  padding: 50px 60px 56px;
}

.service-academy__panel h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 18px;
  line-height: 1.25;
}

.service-academy__sub {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 30px 0 12px;
}

.service-academy__panel p {
  color: #444456;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-academy__list {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 18px;
  color: #444456;
  font-size: 15.5px;
  line-height: 1.75;
}

.service-academy__list li { margin-bottom: 6px; }

.service-academy__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-academy__cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .service-hero__title { font-size: 32px; max-width: calc(100% - 100px); }
  .service-hero__icon { width: 72px; height: 72px; border-radius: 18px; }
  .service-hero__icon img { width: 40px; height: 40px; }
  .service-banner__frame img { max-height: 220px; }
  .service-subgrid { grid-template-columns: 1fr; }
  .service-academy__panel { padding: 36px 28px 42px; }
  .service-academy__panel h2 { font-size: 22px; }
  .service-block__head { padding: 12px 22px; }
  .service-block__head h2 { font-size: 15px; }
}

@media (max-width: 520px) {
  .service-hero { padding: 50px 0 20px; }
  .service-hero__title { font-size: 26px; }
  .service-hero__icon { width: 58px; height: 58px; border-radius: 14px; }
  .service-hero__icon img { width: 32px; height: 32px; }
}

/* Service FAQ (2x2 accordion) */
.service-faq {
  padding: 60px 0 90px;
  background: #f7f7fa;
}

.service-faq__title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 40px;
}

.service-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.faq-item {
  background: #fff;
  border: 1.5px solid #e9e9ef;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item[open],
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 14px 35px -22px rgba(56, 42, 124, 0.45);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item__summary::-webkit-details-marker { display: none; }

.faq-item__q {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(56, 42, 124, 0.08);
  color: var(--primary);
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.faq-item[open] .faq-item__icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 26px 24px;
  color: #4a4a52;
  font-size: 15px;
  line-height: 1.75;
  animation: faqFade 0.35s ease;
}

.faq-item__body p { margin: 0; }
.faq-item__body p + .faq-iller { margin-top: 18px; }

.faq-iller {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: #f7f5ff;
  border: 1px solid #ece7ff;
  border-radius: 14px;
}

.faq-iller__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.faq-iller__control {
  position: relative;
  display: block;
}

.faq-iller__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 13px 44px 13px 16px;
  border: 1.5px solid #e0dbf5;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 14.5px;
  color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-iller__select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 42, 124, 0.12);
}

.faq-iller__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  display: inline-flex;
}

.faq-iller__result {
  margin: 0 !important;
  min-height: 20px;
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
  display: none;
}

.faq-iller__result.is-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(16, 163, 93, 0.08);
  border: 1px solid rgba(16, 163, 93, 0.2);
  border-radius: 10px;
  color: #0f8a52;
}

.faq-iller__result.is-ok::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: #10a35d;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='m3 8 3.5 3.5L13 5'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='m3 8 3.5 3.5L13 5'/></svg>") center / contain no-repeat;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .service-faq__grid { grid-template-columns: 1fr; gap: 14px; }
  .service-faq__title { font-size: 24px; margin-bottom: 28px; }
  .faq-item__summary { padding: 18px 20px; }
  .faq-item__q { font-size: 15px; }
  .faq-item__body { padding: 0 20px 20px; font-size: 14.5px; }
}

/* ======================================================================
   Kariyer page
   ====================================================================== */
.kariyer-body {
  padding: 30px 0 80px;
  background: #f7f7fa;
}

.kariyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: start;
}

/* Left: info column */
.kariyer-info {
  position: sticky;
  top: 110px;
  padding: 20px 0;
}

.kariyer-info__eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(56, 42, 124, 0.08);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.kariyer-info__title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.kariyer-info__body p {
  color: #4a4a52;
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.kariyer-info__body p:last-child { margin-bottom: 0; }

/* highlights list */
.kariyer-hl {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kariyer-hl__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ececf3;
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.kariyer-hl__item:hover { border-color: rgba(56, 42, 124, 0.3); transform: translateY(-2px); }

.kariyer-hl__dot {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3c2e86 0%, #5a4bb8 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.kariyer-hl__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kariyer-hl__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.kariyer-hl__desc {
  font-size: 13.5px;
  color: #6b6b75;
  line-height: 1.55;
}

/* Right: form card */
.kariyer-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 44px 36px;
  border: 1px solid #ececf3;
  box-shadow: 0 30px 70px -30px rgba(20, 15, 60, 0.18), 0 8px 20px -12px rgba(20, 15, 60, 0.08);
}

.kariyer-form-card__head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ececf3;
}

.kariyer-form-card__eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kariyer-form-card__title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.kariyer-form-card__subtitle {
  color: #585865;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* form rows / fields */
.kariyer-form__row { margin-bottom: 18px; }

.kariyer-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.kariyer-field {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.kariyer-form__row .kariyer-field { margin-bottom: 0; }

.kariyer-field input,
.kariyer-field textarea,
.kariyer-field select {
  width: 100%;
  padding: 22px 20px 10px;
  border: 1.5px solid #e5e5ee;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: #1a1a1a;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kariyer-field textarea { min-height: 110px; padding-top: 28px; }

.kariyer-field input::placeholder,
.kariyer-field textarea::placeholder { color: transparent; }

.kariyer-field input:focus,
.kariyer-field textarea:focus,
.kariyer-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 42, 124, 0.12);
}

.kariyer-field__label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a8a95;
  font-size: 14.5px;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}

.kariyer-field--textarea .kariyer-field__label {
  top: 22px;
  transform: none;
}

.kariyer-field input:focus + .kariyer-field__label,
.kariyer-field input:not(:placeholder-shown) + .kariyer-field__label,
.kariyer-field textarea:focus + .kariyer-field__label,
.kariyer-field textarea:not(:placeholder-shown) + .kariyer-field__label {
  top: 0;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--primary);
  background: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* select */
.kariyer-field--select { position: relative; }

.kariyer-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

.kariyer-field select:required:invalid { color: transparent; }

.kariyer-field__chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a8a95;
  pointer-events: none;
  display: inline-flex;
  transition: color 0.2s ease;
}

.kariyer-field select:focus ~ .kariyer-field__chevron { color: var(--primary); }

.kariyer-field select:focus + .kariyer-field__label,
.kariyer-field select:valid + .kariyer-field__label {
  top: 0;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--primary);
  background: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Upload */
.kariyer-upload {
  margin: 18px 0;
  padding: 18px;
  background: #f7f5ff;
  border: 1.5px dashed #d6cfff;
  border-radius: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.kariyer-upload.is-filled {
  border-color: rgba(16, 163, 93, 0.45);
  background: rgba(16, 163, 93, 0.05);
  border-style: solid;
}

.kariyer-upload__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kariyer-upload__control {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  cursor: pointer;
}

.kariyer-upload__control input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.kariyer-upload__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.kariyer-upload__control:hover .kariyer-upload__btn {
  background: var(--primary-dark, #2a1f6b);
  transform: translateY(-1px);
}

.kariyer-upload__file {
  font-size: 13.5px;
  color: #6b6b75;
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-all;
}

.kariyer-upload.is-filled .kariyer-upload__file {
  color: #0f8a52;
  font-weight: 600;
}

/* Consents */
.kariyer-form__consents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0 24px;
}

.kariyer-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #4a4a52;
  line-height: 1.55;
}

.kariyer-check input { position: absolute; opacity: 0; pointer-events: none; }

.kariyer-check__box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid #c8c8d2;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.kariyer-check input:checked ~ .kariyer-check__box {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.kariyer-check input:focus-visible ~ .kariyer-check__box {
  box-shadow: 0 0 0 4px rgba(56, 42, 124, 0.15);
}

.kariyer-check__text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kariyer-check__text a:hover { color: var(--primary-dark, #2a1f6b); }

/* Actions */
.kariyer-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.kariyer-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, #5a4bb8 100%);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 16px 30px -10px rgba(56, 42, 124, 0.5);
}

.kariyer-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -12px rgba(56, 42, 124, 0.65);
  filter: brightness(1.05);
}

.kariyer-submit svg { transition: transform 0.2s ease; }
.kariyer-submit:hover svg { transform: translateX(3px); }

.kariyer-form__note {
  color: #8a8a95;
  font-size: 13px;
}

@media (max-width: 960px) {
  .kariyer-grid { grid-template-columns: 1fr; gap: 40px; }
  .kariyer-info { position: static; padding: 0; }
  .kariyer-info__title { font-size: 32px; }
  .kariyer-form-card { padding: 32px 24px 28px; border-radius: 18px; }
  .kariyer-form-card__title { font-size: 22px; }
  .kariyer-form__row--2 { grid-template-columns: 1fr; gap: 14px; }
  .kariyer-form__actions { flex-direction: column; align-items: flex-start; }
}
