/* ===================== ROOT / TOKENS ===================== */
:root {
  --primary: #ff5722;
  --primary-600: #e84d1c;
  --primary-100: #fff1ec;
  --accent: #ffb547;

  --navy-900: #0b1f3a;
  --navy-800: #102a4e;
  --navy-700: #143360;
  --navy-100: #e7ecf4;

  --ink: #0e1a2b;
  --muted: #5a6b80;
  --line: #e6ebf3;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;

  --whatsapp: #25d366;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 6px 20px rgba(11, 31, 58, 0.08);
  --shadow: 0 18px 48px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 28px 70px rgba(11, 31, 58, 0.18);

  --container: 1200px;
  --header-h: 78px;

  --t-fast: 180ms cubic-bezier(0.4, 0.2, 0.2, 1);
  --t: 280ms cubic-bezier(0.4, 0.2, 0.2, 1);

  --grad-primary: linear-gradient(135deg, #ff7a3d 0%, #ff5722 50%, #e63946 100%);
  --grad-flame: linear-gradient(135deg, #ffb347 0%, #ff5722 60%, #d62828 100%);
  --grad-navy: linear-gradient(135deg, #0b1f3a 0%, #143360 60%, #1d4d8d 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

::selection {
  background: var(--primary);
  color: #fff;
}

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

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
    background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1.02rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 87, 34, 0.32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 87, 34, 0.42);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--navy-900);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
}
.btn--whatsapp:hover {
  background: #1fbc5a;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid rgba(11, 31, 58, 0.22);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-100);
  transform: translateY(-2px);
}

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 24px;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar__left i,
.topbar__right i {
  color: var(--accent);
  margin-right: 4px;
}

.topbar__right a {
  color: #fff;
  font-weight: 600;
}

.topbar__right a:hover {
  color: var(--accent);
}

.topbar .dot {
  opacity: 0.5;
}

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t), background var(--t);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-flame);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 10px 22px rgba(255, 87, 34, 0.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 1.25rem;
  color: var(--navy-900);
}

.brand__text small {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 700;
  margin-top: 4px;
}

.brand--light .brand__text strong {
  color: #fff;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  position: relative;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav__link:hover {
  color: var(--primary);
  background: var(--primary-100);
}

.nav__link.active {
  color: var(--primary);
}

.nav__link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-primary);
}

.nav__link--accent {
  font-weight: 700;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--grad-navy);
  color: #fff;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 11vw, 140px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1100px 600px at 110% -10%,
      rgba(255, 87, 34, 0.32),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 110%,
      rgba(29, 77, 141, 0.6),
      transparent 60%
    );
  z-index: -1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}

.hero__shape--1 {
  width: 320px;
  height: 320px;
  background: #ff7a3d;
  top: -60px;
  right: -60px;
}
.hero__shape--2 {
  width: 280px;
  height: 280px;
  background: #1d4d8d;
  bottom: -40px;
  left: 6%;
  animation-delay: -3s;
}
.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: #ffb547;
  top: 40%;
  left: 38%;
  opacity: 0.25;
  animation-delay: -6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.04);
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.badge i {
  color: var(--accent);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 18px;
  color: #fff;
}

.grad {
  display: block;
  background: linear-gradient(90deg, #ffb347 0%, #ff5722 60%, #ff8a5b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero__lead strong {
  color: #fff;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin-top: 6px;
}

.hero__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__points i {
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero card */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 26px;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 18px;
}

.hero__card-head i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-flame);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px rgba(255, 87, 34, 0.45);
}

.hero__card-head strong {
  display: block;
  font-size: 1.1rem;
}

