:root {
  --navy: #0b1f3b;
  --steel: #5b6675;
  --accent: #ffb000;
  --bg: #f6f8fb;
  --line: #e3e8ef;
  --text: #0b1220;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
}
img {
  max-width: 100%;
  display: block;
}

/* Daha geniş container: sağ/sol boşluğu azaltır */
.container {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 16px);
    max-width: 100%;
  }
}

.topbar {
  background: #07172d;
  color: #d7e2f2;
  font-size: 13px;
  width: 100%;
  overflow: hidden;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sep {
  opacity: 0.6;
}
.topbar__link {
  color: #d7e2f2;
  text-decoration: none;
  opacity: 0.9;
}
.topbar__right {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 768px) {
  .topbar__left {
    font-size: 11px;
  }
  .topbar__left .sep {
    display: none;
  }
  .topbar__left span:not(:first-child):not(:nth-child(2)) {
    display: none;
  }
  .topbar__right {
    font-size: 11px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: padding 0.18s ease, box-shadow 0.18s ease,
    backdrop-filter 0.18s ease;
  width: 100%;
  overflow: hidden;
}
.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 31, 59, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  transition: padding 0.18s ease;
  flex-wrap: wrap;
}
.header.is-scrolled .header__inner {
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.header.is-scrolled .brand__logo {
  width: 34px;
  height: 34px;
}
.brand__text {
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav__link {
  color: #22324a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.nav__link:hover {
  border-bottom-color: var(--accent);
  color: var(--navy);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.nav__toggle:hover {
  background: var(--bg);
}
.nav__close {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 23, 45, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    color: #fff;
    font-size: 20px;
    padding: 12px 0;
    border-bottom-color: transparent;
  }
  .nav__link:hover {
    border-bottom-color: var(--accent);
  }
  .nav__toggle {
    display: block;
  }
  .nav__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    font-size: 14px;
  }
}

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.search {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.search__input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 12px;
  width: 320px;
  max-width: 100%;
  font-size: 13px;
}
.search__btn {
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  font-weight: 700;
}

@media (max-width: 980px) {
  .search__input {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .header__actions {
    gap: 8px;
  }
  .search {
    order: 3;
    width: 100%;
    flex-basis: 100%;
  }
  .search__input {
    width: 100%;
    flex: 1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  gap: 8px;
}
.btn--accent {
  background: var(--accent);
  color: #1a1400;
}
.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn--sm {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 9px;
}

@media (max-width: 768px) {
  .btn {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* HERO: daha geniş/dolu görünüm */
.hero {
  position: relative;
  background: radial-gradient(
      1200px 500px at 20% 10%,
      rgba(255, 176, 0, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* hero arka planda hafif teknik çizgi hissi */
.hero::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 420px;
  background-image: linear-gradient(
      to right,
      rgba(11, 31, 59, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(11, 31, 59, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: skewY(-6deg);
  opacity: 0.55;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding: 54px 0; /* daha premium doluluk */
}

.kicker {
  display: inline-block;
  color: var(--steel);
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 13px;
  margin-bottom: 10px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: 40px; /* biraz büyüdü */
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.2px;
}
.hero p {
  margin: 0 0 18px;
  color: #33445f;
  line-height: 1.65;
  font-size: 15px;
}
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 31, 59, 0.08);
  min-height: 420px; /* görsel daha dolu */
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 59, 0.25),
    rgba(255, 176, 0, 0.08)
  );
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.trustrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.trustcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  font-weight: 800;
  font-size: 13px;
  color: #23334a;
}

.section {
  padding: 36px 0;
  width: 100%;
  overflow: hidden;
}
.section--alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  margin-bottom: 16px;
}
.section__head h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 24px;
}
.section__head p {
  margin: 0;
  color: var(--steel);
}

.grid {
  display: grid;
  gap: 14px;
} /* aralık biraz arttı, daha premium */
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 6px 18px rgba(11, 31, 59, 0.06);
}
.card--link {
  text-decoration: none;
  color: inherit;
}
.card--link:hover {
  border-color: #d4dce8;
  transform: translateY(-1px);
  transition: 0.15s;
}
.muted {
  color: var(--steel);
  font-size: 13px;
}

.product {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px; /* kartlar daha dolu */
}
.product:hover {
  border-color: #d4dce8;
  transform: translateY(-1px);
  transition: 0.15s;
}
.product__code {
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.4px;
}
.product__name {
  margin-top: 6px;
  font-weight: 800;
}
.product__meta {
  margin-top: 6px;
  color: var(--steel);
  font-size: 13px;
}
.product__cta {
  margin-top: 10px;
  font-weight: 900;
  color: #1e2d45;
}

.link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

.footer {
  background: #07172d;
  color: #d7e2f2;
  padding: 28px 0 18px;
  margin-top: 26px;
  width: 100%;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.footer__title {
  margin: 0 0 10px;
  color: #fff;
}
.footer__text {
  margin: 0 0 8px;
  color: #d7e2f2;
  opacity: 0.92;
}
.footer__link {
  display: block;
  color: #d7e2f2;
  text-decoration: none;
  margin: 0 0 8px;
  opacity: 0.9;
}
.footer__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.badge {
  border: 1px solid rgba(227, 232, 239, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(227, 232, 239, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .trustrow {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .search__input {
    width: 240px;
  }
}
@media (max-width: 520px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .trustrow {
    grid-template-columns: 1fr;
  }
  .search__input {
    width: 190px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero__image {
    min-height: 320px;
  }
}

/* KATALOG SAYFASI */
.catalog {
  padding: 22px 0 40px;
  width: 100%;
  overflow: hidden;
}
.catalog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 18px;
}
.catalog__title {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  letter-spacing: -0.2px;
}
.catalog__desc {
  margin: 8px 0 0;
  color: var(--steel);
  max-width: 640px;
}
.catalog__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .catalog__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog__title {
    font-size: 24px;
  }
  .catalog__meta {
    width: 100%;
  }
}
.pill {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: #22324a;
}

.catalog__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 16px;
  align-items: start;
}

/* FİLTRE PANEL */
.filters {
  position: sticky;
  top: 86px; /* header sticky ile çakışmasın */
}
.filters__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(11, 31, 59, 0.06);
}
.filters__block {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.filters__block:last-child {
  border-bottom: 0;
}
.filters__title {
  font-weight: 900;
  color: #22324a;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.input,
.select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 12px;
  outline: 0;
  font-size: 13px;
}
.select {
  background: #fff;
}
.check {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  color: #22324a;
  font-size: 13px;
}
.check input {
  width: 16px;
  height: 16px;
}

.small {
  font-size: 12px;
  color: var(--steel);
  font-weight: 800;
  margin-bottom: 6px;
}
.row {
  display: flex;
  gap: 8px;
}

.rangegrid {
  display: grid;
  gap: 10px;
}

.filters__actions {
  display: flex;
  gap: 10px;
  padding-top: 12px;
}
.filters__note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 12px;
  line-height: 1.55;
}

/* SONUÇ KARTLARI */
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pcard {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(11, 31, 59, 0.05);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.pcard:hover {
  transform: translateY(-2px);
  border-color: #d4dce8;
}
.pcard__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.pcard__code {
  font-weight: 1000;
  color: var(--navy);
  letter-spacing: 0.4px;
}
.pcard__badge {
  font-size: 12px;
  font-weight: 1000;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: #22324a;
}
.pcard__badge.ok {
  background: rgba(30, 167, 255, 0.1);
  border-color: rgba(30, 167, 255, 0.25);
}
.pcard__badge.no {
  background: rgba(255, 176, 0, 0.12);
  border-color: rgba(255, 176, 0, 0.25);
}
.pcard__name {
  margin-top: 10px;
  font-weight: 900;
  color: #22324a;
}
.pcard__meta {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}
.meta {
  font-size: 13px;
  color: var(--steel);
}
.pcard__cta {
  margin-top: 12px;
  font-weight: 1000;
  color: #1e2d45;
}

/* EMPTY STATE */
.empty {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

/* ÜRÜN DETAY */
.bread {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--steel);
  padding: 18px 0 10px;
}
.bread a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
}
.detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  padding-bottom: 40px;
}
.detail__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(11, 31, 59, 0.06);
  margin-bottom: 14px;
}
.detail__title {
  margin: 6px 0 8px;
  color: var(--navy);
  letter-spacing: -0.2px;
}
.detail__desc {
  margin: 0;
  color: #33445f;
  line-height: 1.65;
}

.specs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.spec {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}
.spec span {
  color: var(--steel);
  font-weight: 900;
}
.spec b {
  color: #22324a;
}

.list {
  margin: 10px 0 0;
  color: #33445f;
  line-height: 1.7;
}
.sidebox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(11, 31, 59, 0.06);
  margin-bottom: 14px;
}
.detail__side {
  position: sticky;
  top: 86px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .catalog__layout {
    grid-template-columns: 1fr;
  }
  .filters {
    position: static;
  }
  .detail {
    grid-template-columns: 1fr;
  }
  .detail__side {
    position: static;
  }
}
@media (max-width: 520px) {
  .results__grid {
    grid-template-columns: 1fr;
  }
  .specs {
    grid-template-columns: 1fr;
  }
}
/* SAYFA GENEL */
.page {
  padding: 22px 0 44px;
  width: 100%;
  overflow: hidden;
}
.page__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 18px;
}
.page__title {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  letter-spacing: -0.2px;
}
.page__desc {
  margin: 8px 0 0;
  color: var(--steel);
  max-width: 680px;
}
.page__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .page__title {
    font-size: 24px;
  }
  .page__meta {
    width: 100%;
  }
  .page__meta .btn {
    flex: 1;
  }
}

