/* Vienerp — kurumsal tanıtım sitesi */

:root {
  --bg: #070d1b;
  --surface: rgba(15, 23, 42, 0.82);
  --text: #dbe7ff;
  --text-muted: #b8c6e4;
  --border: rgba(148, 163, 184, 0.22);
  --primary: #1e3a5f;
  --primary-hover: #152a45;
  --link: #7dd3fc;
  /* logo.png üzerinden örneklenen açık vurgu — CTA gradient uç rengi */
  --logo-light: #7adcfe;
  --accent: #0284c7;
  --accent-soft: rgba(2, 132, 199, 0.1);
  --success: #059669;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 32px rgba(15, 23, 42, 0.06);
  --shadow-lg:
    0 4px 8px rgba(15, 23, 42, 0.04), 0 24px 48px rgba(15, 23, 42, 0.09);
  --header-h: 72px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font);
  --container: 1120px;
  /* Hero CTA: tüm kırılımlarda metin bloğu ile aynı hat */
  --hero-copy-max: 36rem;
  /* Desktop: intro + CTA + metrics aynı kolon genişliği (tek kaynak) */
  --hero-stack-w: min(100%, var(--hero-copy-max));
  --hero-cta-max: 18rem;
  --hero-cta-gap-row: 0.78rem;
  --hero-cta-gap-col: 0.75rem;
  --hero-btn-fs: clamp(0.8125rem, 0.72rem + 0.45vw, 0.9375rem);
  --hero-btn-pad-y: clamp(0.6rem, 0.52rem + 0.35vw, 0.75rem);
  --hero-btn-pad-x: clamp(0.85rem, 0.72rem + 0.55vw, 1.2rem);
  --btn-fs: clamp(0.8125rem, 0.74rem + 0.28vw, 0.9375rem);
  --btn-pad-y: clamp(0.62rem, 0.52rem + 0.38vw, 0.75rem);
  --btn-pad-x: clamp(0.9rem, 0.78rem + 0.42vw, 1.35rem);
  --btn-sm-fs: clamp(0.75rem, 0.7rem + 0.22vw, 0.875rem);
  --btn-sm-pad-y: clamp(0.45rem, 0.38rem + 0.22vw, 0.5rem);
  --btn-sm-pad-x: clamp(0.8rem, 0.72rem + 0.32vw, 1rem);
  /* Hero tam ekran arka plan görseli (css/ → site kökü) */
  --hero-cover: url("../Adsız tasarım (9).png");
  /* CTA bandı — kurumsal banner görseli */
  --cta-banner: url("../altbant.png");
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 400;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.skip-link:focus {
  left: max(1rem, env(safe-area-inset-left, 0px));
  top: max(1rem, env(safe-area-inset-top, 0px));
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-feature-settings:
    "kern" 1,
    "liga" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(2, 132, 199, 0.18);
  color: var(--text);
}

h1,
h2,
h3,
.logo-text,
.eyebrow,
.section-eyebrow {
  font-family: var(--font-display);
}

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

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(
    clamp(1rem, 4vw + 0.25rem, 1.5rem),
    env(safe-area-inset-left, 0px)
  );
  padding-right: max(
    clamp(1rem, 4vw + 0.25rem, 1.5rem),
    env(safe-area-inset-right, 0px)
  );
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

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

.header-trailing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.header-trailing .lang-switch {
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  min-width: 2.55rem;
  position: relative;
}

.lang-toggle {
  margin: 0;
  min-width: 2.55rem;
  padding: 0.24rem 0.95rem;
  font-family: inherit;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #f0f9ff;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-toggle::after {
  content: "";
  display: inline-block;
  width: 0.34rem;
  height: 0.34rem;
  margin-left: 0.36rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.05rem) rotate(45deg);
}

.lang-switch.is-open .lang-toggle::after {
  transform: translateY(0.05rem) rotate(-135deg);
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 3.4rem;
  padding: 0.28rem;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  background: linear-gradient(180deg, rgba(9, 14, 30, 0.98) 0%, rgba(7, 13, 27, 0.98) 100%);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.5);
  z-index: 250;
}

.lang-switch.is-open .lang-menu {
  display: flex;
}

.lang-menu-btn {
  border: none;
  border-radius: 8px;
  padding: 0.32rem 0.5rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: #dbe7ff;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.lang-menu-btn:hover {
  background: rgba(56, 189, 248, 0.14);
}

.lang-menu-btn.is-active {
  color: #f0f9ff;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.25) 0%, rgba(37, 99, 235, 0.3) 100%);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  object-fit: contain;
}

.logo-footer .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: clamp(40px, 5.8vw, 48px);
  height: clamp(40px, 5.8vw, 48px);
  padding: 0;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle:hover {
  border-color: #94a3b8;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.nav-toggle-bar {
  display: block;
  height: clamp(2px, 0.45vw, 2.6px);
  width: clamp(20px, 3.4vw, 24px);
  background: linear-gradient(90deg, #1e3a5f 0%, #2d6a94 100%);
  margin: 0 auto;
  transition:
    transform 0.2s,
    opacity 0.2s;
  border-radius: 999px;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(clamp(6px, 1vw, 7px)) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(calc(-1 * clamp(6px, 1vw, 7px))) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-list a:hover {
  color: var(--primary);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: inherit;
  font-size: var(--btn-fs);
  font-weight: 600;
  line-height: 1.28;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(180deg, #254a73 0%, var(--primary) 100%);
  color: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.06),
    0 8px 20px rgba(30, 58, 95, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2d5685 0%, var(--primary-hover) 100%);
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.08),
    0 12px 28px rgba(30, 58, 95, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn-ghost:hover {
  background: #fafbfc;
  border-color: #cbd5e1;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-sm {
  padding: var(--btn-sm-pad-y) var(--btn-sm-pad-x);
  font-size: var(--btn-sm-fs);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover {
  background: #f1f5f9;
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
  contain: paint;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #050b16;
  background-image: var(--hero-cover);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: none;
  transform-origin: center center;
  animation: none;
  pointer-events: none;
}

/* Hero görseli net: grid / glow / ekstra katman yok */
.hero-bg::before,
.hero-bg::after {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "actions"
    "metrics";
  column-gap: 0;
  row-gap: clamp(0.95rem, 0.55rem + 1.35vw, 1.55rem);
  align-items: start;
}

.hero-grid > * {
  min-width: 0;
}

.hero .hero-grid {
  container-type: inline-size;
  container-name: hero;
}

@supports (font-size: 1cqi) {
  .hero-title {
    font-size: clamp(1.28rem, 0.58rem + 4.6cqi, 3.65rem);
    line-height: 1.06;
  }

  .hero-intro .lead {
    font-size: clamp(0.87rem, 0.78rem + 0.42cqi, 1.12rem);
    line-height: 1.58;
    max-width: min(100%, min(var(--hero-copy-max), 96cqi));
  }

  .hero .hero-trust-text {
    font-size: clamp(0.68rem, 0.58rem + 0.24cqi, 0.8rem);
  }
}

@supports (container-type: inline-size) {
  @container hero (max-width: 22rem) {
    .hero-actions {
      grid-template-columns: 1fr;
    }
  }
}

.hero-grid > .hero-intro {
  grid-area: intro;
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, var(--hero-copy-max));
}

.hero-grid > .hero-actions {
  grid-area: actions;
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, var(--hero-cta-max));
  max-width: var(--hero-cta-max);
}

.hero-grid > .hero-metrics {
  grid-area: metrics;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  width: 100%;
  max-width: 100%;
  margin: 0.22rem 0 0;
  padding: 0.55rem 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.32);
  list-style: none;
  align-self: stretch;
  justify-self: center;
}

.hero-metrics .hero-metric {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: 100%;
  min-height: 0;
  min-width: 0;
}

.hero-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.45rem, 1.25rem + 0.35vw, 1.7rem);
  height: clamp(1.45rem, 1.25rem + 0.35vw, 1.7rem);
  flex: 0 0 clamp(1.45rem, 1.25rem + 0.35vw, 1.7rem);
  color: #0078f6;
  filter: drop-shadow(0 0 8px rgba(0, 120, 246, 0.34));
}

.hero-trust-text {
  display: block;
  min-width: 0;
  font-size: clamp(0.74rem, 0.66rem + 0.24vw, 0.94rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #e2e8f0;
  line-height: 1.25;
  text-shadow: 0 1px 12px rgba(15, 23, 42, 0.42);
}

@media (min-width: 1440px) {
  .hero-metrics .hero-metric {
    gap: 0.68rem;
  }

  .hero-trust-text {
    font-size: clamp(0.88rem, 0.8rem + 0.2vw, 1rem);
  }
}

@media (min-width: 961px) {
  .hero {
    /* Geniş / yüksek ekranlarda yalnızca vh + düşük px tavanı ile kısalmayı önler */
    min-height: clamp(30rem, min(76vh, 17rem + 28vw), 54rem);
    padding: 1.175rem 0;
  }

  /* Laptop mockup sağda kalsın; sol metin alanı görselle çakışmasın */
  .hero-bg {
    background-size: cover;
    background-position: 62% 45%;
  }

  .hero .container {
    max-width: min(1240px, 100%);
    padding-left: max(0.7rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.7rem, env(safe-area-inset-right, 0px));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding-right: clamp(0.75rem, 2.5vw, 2.25rem);
    box-sizing: border-box;
  }

  .hero .hero-grid {
    --hero-stack-w: min(100%, var(--hero-copy-max), calc(50vw - 2.75rem));
  }
}

@supports (font-size: 1cqi) {
  @media (min-width: 961px) {
    .hero .hero-grid {
      --hero-stack-w: min(
        100%,
        var(--hero-copy-max),
        calc(50vw - 2.75rem),
        calc(50cqi - 1rem)
      );
    }
  }
}

.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.65rem, 0.42rem + 0.85vw, 1.15rem);
  min-width: 0;
}

.hero-intro .eyebrow {
  margin: 0;
  font-size: clamp(0.65rem, 0.58rem + 0.22vw, 0.78rem);
}