.hero__card-head small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.stat {
  text-align: center;
  padding: 14px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.stat__num {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(180deg, #ffb347, #ff5722);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.stat span:not(.stat__num) {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin-left: 2px;
}

.stat small {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__cta-text {
  flex: 1;
}

.hero__cta-text strong {
  display: block;
  font-size: 1rem;
}

.hero__cta-text span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: bob 5s ease-in-out infinite;
}

.hero__floating i {
  color: var(--primary);
}

.hero__floating--1 {
  top: 0;
  left: -10px;
}

.hero__floating--2 {
  bottom: 24px;
  right: -10px;
  animation-delay: -2.5s;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========= Hero: kurumsal karşılama — iki ana kol ========= */
.hero__welcome {
  max-width: 1080px;
  margin: 0 auto;
}

.hero__intro {
  text-align: center;
}

.hero__title-and {
  display: block;
  font-size: 0.38em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin: 0.12em 0;
}

.hero__lead--narrow {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 34px 0 26px;
  text-align: left;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  min-height: 100%;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 71, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.pillar:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-flame);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(255, 87, 34, 0.35);
}

.pillar--project .pillar__icon {
  background: linear-gradient(135deg, #2a5cad 0%, #143360 100%);
  box-shadow: 0 10px 22px rgba(20, 51, 96, 0.45);
}

.pillar__title {
  font-size: 1.32rem;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
}

.pillar__text {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 14px;
  line-height: 1.55;
}

.pillar__text strong {
  color: #fff;
}

.pillar__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
}

.pillar__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pillar__list i {
  color: var(--accent);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.pillar__cta {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pillar:hover .pillar__cta {
  color: #fff;
}

.hero__actions--center {
  justify-content: center;
}

.hero__stats--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 660px;
  margin: 26px auto 10px;
}

.hero__stats--inline .stat {
  flex: 1;
  min-width: 140px;
}

.hero .stat {
  color: #fff;
}

.hero .stat small {
  color: rgba(255, 255, 255, 0.72);
}

.hero__points--center {
  justify-content: center;
  justify-items: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* ========= Kurumsal metin bölümleri ========= */
.corp__head {
  max-width: 920px;
  margin-bottom: 40px;
}

.corp__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.corp__main .corp__h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.corp__main .corp__h3 i {
  color: var(--primary);
}

.corp__bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.corp__bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--muted);
}

.corp__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-primary);
}

.corp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.corp__panel {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.corp__panel h4 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.corp__panel--accent {
  border-color: rgba(255, 87, 34, 0.28);
  background: linear-gradient(165deg, #fff8f5 0%, #fff 55%);
}

.corp__panel--navy {
  background: var(--grad-navy);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.corp__panel--navy h4 {
  color: #fff;
}

.corp__panel--navy .corp__panel-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin: 16px 0 18px;
}

.corp__mini {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.corp__mini li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  color: var(--muted);
}

.corp__mini i {
  margin-top: 3px;
  color: var(--primary);
  flex-shrink: 0;
}

.corp__mini--light li {
  color: rgba(255, 255, 255, 0.88);
}

.corp__mini--light i {
  color: var(--accent);
}

.corp__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary);
}

.corp__panel-link:hover {
  color: var(--primary-600);
}

.corp__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.corp__card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.corp__card h4 {
  font-size: 0.98rem;
  margin: 10px 0 6px;
}

.corp__card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.corp__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.1rem;
}

/* ===================== MARQUEE ===================== */
.marquee {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}

.marquee__track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}

.marquee__track i {
  color: var(--primary);
  font-size: 1rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--grad-navy);
  color: #fff;
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section__head--light .section__title,
.section__head--light p {
  color: #fff;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-100);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.section__title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
}

.section__sub {
  color: var(--muted);
  font-size: 1.04rem;
}

.section--dark .section__sub {
  color: rgba(255, 255, 255, 0.78);
}

