:root {
  --navy: #021733;
  --navy-2: #05264f;
  --ink: #071936;
  --muted: #5b6680;
  --orange: #f1871f;
  --orange-2: #b76620;
  --line: #dde5f0;
  --paper: #ffffff;
  --soft: #f7f9fd;
  --blue: #2d7ccf;
  --green: #84c848;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 96px;
  color: #071936;
  background: url("assets/hero-background_light.png") center right / cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nav,
.hero-grid,
.section,
.footer {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  position: fixed;
  top: 24px;
  left: 0;
  z-index: 60;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: top 280ms cubic-bezier(0.4, 0, 0.2, 1), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.nav::before {
  content: none;
}

.nav.is-stuck {
  top: 0;
  align-items: stretch;
  backdrop-filter: blur(12px);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav,
body.menu-open .nav.is-stuck {
  backdrop-filter: none;
}

.nav.is-stuck::before {
  content: none;
}

.brand {
  position: relative;
  order: 2;
  min-width: 270px;
  display: grid;
  place-items: center;
  padding: 24px 28px;
  background: rgba(5, 39, 86, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.brand::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: calc(50vw - 16px);
  background: rgba(5, 39, 86, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}

.brand-logo {
  width: 160px;
  height: auto;
  transition: width 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.is-stuck .brand-logo {
  width: 110px;
}

.brand-text {
  font-size: 44px;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text span,
.hero-panel strong span,
.mission-grid h3,
.supply-grid h3,
.sales-flow h3 {
  color: var(--orange);
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 1),
      0 0 22px rgba(255, 255, 255, 0.85),
      0 0 50px rgba(255, 255, 255, 0.6),
      0 0 90px rgba(255, 255, 255, 0.35);
  }
  50% {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.4),
      0 0 10px rgba(255, 255, 255, 0.25),
      0 0 22px rgba(255, 255, 255, 0.15),
      0 0 40px rgba(255, 255, 255, 0.08);
  }
}

.hero-copy h1 span {
  color: #071936;
  animation: glow-pulse 5s ease-in-out infinite;
}

.brand-orbit {
  position: absolute;
  width: 42px;
  height: 24px;
  border: 2px solid var(--orange);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translate(112px, 3px) rotate(-24deg);
}

.brand small,
.footer small {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-links {
  position: relative;
  order: 1;
  transition: min-height 280ms cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
  min-height: 96px;
  padding: 0 52px 0 8px;
  background: rgba(2, 18, 42, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.nav-links::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100vw;
  background: rgba(2, 18, 42, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}

.nav.is-stuck .nav-links {
  min-height: 52px;
  background: rgba(2, 18, 42, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.nav.is-stuck .nav-links::before {
  background: rgba(2, 18, 42, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.nav.is-stuck .brand {
  padding: 8px 28px;
  background: rgba(5, 39, 86, 0.74);
  backdrop-filter: blur(12px);
}

.nav.is-stuck .brand::after {
  background: rgba(5, 39, 86, 0.74);
  backdrop-filter: blur(12px);
}

.nav-links a {
  opacity: 0.88;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--orange);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.nav-close {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 90px 0 150px;
}

.hero-copy {
  margin-top: 60px;
}

.hero-copy h1 {
  max-width: 590px;
  margin: 0 0 22px;
  font-size: clamp(52px, 5vw, 80px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.hero-spot-sub {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.75;
  line-height: 1.7;
}

.hero-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 55;
}

.hero-actions .action-card {
  border-radius: 8px 0 0 8px;
  min-width: 0;
  min-height: 0;
  padding: 28px 16px;
  grid-template-columns: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 220px;
}

.hero-actions .action-card span {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 15px;
  font-weight: 800;
  flex: 1;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-actions .action-card svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-actions-inline {
  display: none;
}

.action-card {
  min-width: 285px;
  min-height: 72px;
  display: grid;
  grid-template-columns: 36px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: rgba(2, 14, 34, 0.62);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.action-card.filled {
  background: linear-gradient(135deg, #ca7a2f, #8f541d);
}

.action-card:hover {
  background: linear-gradient(135deg, #ca7a2f, #8f541d);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.action-card.filled:hover {
  background: rgba(2, 14, 34, 0.62);
}

.action-card svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.hero-panel {
  display: none;
  border: 1px solid rgba(255, 148, 55, 0.45);
  border-radius: 14px;
  padding: 18px;
  background: rgba(2, 18, 42, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-head strong {
  font-size: 25px;
}

.panel-head div {
  display: flex;
  gap: 14px;
  color: #dce8f8;
}

.dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dashboard article {
  min-height: 135px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 33, 72, 0.82);
  overflow: hidden;
}

.tile-title {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
}

.chart-line,
.bars {
  height: 82px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.chart-line span {
  flex: 1;
  min-width: 8px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(#e9edf8, var(--orange));
}

.map-dots {
  height: 88px;
  position: relative;
  background:
    radial-gradient(circle at 15% 24%, var(--orange) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 42%, var(--orange) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 22%, var(--orange) 0 4px, transparent 5px),
    radial-gradient(circle at 36% 74%, var(--orange) 0 4px, transparent 5px),
    radial-gradient(circle at 83% 66%, var(--orange) 0 5px, transparent 6px);
}

.map-dots::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(241, 135, 31, 0.5);
  border-radius: 48% 40% 45% 38%;
  transform: rotate(-8deg);
}

.donut {
  width: 76px;
  height: 76px;
  float: left;
  margin-right: 14px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 42%, #1e75c8 42% 64%, #f7c05f 64% 82%, #203a62 82%);
}

.donut::after {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin: 19px;
  border-radius: 50%;
  background: #052148;
}

.mini-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 3px 0 0;
  list-style: none;
  font-size: 12px;
}

.mini-list b {
  color: var(--orange);
}

.bars span {
  flex: 1;
  min-width: 22px;
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 4px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(#9fc2ff, #164f91);
  font-size: 10px;
  font-weight: 800;
}

.section {
  padding: 46px 0;
  scroll-margin-top: 100px;
}

.mobile-only {
  display: none;
}

@media (max-width: 760px) {
  .mobile-only {
    display: inline;
  }
}

.section h2 {
  margin: 0 0 18px;
  text-align: center;
  text-transform: none;
  font-size: 28px;
  line-height: 1.2;
}

#hakkimizda {
  padding-top: 46px;
  padding-bottom: 0;
}

.section.ecosystem {
  padding-top: 28px;
  padding-bottom: 46px;
}

#nasil {
  padding-top: 46px;
  padding-bottom: 46px;
}

#formlar {
  padding-top: 46px;
  padding-bottom: 0;
}

#blog {
  padding-top: 46px;
  padding-bottom: 46px;
}

#hakkimizda h2:first-of-type {
  margin-bottom: 18px;
}

#hakkimizda h2 + h2 {
  margin-top: 28px;
  margin-bottom: 18px;
  font-size: 22px;
  color: #253655;
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: transparent;
}

.power-grid article {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.power-grid article.in-view {
  opacity: 1;
  transform: translateY(0);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
}

.value-grid article {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(7, 25, 54, 0.08);
  border-right: none;
}

.value-grid article.in-view {
  opacity: 1;
  transform: translateY(0);
}

.power-grid article,
.value-grid article {
  min-height: 150px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 24px 22px;
  text-align: center;
  border-right: none;
}

.power-grid article:last-child,
.value-grid article:last-child {
  border-right: 0;
}

.power-grid svg,
.value-grid svg {
  width: 48px;
  height: 48px;
  color: var(--orange);
  stroke-width: 1.6;
}

h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.power-grid p,
.value-grid p {
  max-width: 170px;
  color: #23385e;
  font-size: 12px;
  line-height: 1.45;
}

.ecosystem {
  margin-top: 0;
  padding: 46px 0;
}

.ecosystem h2 {
  margin-bottom: 24px;
}

.ecosystem-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  align-items: center;
  gap: 28px;
  text-align: center;
}

.ecosystem-row img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: saturate(0.98);
}

.mission-band {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 46px;
  padding-bottom: 46px;
  padding-left: max(28px, calc((100vw - 1240px) / 2));
  padding-right: max(28px, calc((100vw - 1240px) / 2));
  background: #f4f7fc;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: transparent;
  color: var(--ink);
}

.mission-grid article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 46px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(7, 25, 54, 0.08);
  border-right: none;
}

.mission-grid article > svg {
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.mission-grid article > svg.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mission-grid article > div {
  width: 100%;
}

.mission-grid article:last-child {
  border-right: 0;
}

.mission-grid svg {
  width: 62px;
  height: 62px;
  margin-top: 4px;
  color: var(--orange);
  stroke-width: 1.4;
}

.mission-grid .quote {
  margin: 6px 0 18px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}

.mission-grid p:not(.quote) {
  color: #4a6a8a;
  font-size: 14px;
  line-height: 1.8;
}

.value-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
  border: none;
  border-radius: 0;
}

.dark-section,
.sales-section {
  width: 100%;
  max-width: none;
  color: #fff;
  border-radius: 0;
  background: linear-gradient(120deg, #031a39, #042653);
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: max(28px, calc((100vw - 1240px) / 2));
  padding-right: max(28px, calc((100vw - 1240px) / 2));
}

.dark-section h2,
.sales-section h2 {
  margin-top: 0;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.supply-grid article {
  position: relative;
  min-height: 270px;
  padding: 30px 34px 30px 110px;
  border-right: 1px solid rgba(241, 135, 31, 0.45);
}

.supply-grid article:last-child {
  border-right: 0;
}

.num {
  position: absolute;
  top: 25px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  border: 1px solid rgba(88, 150, 216, 0.75);
  border-radius: 50%;
  font-size: 30px;
}

.num.in-view {
  opacity: 1;
  transform: translateY(0);
}

.supply-grid svg {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  color: #7ec8e3;
  stroke-width: 1.4;
}

.supply-grid p,
.supply-grid li {
  color: #dce8f8;
  font-size: 13px;
  line-height: 1.55;
}

.supply-grid ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.supply-grid li::marker {
  color: var(--orange);
}

.sales-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.sales-section h2 {
  margin-bottom: 18px;
}

.sales-section .section-lead {
  margin-bottom: 28px;
}

.stats-band {
  width: 100%;
  background: linear-gradient(120deg, var(--orange-2), var(--orange));
  box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.18);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.stats-band::-webkit-scrollbar {
  display: none;
}

.stats-band-inner {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px max(28px, calc((100vw - 1240px) / 2));
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.stats-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.stats-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
  stroke-width: 1.6;
}

.stats-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.35);
}

.sales-section--light {
  background: transparent;
  color: var(--ink);
}

.sales-section--light h2 {
  color: var(--ink);
}

.sales-section--light .section-lead {
  color: var(--muted);
}

.sales-section--light .sales-flow svg {
  border-color: var(--navy-2);
  color: var(--navy-2);
}

.sales-section--light .sales-flow span {
  background: var(--navy-2);
}

.sales-section--light .sales-flow p {
  color: var(--muted);
}

.section-lead {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto 28px;
  text-align: center;
  color: #dce8f8;
  line-height: 1.6;
}

.section-lead-light {
  color: #344363;
}

.sales-flow {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1.15fr;
  align-items: start;
  gap: 10px;
  padding: 0 36px;
  text-align: center;
}

.sales-flow article,
.sales-flow .sales-result,
.sales-flow span {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sales-flow article.in-view,
.sales-flow .sales-result.in-view,
.sales-flow span.in-view {
  opacity: 1;
  transform: translateX(0);
}

.sales-flow article {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.sales-flow svg {
  width: 72px;
  height: 72px;
  padding: 16px;
  border: 1px solid #8bb3e7;
  border-radius: 50%;
  color: #d8e9ff;
  stroke-width: 1.5;
}

.sales-flow span {
  height: 2px;
  margin-top: 36px;
  background: #8bb3e7;
}

.sales-result {
  position: relative;
  width: 132px;
  height: 132px;
  justify-self: center;
  margin-top: -30px;
  overflow: hidden;
  border-radius: 50%;
  outline: 3px solid #fff;
}

.sales-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.08);
}

.sales-result svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  padding: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  stroke: #fff;
  background: linear-gradient(145deg, var(--orange), var(--orange-2));
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.28);
  stroke-width: 3;
}

.sales-flow p {
  color: #dce8f8;
  font-size: 12px;
  line-height: 1.55;
}


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

.blog-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 25, 54, 0.06);
}

.blog-grid img {
  height: 180px;
  object-fit: cover;
}

.blog-grid h3 {
  min-height: 92px;
  padding: 20px 18px 10px;
  color: #0a244d;
  font-size: 16px;
  line-height: 1.35;
  text-transform: none;
}

.blog-grid a {
  display: inline-flex;
  margin: 0 18px 38px;
  color: #174d91;
  font-size: 13px;
  font-weight: 800;
}

.blog-grid a::after {
  content: "→";
  margin-left: 6px;
  color: var(--orange);
}

.cta-section {
  padding-top: 34px;
  padding-bottom: 54px;
}

.blog-section {
  padding-top: 64px;
  padding-bottom: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms, color 180ms;
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.cta-lead {
  margin: -8px 0 26px;
  text-align: center;
  color: #344363;
  font-size: 17px;
  line-height: 1.5;
}

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

.cta-grid article {
  min-height: 265px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px 24px 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #031a39, #042653);
  box-shadow: 0 14px 28px rgba(7, 25, 54, 0.14);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.cta-grid article.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cta-grid h3 {
  font-size: 24px;
  text-transform: none;
  color: var(--orange);
}

.cta-grid strong {
  min-height: 24px;
  font-size: 18px;
}

.cta-grid p {
  min-height: 58px;
  color: #dce8f8;
  font-size: 14px;
  line-height: 1.6;
}

.cta-grid > article > svg {
  order: -1;
  justify-self: start;
  width: 70px;
  height: 70px;
  margin: 0 0 6px;
  color: var(--orange);
  stroke-width: 1.35;
}

.cta-grid a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  border-radius: 6px;
  background: linear-gradient(135deg, #bd7228, #8e571f);
  font-weight: 800;
}

.cta-grid a svg {
  width: 20px;
  height: 20px;
}

.footer {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1.6fr 1fr 2.2fr;
  gap: 0;
  padding: 44px max(28px, calc((100vw - 1240px) / 2)) 48px;
  color: #fff;
  background: linear-gradient(120deg, #031a39, #042653);
}

.footer > div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
  padding: 30px 30px 30px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer > div:last-child {
  border-right: 0;
}

.footer h3 {
  font-size: 15px;
}

.footer a,
.footer p {
  color: #dce8f8;
  font-size: 13px;
  line-height: 1.55;
}

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

.footer svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

@media (max-width: 1120px) {
  .nav {
    align-items: center;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    order: -1;
  }

  .brand {
    order: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
    border: none;
    border-radius: 0;
    background: rgba(1, 8, 22, 0.99);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 320ms ease, visibility 320ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    white-space: normal;
    opacity: 1;
  }

  .nav-links a.is-active {
    color: var(--orange);
  }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
  }

  .nav-close i {
    width: 24px;
    height: 24px;
  }

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

  .hero-panel {
    max-width: 760px;
  }

  .power-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ecosystem-row,
  .cta-grid,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .supply-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .supply-grid article,
  .mission-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .sales-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .sales-flow > span {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav,
  .hero-grid,
  .section {
    width: min(100% - 28px, 1240px);
  }

  .nav {
    width: 100%;
    max-width: none;
    padding: 0 14px;
    background: rgba(2, 23, 51, 0.35);
    backdrop-filter: blur(12px);
    justify-content: flex-start;
  }

  .brand {
    min-width: 190px;
    padding: 14px 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 22px;
  }

  .section {
    padding: 34px 0;
  }

  .mission-band {
    padding-top: 18px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .cta-section {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .cta-lead {
    margin: -4px 0 20px;
    font-size: 15px;
  }

  .brand-text {
    font-size: 36px;
  }

  .hero-copy h1 {
    font-size: 53px;
  }

  .hero-copy p {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-actions {
    display: none;
  }

  .hero-actions-inline {
    display: inline-block;
    margin-top: 22px;
  }

  .action-card {
    min-width: 0;
    min-height: 0;
    padding: 11px 18px;
    font-size: 15px;
    gap: 10px;
    grid-template-columns: 24px 1fr 18px;
  }

  .action-card svg {
    width: 24px;
    height: 24px;
  }

  .supply-grid li {
    line-height: 1.7;
    margin-bottom: 6px;
  }

  .supply-grid ul {
    margin-top: 10px;
  }

  .sales-result {
    margin-top: 24px;
  }

  .dashboard,
  .power-grid,
  .value-grid,
  .ecosystem-row,
  .blog-grid,
  .cta-grid,
  .footer,
  .sales-flow {
    grid-template-columns: 1fr;
  }

  .power-grid article,
  .value-grid article,
  .power-grid article:last-child,
  .value-grid article:last-child {
    border-bottom: 0;
  }

  .mission-grid article {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    align-items: center;
  }

  .mission-grid article h3,
  .mission-grid article .label,
  .mission-grid article p,
  .mission-grid article .quote {
    text-align: center;
  }

  .mission-grid article > div {
    text-align: center;
  }

  .mission-grid .quote {
    margin-top: 16px;
  }

  .supply-grid article {
    padding: 28px 26px;
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 12px;
    align-items: start;
  }

  .supply-grid article .num {
    position: static;
    grid-column: 1;
    grid-row: 1;
  }

  .supply-grid svg {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    align-self: center;
  }

  .supply-grid article h3 {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .supply-grid article p,
  .supply-grid article ul {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .sales-flow {
    gap: 26px;
    padding: 0 22px;
  }

  .footer > div {
    border-right: 0;
    padding-right: 0;
  }
}

/* ── Drawer ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 14, 34, 0.55);
  backdrop-filter: blur(3px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #031a39, #042653);
  color: #fff;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.drawer-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.drawer-title svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.drawer-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 180ms, border-color 180ms;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.drawer-close svg {
  width: 18px;
  height: 18px;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 36px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.drawer-lead {
  color: #a8c0db;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Satmak tabları */
.satmak-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.satmak-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease;
}

.satmak-tab svg {
  width: 22px;
  height: 22px;
}

.satmak-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.satmak-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.kurumsal-subtabs {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: -12px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kurumsal-subtabs.is-open {
  display: flex;
}

.kurumsal-sublabel {
  font-size: 12px;
  color: #7a9dbf;
  margin: 0;
  text-align: center;
}

.kurumsal-subtab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.kurumsal-subtab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease;
}

.kurumsal-subtab svg {
  width: 18px;
  height: 18px;
}

.kurumsal-subtab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.kurumsal-subtab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.satmak-panel {
  display: none !important;
}

.satmak-panel.active {
  display: flex !important;
}

.panel-desc {
  font-size: 13px;
  color: #a8c0db;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(241, 135, 31, 0.08);
  border-radius: 0 6px 6px 0;
}

/* Form elemanları */
.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #c8d8eb;
}

.form-group label span {
  color: var(--orange);
}

.form-group label .optional {
  color: #6a8aaa;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 180ms, background 180ms;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4d6a86;
}

.form-group select option {
  background: #042653;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.09);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.stepper {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.stepper-btn {
  width: 44px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 150ms ease;
  line-height: 1;
}

.stepper-btn:hover {
  opacity: 0.85;
}

.stepper-input {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 0 !important;
  outline: none;
  -moz-appearance: textfield;
}

.stepper-input::-webkit-inner-spin-button,
.stepper-input::-webkit-outer-spin-button {
  display: none;
}

.drawer-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 180ms, transform 180ms;
}

.drawer-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.drawer-submit svg {
  width: 18px;
  height: 18px;
}

.drawer-contact-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.drawer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #a8c0db;
  margin: 0 0 14px;
  line-height: 1.5;
}

.drawer-contact-info svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--orange);
}