.hero-intro .hero-title {
  margin: 0;
  width: min(100%, var(--hero-copy-max));
  max-width: min(100%, var(--hero-copy-max));
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro .lead {
  margin: 0;
  width: min(100%, var(--hero-copy-max));
  max-width: min(100%, var(--hero-copy-max));
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: rgba(226, 232, 240, 0.94);
  text-shadow: 0 1px 12px rgba(2, 6, 23, 0.45);
  font-size: clamp(0.86rem, 0.78rem + 0.42vw, 1.08rem);
  line-height: clamp(1.48, 0.2vw + 1.46, 1.68);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0369a1;
}

.hero-title {
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: #071422;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
  font-size: clamp(1.32rem, 0.68rem + 3.1vw, 3.35rem);
}

.hero-title-accent {
  color: #0078f6;
}

.hero-intro .eyebrow {
  color: #0078f6;
}

@media (min-width: 721px) {
  .hero-grid {
    padding-top: clamp(1.35rem, 2.85vh, 3.15rem);
  }
}

@media (min-width: 1400px) {
  .site-header > .container {
    max-width: min(1360px, 100%);
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero .container {
    max-width: min(1360px, 100%);
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero {
    padding: 1.2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: start;
    padding-top: clamp(1.15rem, 2.2vh, 2.5rem);
  }

  .hero .hero-grid {
    --hero-stack-w: min(100%, 44rem, calc(48vw - 2.25rem));
  }

  .site-header .logo {
    margin-left: -1rem;
  }
}

@media (min-width: 1600px) and (min-height: 900px) {
  .site-header > .container {
    max-width: min(1440px, 100%);
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero .container {
    max-width: min(1440px, 100%);
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero {
    padding: 1.275rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: start;
  }

  .hero .hero-grid {
    --hero-stack-w: min(100%, 46rem, calc(46vw - 2rem));
  }

  .site-header .logo {
    margin-left: -1.35rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  }
}

.lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #64748b;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(
      min(
        100%,
        max(9.5rem, calc((100% - var(--hero-cta-gap-col)) / 2))
      ),
      1fr
    )
  );
  gap: var(--hero-cta-gap-row) var(--hero-cta-gap-col);
  margin: 0;
  width: min(100%, var(--hero-cta-max));
  max-width: var(--hero-cta-max);
  margin-left: auto;
  margin-right: auto;
  align-self: start;
  justify-self: center;
}

.hero-actions .btn {
  width: 100%;
  min-width: 0;
  font-size: var(--hero-btn-fs);
  padding: var(--hero-btn-pad-y) var(--hero-btn-pad-x);
}

.proof-strip {
  padding-top: 1.4rem;
  padding-bottom: 2.2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-metric {
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1rem 0.95rem;
}

.proof-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
  color: #0c1a2e;
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
}

.proof-metric span {
  display: block;
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.45;
  overflow-wrap: break-word;
}

.proof-badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  background: rgba(2, 132, 199, 0.08);
  color: #075985;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

@keyframes section-divider-shine {
  0%,
  100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

/* Logos strip / sektörler */
.logos-strip {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  background: radial-gradient(
    ellipse 95% 70% at 50% 0%,
    rgba(122, 220, 254, 0.14) 0%,
    transparent 58%
  );
}

.logos-inner {
  text-align: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.logos-head {
  margin-bottom: 1.75rem;
}

.logos-title {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.logos-lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.sectors-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
  padding: 1.25rem 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.sector-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(
    180deg,
    rgba(122, 220, 254, 0.2) 0%,
    rgba(2, 132, 199, 0.08) 100%
  );
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.18);
  flex-shrink: 0;
}

.sector-icon svg {
  flex-shrink: 0;
}

.sector-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c1a2e;
  overflow-wrap: break-word;
}

.sector-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  overflow-wrap: break-word;
}

.sector-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  width: 100%;
  padding-bottom: 0;
}

.sector-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.sector-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  overflow-wrap: break-word;
}

.sector-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.8);
}

.sector-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
}

.sectors-foot {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.sectors-foot-item {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

@media (max-width: 960px) {
  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sectors-foot {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.75rem;
  }

  .logos-lead {
    font-size: 0.875rem;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 920px;
}

/* Ana içerikte üst üste gelen her bölümün üstünde ince ayırıcı + hafif kayar ışık */
main > section + section {
  position: relative;
  border-top: none;
}

main > section + section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  z-index: 0;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0.12) 0%,
    rgba(148, 163, 184, 0.18) 38%,
    rgba(186, 230, 253, 0.85) 50%,
    rgba(148, 163, 184, 0.18) 62%,
    rgba(148, 163, 184, 0.12) 100%
  );
  background-size: 220% 100%;
  animation: section-divider-shine 14s ease-in-out infinite;
  box-shadow:
    0 0 10px rgba(56, 189, 248, 0.18),
    0 0 22px rgba(56, 189, 248, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  main > section + section::before {
    animation: none;
    background-position: 50% 0;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.1);
  }

  .cta-band::before {
    animation: none;
    background-position: 50% 0;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.1);
  }
}

.section-alt {
  background: rgba(15, 23, 42, 0.5);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  letter-spacing: -0.03em;
  color: #0c1a2e;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section-head h2,
.section-head p {
  overflow-wrap: break-word;
}

.pricing-section {
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(56, 189, 248, 0.07) 0%,
    transparent 55%
  );
}

.pricing-section--showcase {
  background: linear-gradient(165deg, #050a14 0%, #0a1628 48%, #060d18 100%);
}

.pricing-section--showcase .section-head {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-section--showcase .section-head h2 {
  color: #f8fafc;
}

.pricing-section--showcase .section-eyebrow {
  color: #60a5fa;
}

.pricing-section--showcase .section-head p {
  color: #94a3b8;
  line-height: 1.55;
}

.pricing-title-accent {
  color: #0b77d7;
  font-weight: 700;
}

.pricing-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 2rem;
  width: 100%;
}

.pricing-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: stretch;
  overflow: visible;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.25rem 1.25rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  text-align: center;
}

.pricing-card-head h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0c1a2e;
  min-width: 0;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.pricing-card-icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.pricing-card-icon svg {
  flex-shrink: 0;
}

.pricing-card-icon--starter {
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.22) 0%,
    rgba(14, 116, 144, 0.12) 100%
  );
  border-color: rgba(125, 211, 252, 0.45);
  color: #0284c7;
}

.pricing-card-icon--pro {
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.22) 0%,
    rgba(124, 58, 237, 0.12) 100%
  );
  border-color: rgba(196, 181, 253, 0.42);
  color: #6366f1;
}

.pricing-card-icon--enterprise {
  background: linear-gradient(
    180deg,
    rgba(52, 211, 153, 0.22) 0%,
    rgba(5, 150, 105, 0.12) 100%
  );
  border-color: rgba(110, 231, 183, 0.42);
  color: #059669;
}

.pricing-price {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  overflow-wrap: break-word;
}

.pricing-price--blue {
  color: #0284c7;
}

.pricing-price--green {
  color: #059669;
}

.pricing-card .pricing-features li {
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
}

.pricing-card--starter .pricing-features li::before,
.pricing-card--featured .pricing-features li::before {
  color: #0284c7;
}

.pricing-card--enterprise .pricing-features li::before {
  color: #059669;
}

.pricing-card--featured {
  padding-top: 2rem;
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.28),
    0 18px 42px rgba(14, 165, 233, 0.14);
  transform: translateY(-4px);
}

.pricing-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.pricing-card--featured:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.48);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.28),
    0 12px 36px rgba(15, 23, 42, 0.08),
    0 18px 42px rgba(14, 165, 233, 0.14);
}

.pricing-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -45%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.pricing-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(0.58rem, 0.5rem + 0.28vw, 0.68rem)
    clamp(0.85rem, 0.72rem + 0.4vw, 1rem);
  border-radius: 11px;
  font-size: clamp(0.8125rem, 0.74rem + 0.25vw, 0.875rem);
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.pricing-cta--outline {
  color: #0369a1;
  background: transparent;
  border: 1px solid rgba(2, 132, 199, 0.45);
}

.pricing-cta--outline:hover {
  border-color: rgba(2, 132, 199, 0.85);
  background: rgba(240, 249, 255, 0.85);
}

.pricing-cta--primary {
  color: #fff;
  background: linear-gradient(180deg, #1a8cff 0%, #0078f6 100%);
  border: 1px solid rgba(56, 189, 248, 0.55);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.28);
}

.pricing-cta--primary:hover {
  filter: brightness(1.06);
}

.pricing-cta--enterprise {
  color: #047857;
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.55);
}

.pricing-cta--enterprise:hover {
  border-color: rgba(16, 185, 129, 0.95);
  background: rgba(236, 253, 245, 0.9);
}

.pricing-trust {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.85rem 1rem;
  width: 100%;
  min-width: 0;
}

.pricing-trust-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-width: 0;
  text-align: center;
}

.pricing-trust-copy {
  width: 100%;
  max-width: 17rem;
}

.pricing-trust-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #38bdf8;
  background: rgba(240, 249, 255, 0.95);
  border: 1px solid rgba(186, 230, 253, 0.85);
}

.pricing-trust-copy strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0c1a2e;
  margin-bottom: 0.15rem;
}

.pricing-trust-copy p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pricing-note {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  text-align: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.8125rem;
  color: #64748b;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.pricing-note a {
  color: #0284c7;
  font-weight: 600;
}

.section-platform {
  background: radial-gradient(
    ellipse 100% 60% at 50% 0%,
    rgba(122, 220, 254, 0.08) 0%,
    transparent 60%
  );
}

.section-platform .platform-slider {
  width: 100%;
}

.trust-slider--platform .trust-slider-track {
  gap: 1rem;
}

.trust-slider--platform .trust-slider-slide {
  display: flex;
  flex: 0 0 clamp(17.5rem, 88vw, 27rem);
  min-width: 0;
  scroll-snap-align: start;
}

.trust-slider--platform .trust-slider-slide > .platform-intro-card,
.trust-slider--platform .trust-slider-slide > .platform-module-card {
  width: 100%;
  flex: 1 1 auto;
  align-self: stretch;
}

.platform-intro-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  box-shadow: var(--shadow);
}

.platform-intro-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0c1a2e;
}

.platform-intro-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.platform-module-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.platform-module-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #0c1a2e;
}

.platform-module-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.platform-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.platform-card-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #0b77d7;
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.2) 0%,
    rgba(37, 99, 235, 0.12) 100%
  );
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.platform-card-ill {
  position: absolute;
  right: 0.7rem;
  bottom: 0.35rem;
  color: rgba(59, 130, 246, 0.88);
  opacity: 0.9;
  filter: drop-shadow(0 10px 22px rgba(37, 99, 235, 0.3));
  pointer-events: none;
  isolation: isolate;
}

.platform-card-ill::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.34) 0%,
    rgba(37, 99, 235, 0.22) 38%,
    rgba(30, 64, 175, 0.08) 66%,
    rgba(15, 23, 42, 0) 100%
  );
  filter: blur(7px);
  z-index: 0;
}

.platform-card-ill svg {
  display: block;
}

.platform-card-ill img {
  display: block;
  width: 7.8rem;
  height: auto;
  opacity: 0.96;
  position: relative;
  z-index: 1;
}

.platform-card--visual {
  padding-right: 9rem;
  min-height: 11.1rem;
}

.platform-card--visual p {
  max-width: 25ch;
}

.platform-card-ill--users img {
  width: 9.4rem;
}

.platform-card-ill--cloud img {
  width: 7.9rem;
}

.platform-card-ill--hr img {
  width: 8rem;
}

.platform-card-ill--finance img {
  width: 9.1rem;
}

.platform-card-ill--stock img {
  width: 9.2rem;
}

.platform-card-ill--docs img {
  width: 9rem;
}

.platform-card-ill--ai img {
  width: 9rem;
}

.platform-card-ill--all img {
  width: 9rem;
}

/* Platform ile aynı: gövde (--bg) üzerinde şeffaf bölüm gibi düz zemin */
.why-band {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(2, 6, 23, 0.45);
}

.why-band > .container {
  position: relative;
  z-index: 1;
}

.why-head {
  max-width: 42rem;
}

/* Koyu zemin + biraz daha canlı tipografi */
.why-band .section-head h2 {
  color: #fff;
  text-shadow: 0 0 42px rgba(56, 189, 248, 0.12);
}