/* ===================== SERVICES ===================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

.service {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
  isolation: isolate;
}

.service::before {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 220px;
  height: 220px;
  background: var(--grad-flame);
  border-radius: 50%;
  opacity: 0;
  filter: blur(30px);
  transition: opacity var(--t);
  z-index: -1;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service:hover::before {
  opacity: 0.18;
}

.service__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--primary-100);
  color: var(--primary);
  transition: background var(--t), color var(--t), transform var(--t);
}

.service:hover .service__icon {
  background: var(--grad-flame);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.service h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service > p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.service ul {
  margin-bottom: 18px;
  display: grid;
  gap: 6px;
}

.service li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.92rem;
}

.service li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary);
  font-size: 0.78rem;
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.service__link:hover {
  color: var(--navy-900);
  gap: 10px;
}

.service--featured {
  background: var(--grad-navy);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.service--featured h3,
.service--featured p,
.service--featured li {
  color: #fff;
}

.service--featured > p {
  color: rgba(255, 255, 255, 0.8);
}

.service--featured .service__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.service--featured:hover .service__icon {
  background: var(--grad-flame);
  color: #fff;
}

.service--featured .service__link {
  color: var(--accent);
}

.service--featured .service__link:hover {
  color: #fff;
}

.service__ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grad-flame);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(255, 87, 34, 0.45);
}

/* ===================== ABOUT ===================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__img {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, rgba(11, 31, 58, 0.55) 0%, rgba(11, 31, 58, 0.05) 60%),
    url("https://images.unsplash.com/photo-1581094288338-2314dddb7ece?auto=format&fit=crop&w=900&q=80")
      center/cover no-repeat,
    var(--navy-900);
}

.about__exp {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.about__exp strong {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.about__exp span {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.94rem;
}

.about__content > p {
  color: var(--muted);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0 28px;
}

.feat {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform var(--t), border-color var(--t);
}

.feat:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.feat i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-100);
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feat strong {
  display: block;
  font-size: 0.98rem;
}

.feat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===================== WHY ===================== */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

.why__item {
  position: relative;
  padding: 32px 26px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.why__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.why__num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-100);
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.why__item h3 {
  font-size: 1.12rem;
  margin: 12px 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why__item h3 i {
  color: var(--primary);
}

.why__item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ===================== BRANDS ===================== */
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  transition: transform var(--t), background var(--t), border-color var(--t);
}

.brand-card i {
  color: var(--accent);
  font-size: 1.05rem;
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ===================== PROCESS / STEPS ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--t), box-shadow var(--t);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--grad-flame);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px rgba(255, 87, 34, 0.4);
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step h3 i {
  color: var(--primary);
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ===================== AREA / MAP ===================== */
.area {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-800);
  transition: transform var(--t-fast), background var(--t-fast),
    color var(--t-fast), border-color var(--t-fast);
}

.chip:hover {
  background: var(--grad-flame);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.area__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
  background: var(--bg-soft);
}

.area__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================== REVIEWS ===================== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
  transition: transform var(--t), box-shadow var(--t);
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review__stars {
  color: #f5b400;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.review blockquote {
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.6;
  font-size: 0.98rem;
}

.review figcaption strong {
  display: block;
  font-weight: 700;
}

.review figcaption span {
  font-size: 0.86rem;
  color: var(--muted);
}

/* ===================== CTA STRIP ===================== */
.cta-strip {
  background: var(--grad-flame);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 300px at 80% 50%,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
}

.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0 0 6px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.cta-strip__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===================== FAQ ===================== */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq__head {
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq__item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 700;
  color: var(--navy-900);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary i {
  color: var(--primary);
  transition: transform var(--t);
  flex-shrink: 0;
}

.faq__item[open] summary i {
  transform: rotate(-180deg);
}

.faq__a {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===================== CONTACT ===================== */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: stretch;
}

.contact__list {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}

.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform var(--t), border-color var(--t);
}

.section--alt .contact__list li {
  background: #fff;
}

.contact__list li:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}

.contact__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-flame);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__list small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.contact__list strong {
  font-size: 1rem;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy-900);
  border: 1px solid var(--line);
  transition: transform var(--t-fast), background var(--t-fast),
    color var(--t-fast), border-color var(--t-fast);
}