.twocol {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
  align-items: start;
}
.side {
  position: sticky;
  top: 86px;
}
.label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 13px;
  color: #22324a;
}
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 12px;
  outline: 0;
  font-size: 13px;
  resize: vertical;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.form__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* BİLDİRİM */
.notice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(11, 31, 59, 0.05);
}
.notice--ok {
  border-color: rgba(30, 167, 255, 0.28);
  background: rgba(30, 167, 255, 0.06);
}
.notice--warn {
  border-color: rgba(255, 176, 0, 0.32);
  background: rgba(255, 176, 0, 0.1);
}

/* İLETİŞİM */
.infogrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.info {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.info__k {
  font-size: 12px;
  color: var(--steel);
  font-weight: 900;
}
.info__v {
  margin-top: 6px;
  font-weight: 900;
  color: #22324a;
}
.map {
  margin-top: 14px;
}
.map__placeholder {
  height: 260px;
  border-radius: 16px;
  border: 1px dashed #d4dce8;
  background: linear-gradient(180deg, #fff, #f3f6fb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-weight: 900;
}

/* SIDEB0X VARYANT */
.sidebox--accent {
  background: linear-gradient(
    180deg,
    rgba(255, 176, 0, 0.14),
    rgba(255, 255, 255, 0)
  );
  border-color: rgba(255, 176, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .twocol {
    grid-template-columns: 1fr;
  }
  .side {
    position: static;
  }
  .form__grid {
    grid-template-columns: 1fr;
  }
  .infogrid {
    grid-template-columns: 1fr;
  }
}

.pager {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pager__btn {
  text-decoration: none;
  font-weight: 1000;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--navy);
}
.pager__btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.pager__info {
  font-weight: 1000;
  color: #22324a;
}
/* MARKALAR */
.brandgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.brandcard {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(11, 31, 59, 0.05);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.brandcard:hover {
  transform: translateY(-2px);
  border-color: #d4dce8;
}
.brandcard__logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f3f6fb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  color: var(--navy);
}
.brandcard__name {
  font-weight: 1000;
  color: #22324a;
}
@media (max-width: 980px) {
  .brandgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .brandgrid {
    grid-template-columns: 1fr;
  }
}

/* Ana sayfa CTA */
.cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(11, 31, 59, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