.why-band .section-head p {
  color: #c0d2e8;
}

.why-band .section-eyebrow {
  color: #7dd3fc;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.25);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  padding: 1.35rem 1.15rem;
  background: linear-gradient(
    165deg,
    rgba(22, 36, 71, 0.55) 0%,
    rgba(15, 23, 42, 0.94) 38%,
    rgba(23, 37, 84, 0.45) 100%
  );
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(56, 189, 248, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.48);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 80% at 0% 0%,
    rgba(56, 189, 248, 0.2) 0%,
    transparent 58%
  );
  opacity: 0.85;
  pointer-events: none;
}

.why-card:hover {
  border-color: rgba(125, 211, 252, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 22px 50px rgba(0, 0, 0, 0.52),
    0 0 36px rgba(56, 189, 248, 0.14);
  transform: translateY(-3px);
}

.why-card > .why-icon,
.why-card > h3,
.why-card > p {
  position: relative;
  z-index: 1;
}

.why-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  color: #bae6fd;
  background: linear-gradient(
    145deg,
    rgba(56, 189, 248, 0.22) 0%,
    rgba(37, 99, 235, 0.14) 100%
  );
  border: 1px solid rgba(125, 211, 252, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 22px rgba(56, 189, 248, 0.2);
}

.why-icon svg {
  flex-shrink: 0;
}

.why-icon--sky {
  color: #7dd3fc;
  background: linear-gradient(
    145deg,
    rgba(56, 189, 248, 0.32) 0%,
    rgba(14, 165, 233, 0.14) 100%
  );
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 26px rgba(56, 189, 248, 0.28);
}

.why-icon--emerald {
  color: #6ee7b7;
  background: linear-gradient(
    145deg,
    rgba(52, 211, 153, 0.28) 0%,
    rgba(16, 185, 129, 0.14) 100%
  );
  border-color: rgba(52, 211, 153, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 26px rgba(52, 211, 153, 0.22);
}

.why-icon--amber {
  color: #fde047;
  background: linear-gradient(
    145deg,
    rgba(251, 191, 36, 0.3) 0%,
    rgba(245, 158, 11, 0.16) 100%
  );
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 26px rgba(245, 158, 11, 0.22);
}

.why-icon--violet {
  color: #c4b5fd;
  background: linear-gradient(
    145deg,
    rgba(167, 139, 250, 0.32) 0%,
    rgba(124, 58, 237, 0.16) 100%
  );
  border-color: rgba(167, 139, 250, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 26px rgba(139, 92, 246, 0.24);
}

.why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.why-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #b8cad9;
  overflow-wrap: break-word;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.split-copy > p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  overflow-wrap: break-word;
  line-height: 1.6;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  overflow-wrap: break-word;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.panel-card {
  min-width: 0;
  padding: 1.35rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.panel-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  overflow-wrap: break-word;
  line-height: 1.25;
}

.panel-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  overflow-wrap: break-word;
  line-height: 1.55;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  min-width: 0;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.steps li > div {
  flex: 1 1 0%;
  min-width: 0;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: #0369a1;
  font-weight: 700;
  border-radius: 10px;
  font-size: 1rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  overflow-wrap: break-word;
}

.steps p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  overflow-wrap: break-word;
}

.cta-band {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 3.5rem 0;
  color: #f1f5f9;
  background-color: #050b16;
  /* Üstte okunabilirlik için hafif karartma; altta banner görseli */
  background-image:
    linear-gradient(
      105deg,
      rgba(5, 10, 18, 0.72) 0%,
      rgba(5, 10, 18, 0.38) 48%,
      rgba(5, 10, 18, 0.68) 100%
    ),
    radial-gradient(
      ellipse 85% 65% at 8% 20%,
      rgba(56, 189, 248, 0.09) 0%,
      transparent 58%
    ),
    var(--cta-banner);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(15, 23, 42, 0.45);
}

/* Üst kenar: bölümler arası kayan cyan çizgi (.cta-band::before radial ile ezildiği için burada yeniden) */
.cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  z-index: 1;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0.12) 0%,
    rgba(148, 163, 184, 0.18) 38%,
    rgba(186, 230, 253, 0.85) 50%,
    rgba(148, 163, 184, 0.18) 62%,
    rgba(148, 163, 184, 0.12) 100%
  );
  background-size: 220% 100%;
  animation: section-divider-shine 14s ease-in-out infinite;
  box-shadow:
    0 0 10px rgba(56, 189, 248, 0.18),
    0 0 22px rgba(56, 189, 248, 0.08);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  /* Banner görseli önde kalsın diye ızgara dokusu çok hafif */
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 78%
  );
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem 2rem;
}

.cta-inner > div:first-child {
  min-width: min(100%, 20rem);
  max-width: 100%;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: #f8fafc;
  /* Arkada yumuşak hâle: banner üzerinde okunurluk */
  text-shadow:
    0 0 1px rgba(2, 6, 23, 0.95),
    0 1px 2px rgba(2, 6, 23, 0.88),
    0 2px 10px rgba(2, 6, 23, 0.72),
    0 4px 28px rgba(2, 6, 23, 0.55),
    0 0 48px rgba(2, 6, 23, 0.42);
  overflow-wrap: break-word;
}

.cta-band p {
  margin: 0;
  max-width: 30rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  letter-spacing: 0.012em;
  color: rgba(226, 232, 255, 0.82);
  text-shadow:
    0 0 1px rgba(2, 6, 23, 0.92),
    0 1px 3px rgba(2, 6, 23, 0.82),
    0 2px 14px rgba(2, 6, 23, 0.62),
    0 0 32px rgba(2, 6, 23, 0.48);
  overflow-wrap: break-word;
}

.cta-band .btn-light {
  flex-shrink: 0;
  padding: clamp(0.65rem, 0.55rem + 0.35vw, 0.78rem)
    clamp(1.05rem, 0.88rem + 0.55vw, 1.5rem);
  font-size: var(--btn-fs);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 11px;
  color: #f1f5f9;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(15, 23, 42, 0.22) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 4px 18px rgba(2, 6, 23, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.cta-band .btn-light:hover {
  color: #ffffff;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(56, 189, 248, 0.14) 48%,
    rgba(15, 23, 42, 0.28) 100%
  );
  border-color: rgba(125, 211, 252, 0.48);
  box-shadow:
    0 6px 22px rgba(2, 132, 199, 0.22),
    0 0 32px rgba(56, 189, 248, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(15, 23, 42, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.cta-band .btn-light:active {
  transform: translateY(0);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(15, 23, 42, 0.38) 100%
  );
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow:
    0 2px 10px rgba(2, 6, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-band .btn-light:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.95);
  outline-offset: 3px;
}

/* Contact */
.contact-section {
  position: relative;
  background:
    radial-gradient(
      ellipse 90% 55% at 15% 20%,
      rgba(122, 220, 254, 0.1) 0%,
      transparent 55%
    ),
    var(--bg);
}

.contact-section--showcase {
  background: linear-gradient(165deg, #050a14 0%, #0a1628 48%, #060d18 100%);
  color: #e7eefc;
  /* content-visibility: auto .section ile gelir; iletişimde metin+form üst üste binmesine yol açabiliyor */
  content-visibility: visible;
  contain-intrinsic-size: unset;
}

.contact-section--showcase .contact-pill-badge {
  color: #bae6fd;
  background: linear-gradient(
    180deg,
    rgba(14, 116, 144, 0.45) 0%,
    rgba(30, 58, 138, 0.35) 100%
  );
  border-color: rgba(56, 189, 248, 0.35);
}

.contact-section--showcase .contact-pill-badge-icon {
  color: #38bdf8;
}

.contact-section--showcase .contact-hero-title {
  color: #ffffff;
}

.contact-section--showcase .contact-title-accent {
  color: #0078f6;
}

.contact-section--showcase .contact-hero-lead {
  color: #94a3b8;
}

.contact-section--showcase .contact-promise-item {
  color: #cbd5e1;
}

.contact-section--showcase .contact-mini-eyebrow {
  color: #64748b;
}

.contact-section--showcase .contact-mini-card {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.contact-section--showcase .contact-mini-card--link:hover {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.45);
}

.contact-section--showcase .contact-mini-label {
  color: #94a3b8;
}

.contact-section--showcase .contact-mini-value {
  color: #7dd3fc;
}

.contact-section--showcase .contact-mini-hint {
  color: #64748b;
}

.contact-section--showcase .contact-mini-icon {
  color: #38bdf8;
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.18) 0%,
    rgba(37, 99, 235, 0.12) 100%
  );
  border-color: rgba(96, 165, 250, 0.28);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.contact-section--showcase .contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, min(40rem, 100%));
  column-gap: 2.75rem;
  row-gap: 2.5rem;
  align-items: start;
}

.contact-section--showcase .contact-layout > * {
  min-width: 0;
}

.contact-section--showcase .contact-showcase {
  position: relative;
  z-index: 0;
}

.contact-section--showcase .contact-form.contact-form--panel {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

@media (max-width: 1040px) {
  .contact-section--showcase .contact-layout {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}

.contact-channels-row {
  grid-column: 1 / -1;
  width: 100%;
}

.contact-section--showcase .contact-channels-row {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.contact-section--showcase .contact-channels-row .contact-mini-eyebrow {
  margin: 0 0 1rem;
  text-align: center;
}

.contact-section--showcase .contact-channels-row .contact-mini-grid {
  width: 100%;
  margin: 0 auto;
}

.contact-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 34rem;
}

.contact-section--showcase .contact-showcase {
  max-width: 38rem;
}

.contact-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0369a1;
  background: linear-gradient(
    180deg,
    rgba(224, 242, 254, 0.95) 0%,
    rgba(186, 230, 253, 0.65) 100%
  );
  border: 1px solid rgba(2, 132, 199, 0.22);
}

.contact-pill-badge-icon {
  display: flex;
  color: #0284c7;
}

.contact-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #0c1a2e;
}

.contact-title-accent {
  color: #0284c7;
}

.contact-hero-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-promise-list {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-promise-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}

.contact-promise-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0b77d7;
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.22) 0%,
    rgba(37, 99, 235, 0.1) 100%
  );
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.contact-mini-eyebrow {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.contact-mini-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.75rem 0.65rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow);
}

.contact-mini-card--link {
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-mini-card--link:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.contact-mini-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #0b77d7;
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.2) 0%,
    rgba(37, 99, 235, 0.12) 100%
  );
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.contact-mini-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-mini-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-mini-hint {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.35;
}

/* Bot honeypot: görünmez alan */
.contact-form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  padding: 1.75rem 1.75rem 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-lg);
}

.contact-form::before {
  content: "";
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    rgba(122, 220, 254, 0.9) 100%
  );
  opacity: 0.9;
}

.contact-form--panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  background: linear-gradient(180deg, #0a1120 0%, #050a14 100%);
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(37, 99, 235, 0.06);
  padding: 1.15rem 1.25rem 1.05rem;
  border-radius: 14px;
  box-sizing: border-box;
  width: 100%;
  max-width: min(44rem, 100%);
  margin-inline: auto;
  justify-self: center;
}