.socials a:hover {
  background: var(--grad-flame);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Contact form */
.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.contact__form h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.form__sub {
  color: var(--muted);
  margin-bottom: 22px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact__form label {
  display: block;
}

.contact__form label > span {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.contact__form label > span em {
  color: var(--primary);
  font-style: normal;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font: inherit;
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast),
    box-shadow var(--t-fast);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12);
}

.contact__form textarea {
  resize: vertical;
  min-height: 110px;
}

.form__full {
  margin-bottom: 14px;
}

.form__check {
  display: flex !important;
  gap: 10px;
  margin: 6px 0 18px;
  font-size: 0.88rem;
  color: var(--muted);
}

.form__check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form__check a,
.form__kvkk-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.form__kvkk-link {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.form__kvkk-link:hover {
  color: var(--primary-600);
}

.form__feedback {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  display: none;
}

.form__feedback.show {
  display: block;
}

.form__feedback.success {
  background: #e8f9ef;
  color: #137c3c;
}

.form__feedback.error {
  background: #fdecea;
  color: #b71c1c;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #08152a;
  color: rgba(255, 255, 255, 0.78);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 70px 24px 40px;
}

.footer__brand p {
  margin: 16px 0 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer__col ul {
  display: grid;
  gap: 8px;
}

.footer__col li a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer__col li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.footer__contact i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__contact a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 0.86rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer__credit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__credit-logo {
  display: inline-flex;
  line-height: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.footer__credit-logo:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.footer__credit-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.footer .socials a {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.footer .socials a:hover {
  background: var(--grad-flame);
  border-color: transparent;
}

/* ===================== FLOATING BUTTONS ===================== */
.float {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  z-index: 60;
  box-shadow: var(--shadow);
  transition: transform var(--t), opacity var(--t);
  cursor: pointer;
}

.float:hover {
  transform: scale(1.08);
}

.float--whatsapp {
  bottom: 24px;
  right: 24px;
  background: var(--whatsapp);
  animation: pulse 2.4s ease-in-out infinite;
}

.float--call {
  bottom: 90px;
  right: 24px;
  background: var(--grad-flame);
}

.float--top {
  bottom: 156px;
  right: 24px;
  background: var(--navy-900);
  opacity: 0;
  pointer-events: none;
  border: 0;
}

.float--top.visible {
  opacity: 1;
  pointer-events: auto;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45),
      0 0 0 18px rgba(37, 211, 102, 0);
  }
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__shape,
  .hero__floating,
  .marquee__track,
  .float--whatsapp {
    animation: none !important;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillars {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .corp__grid {
    grid-template-columns: 1fr;
  }

  .corp__cards {
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
    margin: 0 auto;
  }

  .hero__points {
    justify-items: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .about,
  .area,
  .contact {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 18px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t), opacity var(--t), visibility var(--t);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__link.active::after {
    display: none;
  }

  .nav__link.active {
    background: var(--primary-100);
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero__points {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__floating {
    display: none;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 50px;
  }

  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .footer__credit {
    padding-bottom: 6px;
  }

  .float {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .float--whatsapp {
    bottom: 18px;
    right: 18px;
  }

  .float--call {
    bottom: 78px;
    right: 18px;
  }

  .float--top {
    bottom: 138px;
    right: 18px;
  }

  .topbar {
    font-size: 0.78rem;
  }

  .topbar__left {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .btn--lg {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-strip__buttons {
    width: 100%;
  }

  .cta-strip__buttons .btn {
    flex: 1;
    min-width: 140px;
  }
}

/* ===================== KVKK MODAL ===================== */
.kvkk-modal[hidden] {
  display: none !important;
}

.kvkk-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.kvkk-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.55);
  backdrop-filter: blur(4px);
}

.kvkk-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(85vh, 720px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.kvkk-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.kvkk-modal__header h2 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy-900);
}

.kvkk-modal__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}

.kvkk-modal__close:hover {
  background: var(--primary-100);
  color: var(--primary);
}

.kvkk-modal__body {
  padding: 18px 22px 24px;
  overflow-y: auto;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.kvkk-modal__body h3 {
  margin: 18px 0 8px;
  font-size: 0.98rem;
  color: var(--navy-900);
}

.kvkk-modal__body h3:first-of-type {
  margin-top: 0;
}

.kvkk-modal__body p {
  margin: 0 0 10px;
}

.kvkk-modal__body ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.kvkk-modal__body li {
  margin-bottom: 6px;
}

.kvkk-modal__body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}