.contact-section--showcase .contact-form--panel {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  justify-self: stretch;
}

/* Üst başlık + mesaj/KVKK/buton tam genişlik; dört kısa alan 2x2 */
.contact-form--panel > .contact-form-head {
  grid-column: 1 / -1;
}

.contact-form--panel > label.field:nth-child(6) {
  grid-column: 1 / -1;
}

.contact-form--panel > .consent-field,
.contact-form--panel > .contact-form-submit,
.contact-form--panel > .form-note {
  grid-column: 1 / -1;
}

.contact-form--panel::before {
  display: none;
}

.contact-form--panel .contact-form-title {
  color: #f8fafc;
}

.contact-form--panel .contact-form-hint {
  color: #94a3b8;
}

.contact-form--panel .field span {
  color: #94a3b8;
}

.contact-form--panel .field input,
.contact-form--panel .field textarea {
  background: rgba(2, 6, 23, 0.55);
  border-color: rgba(148, 163, 184, 0.22);
  color: #e7efff;
}

.contact-form--panel .contact-form-head--brand {
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

.contact-form--panel .consent-field {
  color: #cbd5e1;
}

.contact-form--panel .consent-field a {
  color: #7dd3fc;
}

.contact-form--panel .contact-form-submit {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.contact-form--panel .contact-form-submit:hover {
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
}

.contact-form-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.contact-form-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c1a2e;
}

.contact-form-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-form-head--brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid #f1f5f9;
}

.contact-form--panel .contact-form-head--brand {
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
}

.contact-form-brand-icon {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.25);
}

.contact-form--panel .contact-form-brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  box-shadow: 0 6px 14px rgba(2, 132, 199, 0.2);
}

.contact-form--panel .contact-form-brand-icon svg {
  width: 18px;
  height: 18px;
}

.contact-form-brand-copy {
  flex: 1;
  min-width: 0;
}

.contact-form-brand-copy .contact-form-title {
  margin: 0 0 0.35rem;
}

.contact-form--panel .contact-form-title {
  font-size: 1rem;
}

.contact-form--panel .contact-form-hint {
  font-size: 0.75rem;
  line-height: 1.45;
}

.contact-form--panel .field {
  margin-bottom: 0;
}

.contact-form--panel .field span {
  margin-bottom: 0.28rem;
  font-size: 0.8125rem;
}

.contact-form--panel .field input,
.contact-form--panel .field textarea {
  padding: 0.5rem 0.65rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

.contact-form--panel .field textarea {
  min-height: 4.75rem;
  resize: vertical;
}

.contact-form--panel .consent-field {
  margin: 0.1rem 0 0.6rem;
  font-size: 0.75rem;
  line-height: 1.45;
}

.contact-form--panel .contact-form-submit {
  padding-top: clamp(0.52rem, 0.45rem + 0.25vw, 0.58rem);
  padding-bottom: clamp(0.52rem, 0.45rem + 0.25vw, 0.58rem);
  font-size: var(--btn-fs);
}

.contact-form-submit {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.field-required > span::after {
  content: " *";
  color: #dc2626;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fafbfc;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.25rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-field input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.consent-field a {
  font-weight: 600;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-note a {
  font-weight: 600;
}

.form-note--success {
  color: #047857 !important;
}

.form-note--error {
  color: #b91c1c !important;
}

/* Yasal */
.legal-section {
  position: relative;
  overflow: hidden;
}

.legal-section--showcase {
  background: linear-gradient(165deg, #050a14 0%, #0a1628 48%, #060d18 100%);
  color: #e7eefc;
}

.legal-container {
  max-width: 920px;
}

.section.legal-section--showcase {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.legal-hero {
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  text-align: center;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-section--showcase .legal-hero {
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

.legal-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
}

.legal-section--showcase .legal-eyebrow {
  color: rgba(96, 165, 250, 0.82);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
}

.legal-hero h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0c1a2e;
  line-height: 1.15;
}

.legal-section--showcase .legal-hero h2 {
  color: #ffffff;
}

.legal-lead {
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 36rem;
}

.legal-section--showcase .legal-lead {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 34rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.legal-card {
  display: block;
  min-width: 0;
  padding: 1.35rem 1.4rem 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.legal-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.legal-section--showcase .legal-card {
  padding: 0.95rem 1rem 1.05rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.38);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.legal-section--showcase .legal-card-body {
  gap: 0.65rem;
}

.legal-card[open] .legal-card-body {
  margin-top: 0.45rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.legal-section--showcase .legal-card[open] .legal-card-body {
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.legal-section--showcase .legal-card:hover {
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: none;
  background: rgba(15, 23, 42, 0.48);
}

.legal-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.legal-section--showcase .legal-card-head {
  align-items: center;
}

.legal-accordion-item > .legal-card-head {
  list-style: none;
  cursor: pointer;
  margin: 0;
  position: relative;
  padding-right: 1.5rem;
}

.legal-accordion-item > .legal-card-head::-webkit-details-marker {
  display: none;
}

.legal-accordion-item > .legal-card-head::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  line-height: 1;
  color: #64748b;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.legal-accordion-item[open] > .legal-card-head::after {
  content: "−";
  color: #0c1a2e;
  transform: translateY(-50%);
}

.legal-section--showcase .legal-accordion-item > .legal-card-head::after {
  color: rgba(148, 163, 184, 0.75);
  font-size: 1.05rem;
  font-weight: 500;
}

.legal-section--showcase .legal-accordion-item[open] > .legal-card-head::after {
  color: #cbd5e1;
  transform: translateY(-50%);
}

.legal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(
    180deg,
    rgba(122, 220, 254, 0.22) 0%,
    rgba(2, 132, 199, 0.1) 100%
  );
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.legal-icon svg {
  flex-shrink: 0;
}

.legal-section--showcase .legal-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.legal-card h3 {
  margin: 0;
  padding-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c1a2e;
  line-height: 1.3;
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: break-word;
}

.legal-section--showcase .legal-card h3 {
  color: #f1f5f9;
  font-size: 0.98rem;
  font-weight: 600;
  padding-top: 0;
  line-height: 1.35;
}

.legal-card-body > p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.legal-section--showcase .legal-card-body > p {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
}

.legal-section--showcase .contact-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-section--showcase .contact-bullets li {
  position: relative;
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.legal-section--showcase .contact-bullets li:first-child {
  margin-top: 0;
}

.legal-section--showcase .contact-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #38bdf8;
  opacity: 0.9;
}

.legal-card-note {
  margin: 0 !important;
  padding: 0.75rem 0.85rem;
  font-size: 0.8125rem !important;
  line-height: 1.55 !important;
  color: #475569 !important;
  background: rgba(241, 245, 249, 0.85);
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.legal-section--showcase .legal-card-note {
  color: #94a3b8 !important;
  background: rgba(2, 6, 23, 0.32);
  border-color: rgba(148, 163, 184, 0.14);
  padding: 0.55rem 0.7rem;
  border-radius: 7px;
  font-size: 0.78rem !important;
}

.legal-card-note strong {
  color: #334155;
  font-weight: 600;
}

.legal-section--showcase .legal-card-note strong {
  color: #e2e8f0;
}

.legal-card a {
  font-weight: 600;
}

.legal-section--showcase .legal-card a {
  color: #7dd3fc;
}

@media (max-width: 720px) {
  .legal-hero {
    max-width: none;
    text-align: center;
  }

  .legal-lead {
    max-width: none;
  }

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

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.875rem;
}

.scroll-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 250;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(7, 13, 27, 0.98) 100%
  );
  color: #7dd3fc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(2, 6, 23, 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.45rem);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(14, 116, 144, 0.25);
  color: #bae6fd;
}

.scroll-top:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 0.9rem;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 960px) {
  body.cookie-banner-open #iletisim.contact-section {
    padding-bottom: max(10rem, calc(env(safe-area-inset-bottom, 0px) + 8rem));
  }

  body.cookie-banner-open .scroll-top.is-visible {
    bottom: max(6.25rem, calc(env(safe-area-inset-bottom, 0px) + 5.25rem));
  }
}

@media (max-width: 768px) {
  .contact-form--panel {
    grid-template-columns: 1fr;
  }
}

.cookie-banner-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
  padding: 1rem 1rem 0.9rem;
}

.cookie-banner-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #0c1a2e;
}

.cookie-banner-text {
  margin: 0 0 0.6rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cookie-banner-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-banner-consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.cookie-banner-msg {
  margin: 0.4rem 0 0;
  min-height: 1.1rem;
  font-size: 0.75rem;
  color: #b91c1c;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: start;
}

.footer-brand .logo {
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 960px) {
  :root {
    --hero-cta-gap-row: 0.72rem;
    --hero-cta-gap-col: 0.6rem;
    --hero-btn-fs: clamp(0.94rem, 0.88rem + 0.3vw, 1rem);
    --hero-btn-pad-y: clamp(0.8rem, 0.72rem + 0.24vw, 0.9rem);
    --hero-btn-pad-x: clamp(1rem, 0.9rem + 0.38vw, 1.2rem);
    --btn-fs: clamp(0.8rem, 0.74rem + 0.25vw, 0.9rem);
    --btn-pad-y: clamp(0.58rem, 0.5rem + 0.28vw, 0.72rem);
    --btn-pad-x: clamp(0.85rem, 0.72rem + 0.38vw, 1.2rem);
    --btn-sm-fs: clamp(0.74rem, 0.69rem + 0.2vw, 0.85rem);
    --btn-sm-pad-y: clamp(0.42rem, 0.36rem + 0.2vw, 0.5rem);
    --btn-sm-pad-x: clamp(0.75rem, 0.68rem + 0.28vw, 0.95rem);
  }

  .hero {
    padding: 1.5rem 0 1.65rem;
  }

  /* Küçük ekran: aynı hero görseli + hafif okunabilirlik katmanı */
  .hero-bg {
    background-color: #050b16;
    background-image:
      linear-gradient(
        180deg,
        rgba(3, 7, 17, 0.5) 0%,
        rgba(7, 13, 27, 0.35) 45%,
        rgba(5, 10, 18, 0.55) 100%
      ),
      radial-gradient(
        ellipse 95% 62% at 50% -8%,
        rgba(56, 189, 248, 0.08) 0%,
        transparent 52%
      ),
      var(--hero-cover);
    background-size: auto, auto, cover;
    background-position: center, center top, 62% center;
    background-repeat: no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "actions"
      "metrics";
    column-gap: 0;
    row-gap: clamp(1.05rem, 0.8rem + 1.15vw, 1.55rem);
    align-items: start;
  }

  .hero-grid > .hero-intro,
  .hero-grid > .hero-actions,
  .hero-grid > .hero-metrics {
    justify-self: center;
    width: min(100%, 40rem);
  }

  .hero-intro {
    gap: clamp(0.65rem, 0.48rem + 1vw, 1.05rem);
    align-self: center;
    align-items: center;
    text-align: center;
  }

  .hero-intro .eyebrow {
    align-self: center;
    text-align: center;
    width: 100%;
  }

  .hero-intro .hero-title {
    text-align: center;
    letter-spacing: -0.024em;
    line-height: 1.1;
    width: min(100%, var(--hero-copy-max));
    max-width: min(100%, var(--hero-copy-max));
    margin-left: auto;
    margin-right: auto;
  }

  .hero-intro .lead {
    text-align: center;
    padding-top: clamp(0.28rem, 0.18rem + 0.5vw, 0.62rem);
    width: min(100%, var(--hero-copy-max));
    max-width: min(100%, var(--hero-copy-max));
    line-height: 1.62;
    color: rgba(226, 232, 240, 0.92);
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: min(calc(100% - 1.5rem), 22.5rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    justify-content: center;
    min-height: 3.5rem;
    border-radius: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    width: 100%;
  }

  .hero-actions .btn-primary {
    box-shadow:
      0 10px 22px rgba(37, 99, 235, 0.28),
      0 2px 6px rgba(15, 23, 42, 0.22);
  }

  .hero-actions .btn-ghost {
    background: rgba(9, 18, 34, 0.66);
    border-color: rgba(148, 163, 184, 0.38);
    color: rgba(241, 245, 249, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(148, 163, 184, 0.2),
      0 3px 14px rgba(2, 6, 23, 0.22);
  }

  .hero-grid > .hero-metrics {
    border-top-color: rgba(148, 163, 184, 0.28);
    padding-top: 0.3rem;
    margin-top: 0.04rem;
    gap: 0.5rem 0.45rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .why-head {
    max-width: none;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-slider--platform .trust-slider-slide {
    flex: 0 0 clamp(16.25rem, 86vw, 25rem);
  }

  .trust-slider--platform .trust-slider-track {
    gap: 0.85rem;
  }

  .platform-intro-card,
  .platform-module-card {
    padding: clamp(0.88rem, 0.75rem + 0.35vw, 1.15rem)
      clamp(0.75rem, 0.62rem + 0.4vw, 1.05rem);
  }

  .platform-intro-card h3,
  .platform-module-card h3 {
    font-size: clamp(0.88rem, 0.8rem + 0.32vw, 1rem);
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .platform-intro-card p,
  .platform-module-card p {
    font-size: clamp(0.78rem, 0.72rem + 0.22vw, 0.875rem);
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .platform-card-head {
    gap: 0.45rem;
    margin-bottom: 0.35rem;
  }

  .platform-card-head h3 {
    min-width: 0;
  }

  .platform-card-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
  }

  .platform-card--visual {
    padding-right: 0.75rem;
    padding-bottom: clamp(4.6rem, 4.1rem + 1.8vw, 5.85rem);
    min-height: 0;
  }

  .platform-card--visual p {
    max-width: none;
  }

  .platform-card-ill {
    right: 0.45rem;
    bottom: 0.35rem;
  }

  .platform-card--visual .platform-card-ill img {
    width: clamp(4.65rem, 4.1rem + 2.2vw, 6.25rem);
    height: auto;
  }

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

  .split-copy h2 {
    font-size: clamp(1.32rem, 3.2vw + 0.55rem, 1.78rem);
  }

  .split-copy > p {
    font-size: clamp(0.86rem, 0.8rem + 0.28vw, 0.9375rem);
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.85rem;
  }

  .steps li:nth-child(3) {
    grid-column: 1 / -1;
    max-width: min(36rem, 100%);
    width: 100%;
    justify-self: center;
  }

  .steps li {
    padding: 1rem 0.85rem;
    gap: 0.65rem;
  }

  .steps h3 {
    font-size: 1rem;
  }

  .steps p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .section-head {
    margin-bottom: 2.5rem;
    max-width: min(40rem, 100%);
    padding-inline: 0.2rem;
  }

  .section-head h2 {
    font-size: clamp(1.38rem, 3.5vw + 0.45rem, 2rem);
  }

  .section-eyebrow {
    font-size: clamp(0.68rem, 0.62rem + 0.35vw, 0.75rem);
  }

  .sectors-grid {
    gap: clamp(0.68rem, 0.52rem + 0.5vw, 1rem);
  }

  .sector-card {
    padding: 1.05rem 0.95rem;
    gap: 0.55rem;
  }

  .sector-icon {
    width: clamp(2.35rem, 2.1rem + 1.2vw, 2.75rem);
    height: clamp(2.35rem, 2.1rem + 1.2vw, 2.75rem);
  }

  .sector-name {
    font-size: clamp(0.94rem, 0.86rem + 0.35vw, 1.05rem);
  }

  .sector-desc {
    font-size: clamp(0.76rem, 0.72rem + 0.22vw, 0.8125rem);
  }

  .proof-metric {
    padding: 0.92rem 0.82rem 0.88rem;
  }

  .proof-metric strong {
    font-size: clamp(1.02rem, 0.94rem + 0.35vw, 1.12rem);
  }

  .proof-metric span {
    font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.79rem);
  }

  .panel-card {
    padding: 1.15rem 1.1rem;
  }

  .panel-card h3 {
    font-size: clamp(0.96rem, 0.88rem + 0.32vw, 1.05rem);
  }

  .panel-card p {
    font-size: clamp(0.84rem, 0.78rem + 0.28vw, 0.92rem);
  }

  .pricing-card {
    padding: 1.15rem 1.05rem 1.05rem;
  }

  .pricing-card-head h3 {
    font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.05rem);
  }

  .pricing-price {
    font-size: clamp(1.12rem, 1.02rem + 0.45vw, 1.32rem);
  }

  .logos-head {
    margin-bottom: 1.4rem;
  }

  .logos-lead {
    font-size: clamp(0.86rem, 0.8rem + 0.28vw, 0.9375rem);
    padding-inline: 0.25rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-section--showcase .contact-layout {
    row-gap: 2.25rem;
  }

  .contact-section--showcase .contact-form--panel {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .contact-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.4rem;
  }

  .contact-mini-card {
    padding: 0.55rem 0.42rem;
    min-width: 0;
  }

  .contact-mini-label {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }

  .contact-mini-value {
    font-size: clamp(0.62rem, 2.2vw + 0.38rem, 0.78rem);
  }

  .contact-mini-hint {
    font-size: clamp(0.54rem, 1.8vw + 0.32rem, 0.64rem);
    line-height: 1.3;
  }

  .contact-mini-icon {
    width: 1.65rem;
    height: 1.65rem;
  }

  .contact-mini-icon svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    z-index: 202;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 0.6rem);
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: auto;
    width: min(92vw, 360px);
    max-height: calc(100vh - var(--header-h) - 1.4rem);
    z-index: 150;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
    background: linear-gradient(
      165deg,
      rgba(12, 18, 38, 0.97) 0%,
      rgba(7, 11, 26, 0.96) 100%
    );
    backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid rgba(96, 165, 250, 0.32);
    border-radius: 14px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 24px 56px rgba(2, 6, 23, 0.62),
      0 0 0 1px rgba(2, 6, 23, 0.4);
    overflow-y: auto;
    transform: translateX(calc(100% + 1rem));
    visibility: hidden;
    transition:
      transform 0.25s ease,
      visibility 0.25s;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(1.5px);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
  }

  .nav-list li {
    width: 100%;
  }

  .site-nav .nav-list a {
    display: block;
    padding: 0.78rem 0.9rem;
    font-size: 0.98rem;
    font-weight: 500;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 10px;
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(15, 23, 42, 0.52) 100%
    );
    color: #e7efff;
    transition:
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .site-nav .nav-list a::after {
    display: none;
  }

  .site-nav .nav-list a:hover {
    color: #bae6fd;
    border-color: rgba(125, 211, 252, 0.45);
    background: linear-gradient(
      180deg,
      rgba(56, 189, 248, 0.14) 0%,
      rgba(15, 23, 42, 0.55) 100%
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 6px 22px rgba(14, 116, 144, 0.2);
    text-decoration: none;
  }

  .site-nav .nav-list a:focus-visible {
    outline: 2px solid rgba(125, 211, 252, 0.65);
    outline-offset: 2px;
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    grid-template-columns: 1fr;
    width: min(calc(100% - 1.25rem), 22.5rem);
  }

  .hero-actions .btn {
    font-size: 0.88rem;
    line-height: 1;
    height: 2.1rem;
    min-height: 2.1rem;
    padding: 0 0.9rem;
    border-radius: 9px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "actions"
      "metrics";
    row-gap: clamp(0.9rem, 0.68rem + 1vw, 1.35rem);
    column-gap: 0;
  }

  .hero-grid > .hero-intro,
  .hero-grid > .hero-actions,
  .hero-grid > .hero-metrics {
    justify-self: center;
    width: min(100%, 32rem);
  }

  .hero-intro,
  .hero-actions {
    text-align: center;
    align-items: center;
  }

  .hero-intro .hero-title,
  .hero-intro .lead {
    text-align: center;
  }

  .hero-grid > .hero-metrics {
    border-top-color: rgba(148, 163, 184, 0.28);
    padding-top: 0.42rem;
    margin-top: 0.02rem;
    gap: 0.45rem 0.5rem;
  }

  .hero-trust-text {
    font-size: 0.75rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-head {
    margin-bottom: 2.25rem;
    padding-inline: 0.15rem;
  }

  .section-head h2 {
    font-size: clamp(1.3rem, 4.2vw + 0.45rem, 1.88rem);
  }

  .contact-hero-title {
    font-size: clamp(1.32rem, 4.8vw + 0.42rem, 1.88rem);
    overflow-wrap: break-word;
  }

  .contact-hero-lead {
    font-size: clamp(0.84rem, 0.78rem + 0.3vw, 0.94rem);
  }

  .contact-form-title,
  .contact-form--panel .contact-form-title {
    font-size: clamp(1rem, 0.92rem + 0.35vw, 1.12rem);
    overflow-wrap: break-word;
  }

  .contact-form-hint {
    font-size: clamp(0.76rem, 0.72rem + 0.22vw, 0.8125rem);
  }

  .contact-form-brand-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .why-card {
    padding: 1rem 0.85rem;
  }

  .trust-slider--platform .trust-slider-slide {
    flex: 0 0 min(22.5rem, calc(100vw - 2.25rem));
  }

  .trust-slider--platform .trust-slider-track {
    gap: 0.65rem;
  }

  .platform-intro-card,
  .platform-module-card {
    padding: 0.75rem 0.65rem;
  }

  .platform-intro-card h3,
  .platform-module-card h3 {
    font-size: clamp(0.82rem, 0.76rem + 0.4vw, 0.94rem);
  }

  .platform-intro-card p,
  .platform-module-card p {
    font-size: clamp(0.72rem, 0.68rem + 0.35vw, 0.82rem);
    line-height: 1.4;
  }

  .platform-card-head {
    gap: 0.4rem;
    margin-bottom: 0.28rem;
  }

  .platform-card-head h3 {
    min-width: 0;
  }

  .platform-card-icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .platform-card--visual {
    padding-right: 0.65rem;
    padding-bottom: 5.35rem;
    min-height: 0;
  }

  .platform-card--visual p {
    max-width: none;
  }

  .platform-card-ill {
    right: 0.4rem;
    bottom: 0.3rem;
  }

  .platform-card--visual .platform-card-ill img {
    width: clamp(4.1rem, 3.75rem + 1.8vw, 5.5rem);
    height: auto;
  }

  .proof-strip {
    padding-top: 1rem;
    padding-bottom: 1.7rem;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.5rem;
  }

  .proof-metric {
    padding: 0.72rem 0.62rem 0.68rem;
  }

  .proof-metric strong {
    font-size: clamp(0.9rem, 0.84rem + 0.35vw, 1.06rem);
  }

  .proof-metric span {
    font-size: clamp(0.68rem, 0.64rem + 0.22vw, 0.76rem);
    line-height: 1.4;
  }

  .proof-badge {
    font-size: clamp(0.64rem, 0.6rem + 0.2vw, 0.72rem);
    padding: 0.3rem 0.52rem;
  }

  .sectors-grid {
    gap: 0.62rem 0.52rem;
  }

  .sector-card {
    padding: 0.88rem 0.72rem;
    gap: 0.48rem;
  }

  .sector-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 9px;
  }

  .sector-icon svg {
    width: 20px;
    height: 20px;
  }

  .sector-name {
    font-size: clamp(0.86rem, 0.8rem + 0.4vw, 0.98rem);
  }

  .sector-desc,
  .sector-list li {
    font-size: clamp(0.7rem, 0.66rem + 0.28vw, 0.78rem);
  }

  .panel-card {
    padding: 1rem 0.88rem;
  }

  .panel-card h3 {
    font-size: clamp(0.88rem, 0.82rem + 0.35vw, 1rem);
  }

  .panel-card p {
    font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  }

  .pricing-card {
    padding: 1rem 0.88rem 0.92rem;
  }

  .pricing-card-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 10px;
  }

  .pricing-card-head h3 {
    font-size: clamp(0.9rem, 0.84rem + 0.35vw, 1.02rem);
  }

  .pricing-price {
    font-size: clamp(1.02rem, 0.94rem + 0.5vw, 1.28rem);
  }

  .pricing-features li {
    font-size: clamp(0.74rem, 0.7rem + 0.22vw, 0.8125rem);
    line-height: 1.45;
  }

  .legal-card {
    padding: 1rem 0.88rem 1.05rem;
  }

  .legal-section--showcase .legal-card {
    padding: 0.88rem 0.82rem 0.95rem;
  }

  .legal-section--showcase .legal-icon {
    width: 32px;
    height: 32px;
  }

  .legal-card h3,
  .legal-section--showcase .legal-card h3 {
    font-size: clamp(0.86rem, 0.8rem + 0.35vw, 0.96rem);
  }

  .legal-card-body > p,
  .legal-section--showcase .legal-card-body > p {
    font-size: clamp(0.8rem, 0.76rem + 0.22vw, 0.875rem);
    line-height: 1.55;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-band {
    padding: 2.65rem 0;
  }

  .cta-band h2 {
    font-size: clamp(1.28rem, 4vw + 0.45rem, 1.82rem);
    /* Mobil: biraz daha sıkı hâle, yine okunaklı */
    text-shadow:
      0 0 1px rgba(2, 6, 23, 0.95),
      0 1px 2px rgba(2, 6, 23, 0.9),
      0 2px 8px rgba(2, 6, 23, 0.75),
      0 0 36px rgba(2, 6, 23, 0.5);
  }

  .cta-band p {
    margin-left: auto;
    margin-right: auto;
    max-width: min(30rem, 100%);
    font-size: clamp(0.84rem, 0.78rem + 0.28vw, 0.9375rem);
    text-shadow:
      0 0 1px rgba(2, 6, 23, 0.9),
      0 1px 3px rgba(2, 6, 23, 0.78),
      0 2px 12px rgba(2, 6, 23, 0.58),
      0 0 28px rgba(2, 6, 23, 0.45);
  }

  .cta-band .btn-light {
    align-self: center;
    width: min(100%, 22rem);
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }

  .pricing-board {
    grid-template-columns: 1fr;
  }

  .pricing-trust {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem 0.4rem;
    width: 100%;
  }

  .pricing-section--showcase .pricing-trust-item {
    align-items: flex-start;
    padding: 0.55rem 0.45rem;
    gap: 0.45rem;
  }

  .pricing-trust-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .pricing-trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .pricing-trust-copy strong {
    font-size: clamp(0.72rem, 0.66rem + 0.35vw, 0.82rem);
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .pricing-trust-copy p {
    font-size: clamp(0.66rem, 0.62rem + 0.28vw, 0.75rem);
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .pricing-card--featured {
    transform: none;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100% - 1.5rem), 28rem);
    max-width: min(calc(100% - 1.5rem), 28rem);
    justify-content: center;
    justify-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    padding: 0.65rem 1rem;
    font-size: 0.96rem;
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 400px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .hero-grid > .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.3rem;
    padding-top: 0.48rem;
    width: 100%;
    max-width: min(100%, 32rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-metrics .hero-metric {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.28rem 0.08rem;
    border-bottom: none;
  }

  .hero-metrics .hero-metric:last-child {
    padding-bottom: 0;
  }

  .hero-trust-text {
    text-align: left;
    max-width: 100%;
    font-size: clamp(0.64rem, 1.25vw + 0.52rem, 0.78rem);
    line-height: 1.3;
  }
}

@media (max-width: 540px) {
  :root {
    --header-h: 64px;
    --btn-fs: clamp(0.78rem, 0.74rem + 0.18vw, 0.875rem);
    --btn-pad-x: clamp(0.8rem, 0.72rem + 0.35vw, 1.1rem);
    --hero-btn-fs: clamp(0.78rem, 0.74rem + 0.2vw, 0.88rem);
    --hero-btn-pad-x: clamp(0.75rem, 0.68rem + 0.4vw, 1rem);
  }

  .logo {
    font-size: 1.125rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .hero {
    padding: 1.35rem 0 1.55rem;
  }

  .hero-grid {
    row-gap: clamp(0.95rem, 0.75rem + 1.05vw, 1.4rem);
  }

  .hero-grid > .hero-metrics {
    padding-top: 0.48rem;
  }

  .hero-trust-text {
    font-size: clamp(0.62rem, 0.58rem + 0.22vw, 0.74rem);
    line-height: 1.3;
  }

  .contact-form {
    padding: 1.35rem;
  }

  .contact-form.contact-form--panel {
    padding: 1rem 1.05rem 0.95rem;
  }
}

@media (max-width: 380px) {
  :root {
    --hero-cta-gap-row: 0.5rem;
    --hero-cta-gap-col: 0;
    --hero-btn-fs: clamp(0.76rem, 0.74rem + 0.12vw, 0.85rem);
    --hero-btn-pad-y: clamp(0.62rem, 0.58rem + 0.15vw, 0.7rem);
    --hero-btn-pad-x: clamp(0.72rem, 0.65rem + 0.35vw, 1.05rem);
    --btn-fs: clamp(0.76rem, 0.74rem + 0.12vw, 0.84rem);
    --btn-sm-fs: clamp(0.72rem, 0.7rem + 0.1vw, 0.8rem);
  }

  .eyebrow {
    font-size: 0.6875rem;
  }

  .hero-grid > .hero-actions {
    grid-template-columns: 1fr;
    max-width: min(100%, var(--hero-copy-max));
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn {
    font-size: var(--hero-btn-fs);
    padding: var(--hero-btn-pad-y) var(--hero-btn-pad-x);
  }
}

@media (max-width: 360px) {
  :root {
    --hero-copy-max: 22.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "actions"
      "metrics";
    row-gap: clamp(0.85rem, 0.62rem + 0.95vw, 1.15rem);
    column-gap: 0;
  }

  .hero-intro {
    gap: clamp(0.55rem, 0.42rem + 0.85vw, 0.95rem);
    align-items: center;
    text-align: center;
  }

  .hero-intro .hero-title {
    text-align: center;
  }

  .hero-intro .lead {
    text-align: center;
    padding-top: clamp(0.15rem, 0.08rem + 0.4vw, 0.45rem);
  }

  .hero-grid > .hero-actions,
  .hero-grid > .hero-metrics {
    justify-self: center;
  }

  .hero-grid > .hero-metrics {
    width: min(100%, 26rem);
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pricing-card:hover {
    transform: none;
  }

  .why-card:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }

  .contact-channel:hover {
    transform: none;
  }
}

.site-header {
  background: rgba(9, 14, 30, 0.76);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(14px) saturate(1.2);
}

.logo,
.logo-text,
.nav-list a {
  color: #e7efff;
}

.nav-list a:hover {
  color: #8fd0ff;
}

.lang-switch {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(9, 14, 30, 0.82) 100%
  );
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 2px 8px rgba(2, 6, 23, 0.32);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lang-switch:hover {
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 3px 10px rgba(14, 116, 144, 0.16);
}

.lang-toggle {
  color: #f0f9ff;
}

.nav-toggle {
  border: 1px solid rgba(96, 165, 250, 0.32);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(7, 13, 27, 0.94) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 18px rgba(2, 6, 23, 0.42);
}

.nav-toggle:hover {
  border-color: rgba(125, 211, 252, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 8px 28px rgba(14, 116, 144, 0.22);
  transform: translateY(-1px);
}

.nav-toggle-bar {
  background: linear-gradient(90deg, #bae6fd 0%, #38bdf8 55%, #7dd3fc 100%);
}

body.nav-open .nav-toggle {
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 28px rgba(14, 116, 144, 0.25);
}

.eyebrow,
.section-eyebrow,
.contact-eyebrow {
  color: #7dd3fc;
}

.hero-title {
  color: #f6f9ff;
}

.lead,
.hero-metric-label {
  color: #b8c6e4;
}

.hero-metric-value {
  color: #f6f9ff;
}

.proof-metric {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.74) 100%
  );
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.5);
  padding: 0.9rem 1rem 0.82rem;
  border-radius: 12px;
}

.proof-strip {
  padding-top: 1.15rem;
  padding-bottom: 1.05rem;
}

.proof-grid {
  gap: 0.7rem;
}

.proof-metric strong {
  color: #f8fbff;
}

.proof-metric span {
  color: #b8c6e4;
}

.proof-badge {
  background: rgba(56, 189, 248, 0.14);
  border-color: rgba(125, 211, 252, 0.35);
  color: #d5f1ff;
}

.brand-strip {
  padding-top: 0;
  padding-bottom: 1.3rem;
  margin-top: -0.4rem;
}

.brand-strip-inner {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.7) 100%
  );
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.42);
  padding: 0.85rem 1rem 0.8rem;
}

.brand-strip-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: 0.78rem;
  color: #9fb2d6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-strip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.5rem;
}

.brand-strip-list li {
  color: #dbe7ff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.88;
  padding: 0;
  border: none;
  background: transparent;
}

.btn-primary {
  background: linear-gradient(180deg, #3e82cb 0%, #2f67a7 100%);
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #5c9ce1 0%, #3b77bb 100%);
}

.contact-form.contact-form--panel .contact-form-submit {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.contact-form.contact-form--panel .contact-form-submit:hover {
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
}

/* Hero CTA: glow yok; header CTA: panel ile aynı canlı mavi + gölge */
.hero-actions .btn-primary {
  background: linear-gradient(180deg, #2990ff 0%, #0078f6 100%);
  box-shadow: none;
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(180deg, #45a1ff 0%, #1685fb 100%);
  box-shadow: none;
}

.hero-actions .btn-ghost {
  background: rgba(9, 18, 34, 0.78);
  border-color: rgba(148, 163, 184, 0.48);
  color: rgba(241, 245, 249, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(148, 163, 184, 0.24),
    0 4px 16px rgba(2, 6, 23, 0.26);
}

.hero-actions .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(186, 200, 218, 0.62);
}

.site-header .nav-cta.btn-primary {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.site-header .nav-cta.btn-primary:hover {
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.52);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.76);
  border-color: rgba(148, 163, 184, 0.34);
  color: #dbe7ff;
}

.btn-ghost:hover {
  background: rgba(56, 189, 248, 0.14);
  border-color: rgba(147, 197, 253, 0.52);
  color: #f8fafc;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(14, 116, 144, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .btn-ghost:hover {
    transform: none;
  }
}

.logos-strip,
.section-platform,
.contact-section:not(.contact-section--showcase) {
  background: transparent;
}

.logos-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(2, 6, 23, 0.35);
  color: #8cb3ff;
}

.sectors-grid {
  align-items: stretch;
}

.sector-card {
  background: linear-gradient(
    180deg,
    rgba(7, 17, 36, 0.86) 0%,
    rgba(5, 12, 28, 0.74) 100%
  );
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(2, 6, 23, 0.38);
  min-height: 23rem;
}

.sector-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.24) 0%,
    rgba(37, 99, 235, 0.16) 100%
  );
  border-color: rgba(147, 197, 253, 0.42);
  color: #8fc0ff;
}

.sector-name {
  color: #f1f6ff;
}

.sector-desc,
.sector-list li {
  color: #a8bad8;
}

.sector-list {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.sector-list li::before {
  background: #4f8fff;
  box-shadow: 0 0 0 2px rgba(79, 143, 255, 0.22);
}

.sector-link {
  color: #67b8ff;
}

.sector-link::after {
  content: " \2192";
}

.sectors-foot-item {
  background: rgba(2, 6, 23, 0.38);
  border-color: rgba(148, 163, 184, 0.24);
  color: #b4c4e0;
}

.section-head h2,
.split-copy h2,
.contact-copy h2,
.contact-hero-title,
.contact-form-title,
.legal-hero h2,
.legal-card h3,
.platform-module-card h3,
.platform-intro-card h3,
.pricing-card h3,
.steps h3 {
  color: #f2f7ff;
}

.section-head p,
.split-copy > p,
.platform-module-card p,
.platform-intro-card p,
.steps p,
.contact-lead,
.contact-bullets,
.contact-hero-lead,
.contact-promise-item,
.form-note,
.pricing-note,
.logos-lead,
.legal-lead,
.legal-card-body > p,
.footer-tagline,
.footer-copy {
  color: #b8c6e4;
}

.pricing-card,
.platform-intro-card,
.platform-module-card,
.steps li,
.contact-channel,
.contact-form:not(.contact-form--panel),
.legal-card,
.panel-card {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.68) 100%
  );
  border-color: rgba(148, 163, 184, 0.26);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.36);
}

.legal-section--showcase {
  background: linear-gradient(165deg, #050a14 0%, #0a1628 48%, #060d18 100%);
}

.legal-section--showcase .legal-card {
  background: rgba(15, 23, 42, 0.38);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: none;
}

.legal-section--showcase .legal-card:hover {
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: none;
  background: rgba(15, 23, 42, 0.48);
}

.field input,
.field textarea {
  background: rgba(2, 6, 23, 0.32);
  border-color: rgba(148, 163, 184, 0.24);
  color: #e7efff;
}

.platform-card-icon {
  color: #8fc3ff;
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.3) 0%,
    rgba(37, 99, 235, 0.18) 100%
  );
  border-color: rgba(147, 197, 253, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 16px rgba(2, 6, 23, 0.3);
}

.platform-card-icon.platform-card-icon--rose {
  color: #fda4af;
  background: linear-gradient(
    145deg,
    rgba(251, 113, 133, 0.32) 0%,
    rgba(244, 63, 94, 0.16) 100%
  );
  border-color: rgba(251, 113, 133, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(251, 113, 133, 0.22);
}

.platform-card-icon.platform-card-icon--sky {
  color: #7dd3fc;
  background: linear-gradient(
    145deg,
    rgba(56, 189, 248, 0.32) 0%,
    rgba(14, 165, 233, 0.16) 100%
  );
  border-color: rgba(56, 189, 248, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(56, 189, 248, 0.24);
}

.platform-card-icon.platform-card-icon--emerald {
  color: #6ee7b7;
  background: linear-gradient(
    145deg,
    rgba(52, 211, 153, 0.3) 0%,
    rgba(16, 185, 129, 0.16) 100%
  );
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(52, 211, 153, 0.2);
}

.platform-card-icon.platform-card-icon--amber {
  color: #fde047;
  background: linear-gradient(
    145deg,
    rgba(251, 191, 36, 0.32) 0%,
    rgba(245, 158, 11, 0.18) 100%
  );
  border-color: rgba(251, 191, 36, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(245, 158, 11, 0.2);
}

.platform-card-icon.platform-card-icon--teal {
  color: #5eead4;
  background: linear-gradient(
    145deg,
    rgba(45, 212, 191, 0.28) 0%,
    rgba(20, 184, 166, 0.16) 100%
  );
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(20, 184, 166, 0.2);
}

.platform-card-icon.platform-card-icon--violet {
  color: #c4b5fd;
  background: linear-gradient(
    145deg,
    rgba(167, 139, 250, 0.32) 0%,
    rgba(124, 58, 237, 0.18) 100%
  );
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(139, 92, 246, 0.22);
}

.platform-card-icon.platform-card-icon--fuchsia {
  color: #f0abfc;
  background: linear-gradient(
    145deg,
    rgba(232, 121, 249, 0.32) 0%,
    rgba(217, 70, 239, 0.18) 100%
  );
  border-color: rgba(232, 121, 249, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(217, 70, 239, 0.22);
}

.platform-card-icon.platform-card-icon--orange {
  color: #fdba74;
  background: linear-gradient(
    145deg,
    rgba(251, 146, 60, 0.32) 0%,
    rgba(234, 88, 12, 0.18) 100%
  );
  border-color: rgba(251, 146, 60, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(251, 146, 60, 0.2);
}

.platform-intro-card,
.platform-module-card,
.sector-card,
.sectors-foot-item {
  border-color: rgba(96, 165, 250, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(2, 6, 23, 0.4);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.platform-intro-card:hover,
.platform-module-card:hover,
.sector-card:hover,
.sectors-foot-item:hover {
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(14, 116, 144, 0.22);
}

.platform-card-ill {
  color: rgba(37, 99, 235, 0.92);
}

.field span,
.contact-channel-label {
  color: #b8c6e4;
}

.contact-channel-value {
  color: #d9eeff;
}

.contact-section:not(.contact-section--showcase) {
  background: radial-gradient(
    ellipse 90% 50% at 45% 0%,
    rgba(56, 189, 248, 0.1) 0%,
    transparent 58%
  );
}

.contact-form.contact-form--panel {
  background: linear-gradient(180deg, #0b1224 0%, #050a14 100%);
  border-color: rgba(96, 165, 250, 0.32);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.08),
    0 16px 36px rgba(2, 6, 23, 0.48),
    0 0 48px rgba(37, 99, 235, 0.08);
}

.contact-mini-card {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(15, 23, 42, 0.58) 100%
  );
  border-color: rgba(148, 163, 184, 0.22);
}

.contact-section--showcase .contact-mini-card {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(15, 23, 42, 0.58) 100%
  );
}

.contact-channel-icon {
  color: #8fc3ff;
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.3) 0%,
    rgba(37, 99, 235, 0.18) 100%
  );
  border-color: rgba(147, 197, 253, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 16px rgba(2, 6, 23, 0.3);
}

.contact-channel:hover {
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 36px rgba(2, 6, 23, 0.42);
}

.contact-form {
  border-color: rgba(96, 165, 250, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(2, 6, 23, 0.48);
}

.contact-form::before {
  background: linear-gradient(
    90deg,
    #38bdf8 0%,
    rgba(56, 189, 248, 0.55) 40%,
    rgba(99, 102, 241, 0.45) 100%
  );
  opacity: 1;
}

.contact-form.contact-form--panel::before {
  display: none;
}

.contact-form-head {
  border-bottom-color: rgba(148, 163, 184, 0.22);
}

.contact-form-hint {
  color: #94a3b8;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.consent-field {
  color: #94a3b8;
}

.consent-field a {
  color: #7dd3fc;
}

.field-required > span::after {
  color: #f87171;
}

.contact-bullets li::before {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.legal-section--showcase .contact-bullets li::before {
  background: #38bdf8;
  box-shadow: none;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  top: 0.55em;
  left: 0;
}

.pricing-title-accent {
  color: #38bdf8;
}

.pricing-price--blue {
  color: #38bdf8;
}

.pricing-price--green {
  color: #34d399;
}

.pricing-card .pricing-features li {
  color: #b8c6e4;
}

.pricing-card--featured {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(56, 189, 248, 0.35),
    0 22px 50px rgba(8, 47, 73, 0.55);
}

.pricing-badge {
  color: #0f172a;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  border-color: rgba(148, 163, 184, 0.35);
}

.pricing-trust-icon {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(125, 211, 252, 0.35);
}

.pricing-trust-copy strong {
  color: #f2f7ff;
}

.pricing-trust-copy p {
  color: #94a3b8;
}

.pricing-note {
  color: #94a3c8;
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(148, 163, 184, 0.28);
}

.pricing-note a {
  color: #7dd3fc;
}

.pricing-cta--outline {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(2, 6, 23, 0.25);
}

.pricing-cta--outline:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(125, 211, 252, 0.75);
}

.pricing-cta--primary {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.35);
}

.pricing-cta--enterprise {
  color: #6ee7b7;
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(2, 6, 23, 0.25);
}

.pricing-cta--enterprise:hover {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(52, 211, 153, 0.85);
}

.pricing-section--showcase {
  background: linear-gradient(165deg, #050a14 0%, #0a1628 48%, #060d18 100%);
}

.pricing-section--showcase .pricing-card {
  background: rgba(15, 23, 42, 0.35);
  border-color: rgba(96, 165, 250, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(2, 6, 23, 0.4);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pricing-section--showcase .pricing-card--featured {
  transform: none;
  padding-top: 1.85rem;
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.22);
}

.pricing-section--showcase .pricing-card:hover {
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(14, 116, 144, 0.22);
  transform: none;
}

.pricing-section--showcase .pricing-card--featured:hover {
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(14, 116, 144, 0.22);
  transform: none;
}

.pricing-section--showcase .pricing-badge {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.45);
}

.pricing-card-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.16) 0%,
    rgba(14, 116, 144, 0.12) 100%
  );
  border: 1px solid rgba(125, 211, 252, 0.28);
  color: #9bd8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-card-icon--starter {
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.2) 0%,
    rgba(37, 99, 235, 0.12) 100%
  );
  border-color: rgba(147, 197, 253, 0.32);
  color: #9ecbff;
}

.pricing-card-icon--pro {
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.2) 0%,
    rgba(124, 58, 237, 0.12) 100%
  );
  border-color: rgba(196, 181, 253, 0.32);
  color: #d0c2ff;
}

.pricing-card-icon--enterprise {
  background: linear-gradient(
    180deg,
    rgba(52, 211, 153, 0.2) 0%,
    rgba(5, 150, 105, 0.12) 100%
  );
  border-color: rgba(110, 231, 183, 0.32);
  color: #83efc2;
}

.pricing-card-icon svg {
  flex-shrink: 0;
}

.pricing-section--showcase .pricing-trust {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  gap: 0.65rem 0.55rem;
  width: 100%;
  min-width: 0;
}

.pricing-section--showcase .pricing-trust-item {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.28);
  box-sizing: border-box;
}

.pricing-section--showcase .pricing-trust-copy {
  max-width: none;
  min-width: 0;
}

.site-footer {
  background: #060c19;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

/* Trust showcase sliders */
.trust-slider {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.trust-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  outline: none;
}

.trust-slider-viewport::-webkit-scrollbar {
  display: none;
}

.trust-slider-viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.45);
  border-radius: 12px;
}

.trust-slider-track {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
}

.trust-slider-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}

.trust-slider--top .trust-slider-slide {
  flex-basis: 100%;
}

.trust-slider--mid .trust-slider-slide {
  flex: 0 0 calc(100% - 2.25rem);
  max-width: 22rem;
}

.trust-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-slider--idle .trust-slider-nav {
  display: none;
}

.trust-slider-btn {
  display: none !important;
}

.trust-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.trust-slider-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.trust-slider-dot.is-active {
  background: #38bdf8;
  transform: scale(1.25);
}

@media (min-width: 721px) and (max-width: 960px) {
  .trust-slider--mid .trust-slider-slide {
    flex: 0 0 calc(50% - 0.4rem);
    max-width: none;
  }
}

@media (min-width: 961px) {
  .trust-slider--top .trust-slider-viewport {
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .trust-slider--top .trust-slider-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .trust-slider--top .trust-slider-slide {
    flex: none;
    max-width: none;
  }

  .trust-slider--mid .trust-slider-viewport {
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .trust-slider--mid .trust-slider-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .trust-slider--mid .trust-slider-slide {
    flex: none;
    max-width: none;
  }
}

.trust-showcase {
  padding-top: 2rem;
  padding-bottom: 2.75rem;
}

.trust-shell {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.trust-header {
  text-align: center;
  margin-bottom: 1.35rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.trust-header h2 {
  margin: 0;
  font-family: var(--font-display);
  color: #f6f9ff;
  font-size: clamp(1.2rem, 1rem + 1.2vw, 1.7rem);
  letter-spacing: -0.02em;
}

.trust-header p {
  margin: 0.55rem 0 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.trust-top {
  gap: 0.65rem;
}

.trust-group-block {
  min-width: 0;
  text-align: center;
}

.trust-top-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.trust-group {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.trust-group::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.trust-group--security {
  color: #86b6ff;
}

.trust-group--security::before {
  background: #5f9cff;
  box-shadow: 0 0 0 2px rgba(95, 156, 255, 0.12);
}

.trust-group--usability {
  color: #78e5b6;
}

.trust-group--usability::before {
  background: #35d39d;
  box-shadow: 0 0 0 2px rgba(53, 211, 157, 0.12);
}

.trust-mid-grid {
  margin-top: 1.15rem;
}

.trust-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.35);
  padding: 0.85rem 0.85rem 0.8rem;
  box-shadow: none;
}

.trust-card-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.16) 0%,
    rgba(14, 116, 144, 0.12) 100%
  );
  border: 1px solid rgba(125, 211, 252, 0.28);
  color: #9bd8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.trust-card--blue .trust-card-icon {
  background: linear-gradient(
    180deg,
    rgba(96, 165, 250, 0.2) 0%,
    rgba(37, 99, 235, 0.12) 100%
  );
  border-color: rgba(147, 197, 253, 0.32);
  color: #9ecbff;
}

.trust-card--green .trust-card-icon {
  background: linear-gradient(
    180deg,
    rgba(52, 211, 153, 0.2) 0%,
    rgba(5, 150, 105, 0.12) 100%
  );
  border-color: rgba(110, 231, 183, 0.32);
  color: #83efc2;
}

.trust-card--purple .trust-card-icon {
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.2) 0%,
    rgba(124, 58, 237, 0.12) 100%
  );
  border-color: rgba(196, 181, 253, 0.32);
  color: #d0c2ff;
}

.trust-card-icon svg {
  flex-shrink: 0;
}

.trust-card--center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 14.8rem;
  min-height: 14.8rem;
  text-align: center;
}

.trust-card--center .trust-card-icon {
  margin: 0 auto;
}

.trust-card--center p {
  margin-top: 0.5rem;
}

.trust-card--inline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 6.2rem;
}

.trust-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.5rem;
  color: #f8fbff;
}

.trust-card strong {
  display: block;
  color: #f2f7ff;
  font-size: 0.95rem;
  line-height: 1.25;
  margin-top: 0.55rem;
}

.trust-card--inline strong {
  margin-top: 0;
}

.trust-card--inline .trust-card-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
}

.trust-card--inline .trust-card-icon svg {
  width: 1.28rem;
  height: 1.28rem;
}

.trust-card p {
  margin: 0.45rem 0 0;
  color: #a9bbda;
  font-size: 0.78rem;
  line-height: 1.5;
}

.trust-stats {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-stat {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.28);
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-stat-icon {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-stat-icon--blue {
  color: #8db6ff;
}

.trust-stat-icon--indigo {
  color: #9a8dff;
}

.trust-stat-icon--cyan {
  color: #7dd3fc;
}

.trust-stat-copy {
  min-width: 0;
}

.trust-stat-copy strong {
  display: block;
  color: #d9eeff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
}

.trust-stat-copy span {
  display: block;
  margin-top: 0.25rem;
  color: #a9bbda;
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .trust-top-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-strip {
    padding-top: 1rem;
    padding-bottom: 0.9rem;
  }

  .proof-grid {
    gap: 0.65rem;
  }

  .brand-strip-list {
    gap: 0.65rem 1rem;
  }
}

@media (max-width: 720px) {
  .trust-top-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .trust-card--center {
    height: 100%;
    min-height: 9.75rem;
    padding: 0.68rem 0.55rem 0.62rem;
  }

  .trust-card--center .trust-card-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .trust-card-value {
    font-size: 1.42rem;
    margin-top: 0.38rem;
  }

  .trust-card strong {
    font-size: 0.86rem;
    line-height: 1.2;
    margin-top: 0.38rem;
  }

  .trust-card p {
    font-size: 0.68rem;
    line-height: 1.35;
    margin-top: 0.3rem;
  }

  .trust-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .trust-stat {
    padding: 0.6rem 0.5rem;
    gap: 0.4rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .trust-stat-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .trust-stat-copy strong {
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .trust-stat-copy span {
    font-size: 0.72rem;
    line-height: 1.3;
    margin-top: 0.18rem;
  }

  .sector-card {
    min-height: 0;
  }

  .brand-strip {
    margin-top: -0.2rem;
  }

  .brand-strip-list {
    gap: 0.55rem 0.85rem;
  }

  .brand-strip-list li {
    font-size: 0.8rem;
  }
}

@media (max-width: 460px) {
  .brand-strip-list {
    gap: 0.45rem 0.7rem;
  }
}

/* Hero metin kolonu: başlık + paragraf birebir aynı genişlikte kalsın */
.hero-grid > .hero-intro {
  width: min(100%, var(--hero-copy-max));
  max-width: min(100%, var(--hero-copy-max));
}

.hero-intro .hero-title,
.hero-intro .lead {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1400px) {
  .hero-intro .hero-title {
    font-size: clamp(2.85rem, 2.25rem + 1.1vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .hero-intro .lead {
    font-size: clamp(1.02rem, 0.94rem + 0.18vw, 1.14rem);
    line-height: 1.56;
  }

  .hero-actions .btn {
    min-height: 3.2rem;
    font-size: clamp(1rem, 0.92rem + 0.2vw, 1.08rem);
  }
}

@media (min-width: 1800px) {
  .hero .hero-grid {
    --hero-stack-w: min(100%, 48rem, calc(44vw - 2rem));
  }

  .hero-intro .hero-title {
    font-size: clamp(3.05rem, 2.4rem + 0.95vw, 3.95rem);
  }

  .hero-intro .lead {
    font-size: clamp(1.06rem, 0.97rem + 0.16vw, 1.18rem);
  }
}

/* Final hero text alignment contract:
   - Mobile/tablet keeps centered flow from responsive blocks
   - Desktop: tek --hero-stack-w ile intro + CTA + metrics aynı dikey hat
*/
@media (min-width: 961px) {
  .hero {
    /* Hero yuksekligi sabit kalirken icerik blogu dikeyde dengelenir */
    display: grid;
    align-items: center;
  }

  .hero .hero-grid {
    padding-top: 0;
  }

  .hero .hero-grid > .hero-intro {
    --hero-text-col: min(100%, var(--hero-stack-w));
    justify-self: start;
    width: var(--hero-stack-w);
    max-width: var(--hero-stack-w);
    margin-left: 0;
    margin-right: 0;
  }

  .hero .hero-intro {
    align-items: flex-start;
    text-align: left;
  }

  .hero .hero-intro .hero-title,
  .hero .hero-intro .lead {
    width: var(--hero-text-col);
    max-width: var(--hero-text-col);
    margin-left: 0;
    margin-right: 0;
  }

  .hero .hero-intro .hero-title,
  .hero .hero-intro .lead {
    text-align: left;
  }

  .hero .hero-intro .lead {
    width: min(100%, calc(var(--hero-text-col) - clamp(2.6rem, 5vw, 4.8rem)));
    max-width: min(100%, calc(var(--hero-text-col) - clamp(2.6rem, 5vw, 4.8rem)));
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(0.82rem, 0.76rem + 0.34vw, 0.98rem);
    line-height: 1.6;
  }

  .hero .hero-grid > .hero-actions {
    justify-self: start;
    width: var(--hero-stack-w);
    max-width: var(--hero-stack-w);
  }

  .hero .hero-actions {
    margin-left: 0;
    margin-right: 0;
    justify-self: start;
  }

  .hero .hero-grid > .hero-metrics {
    justify-self: start;
    width: var(--hero-stack-w);
    max-width: var(--hero-stack-w);
    margin-top: 0.56rem;
    margin-left: 0;
    margin-right: 0;
    transform: translateY(0.46rem);
    box-sizing: border-box;
  }
}

@media (min-width: 961px) {
  .hero .hero-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: start;
    justify-items: start;
    width: var(--hero-stack-w, min(100%, var(--hero-copy-max)));
    max-width: var(--hero-stack-w, min(100%, var(--hero-copy-max)));
  }

  .hero .hero-actions .btn {
    width: auto;
    min-width: 12rem;
  }
}

@media (max-width: 960px) {
  .hero .hero-intro .lead {
    width: min(100%, calc(var(--hero-copy-max) - clamp(1.2rem, 7vw, 3.2rem)));
    max-width: min(100%, calc(var(--hero-copy-max) - clamp(1.2rem, 7vw, 3.2rem)));
  }
}

