/* =========================================================
   SONIX - TEKNİK SERVİS SAYFASI
   WEB TASARIM SAYFASINA YAKIN, DAHA PREMIUM VE DAHA SOFT
   ========================================================= */

.sonix-tech-page {
  background:
    radial-gradient(circle at top left, rgba(39, 92, 182, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(95, 84, 190, 0.05), transparent 30%),
    linear-gradient(180deg, #071019 0%, #0b1118 45%, #0a0f15 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* =========================
   ORTAK
========================= */

.sonix-tech-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9bbdff;
}

.sonix-tech-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(to right, rgba(88, 131, 219, 0.9), transparent);
}

.sonix-tech-heading {
  max-width: 820px;
  margin: 0 auto 56px;
}

.sonix-tech-heading--center {
  text-align: center;
}

.sonix-tech-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.sonix-tech-heading h2 span {
  background: linear-gradient(90deg, #cddcff 0%, #9ab8ff 55%, #a695ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sonix-tech-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.85;
  font-size: 1rem;
}

/* =========================
   BUTON
========================= */

.sonix-tech-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sonix-tech-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #234b9c 0%, #315fba 58%, #4d64c6 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 30px rgba(15, 29, 59, 0.28);
}

.sonix-tech-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(15, 29, 59, 0.34);
}

.sonix-tech-btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.sonix-tech-btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(132, 161, 222, 0.22);
}

/* =========================
   HERO
========================= */

.sonix-tech-hero {
  padding: 68px 0 94px;
}

.sonix-tech-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.sonix-tech-hero__content {
  max-width: 660px;
}

.sonix-tech-hero__title {
  margin: 0 0 22px;
  font-size: clamp(2.45rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.sonix-tech-hero__title span {
  background: linear-gradient(90deg, #dce6ff 0%, #9db7ff 58%, #a392ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sonix-tech-hero__text {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
  font-size: 1.03rem;
}

.sonix-tech-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.sonix-tech-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sonix-tech-hero__badges span {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

/* =========================
   HERO KARTLAR
========================= */

.sonix-tech-hero-cards {
  display: grid;
  gap: 18px;
}

.sonix-tech-hero-cards__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sonix-tech-hero-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sonix-tech-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sonix-tech-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 45%);
  pointer-events: none;
}

.sonix-tech-hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 135, 190, 0.18);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(70, 95, 160, 0.08);
}

.sonix-tech-hero-card--large {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 84% 12%, rgba(88, 136, 220, 0.14), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(74, 102, 179, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(20, 33, 63, 0.96), rgba(12, 18, 33, 0.99));
}

.sonix-tech-hero-card--large::before {
  background:
    linear-gradient(135deg, rgba(112, 150, 220, 0.06), transparent 40%),
    linear-gradient(315deg, rgba(138, 118, 255, 0.03), transparent 44%);
}

.sonix-tech-hero-card--small {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top left, rgba(86, 128, 210, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(118, 104, 210, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(18, 29, 55, 0.96), rgba(12, 17, 31, 0.99));
}

.sonix-tech-hero-card--small::before {
  background:
    linear-gradient(135deg, rgba(105, 145, 218, 0.05), transparent 40%),
    linear-gradient(315deg, rgba(145, 124, 230, 0.03), transparent 42%);
}

.sonix-tech-hero-card--wide {
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 16% 82%, rgba(82, 120, 205, 0.12), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(128, 108, 220, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(18, 30, 57, 0.96), rgba(12, 17, 31, 0.99));
}

.sonix-tech-hero-card--wide::before {
  background:
    linear-gradient(135deg, rgba(98, 136, 212, 0.05), transparent 38%),
    linear-gradient(315deg, rgba(140, 120, 225, 0.04), transparent 42%);
}

.sonix-tech-hero-card h3,
.sonix-tech-hero-card h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.sonix-tech-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.sonix-tech-hero-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.sonix-tech-hero-card__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
}

/* =========================
   SERVICES
========================= */

.sonix-tech-services {
  padding: 0 0 112px;
}

.sonix-tech-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sonix-tech-service {
  position: relative;
  padding: 32px 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sonix-tech-service::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sonix-tech-service:nth-child(1),
.sonix-tech-service--featured {
  background:
    radial-gradient(circle at top right, rgba(94, 135, 214, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(74, 98, 180, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(18, 31, 58, 0.96), rgba(12, 17, 31, 0.99));
}

.sonix-tech-service:nth-child(2) {
  background:
    radial-gradient(circle at top left, rgba(92, 132, 208, 0.11), transparent 34%),
    radial-gradient(circle at bottom right, rgba(122, 104, 215, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(18, 29, 55, 0.96), rgba(12, 17, 31, 0.99));
}

.sonix-tech-service:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(88, 128, 206, 0.11), transparent 34%),
    radial-gradient(circle at bottom left, rgba(120, 102, 210, 0.05), transparent 40%),
    linear-gradient(180deg, rgba(18, 29, 55, 0.96), rgba(12, 17, 31, 0.99));
}

.sonix-tech-service:nth-child(4) {
  background:
    radial-gradient(circle at top left, rgba(92, 132, 206, 0.10), transparent 36%),
    radial-gradient(circle at bottom right, rgba(126, 106, 214, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(18, 29, 54, 0.96), rgba(12, 17, 30, 0.99));
}

.sonix-tech-service:nth-child(5) {
  background:
    radial-gradient(circle at top right, rgba(90, 130, 204, 0.11), transparent 34%),
    radial-gradient(circle at bottom left, rgba(128, 108, 216, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(18, 29, 54, 0.96), rgba(12, 17, 30, 0.99));
}

.sonix-tech-service:nth-child(6) {
  background:
    radial-gradient(circle at top left, rgba(90, 128, 202, 0.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(124, 106, 212, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(18, 29, 54, 0.96), rgba(12, 17, 30, 0.99));
}

.sonix-tech-service:hover {
  transform: translateY(-7px);
  border-color: rgba(103, 129, 185, 0.20);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(70, 95, 160, 0.07);
}

.sonix-tech-service__top {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.sonix-tech-service__tag {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(60, 97, 178, 0.95), rgba(84, 92, 186, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #eef4ff;
  font-weight: 700;
  transition: 0.35s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(18, 30, 60, 0.24);
}

.sonix-tech-service:hover .sonix-tech-service__tag {
  transform: scale(1.04);
}

.sonix-tech-service h3 {
  margin: 0;
  font-size: 1.16rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.sonix-tech-service p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* =========================
   VALUE
========================= */

.sonix-tech-value {
  padding: 0 0 112px;
}

.sonix-tech-value__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.sonix-tech-value__content h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.sonix-tech-value__content h2 span {
  color: #9d92ff;
}

.sonix-tech-value__content p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.9;
}

.sonix-tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.sonix-tech-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.sonix-tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7da4ef, #8f84ec);
}

.sonix-tech-value__cards {
  display: grid;
  gap: 18px;
}

.sonix-tech-mini-card {
  padding: 26px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(88, 124, 198, 0.08), transparent 42%),
    radial-gradient(circle at bottom right, rgba(124, 108, 205, 0.04), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.3s ease;
}

.sonix-tech-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 127, 184, 0.18);
}

.sonix-tech-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: #ffffff;
}

.sonix-tech-mini-card span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

/* =========================
   PROCESS
========================= */

.sonix-tech-process {
  padding: 0 0 112px;
}

.sonix-tech-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sonix-tech-step {
  padding: 28px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(86, 124, 196, 0.07), transparent 40%),
    radial-gradient(circle at bottom right, rgba(118, 104, 198, 0.03), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.35s ease;
}

.sonix-tech-step:hover {
  transform: translateY(-5px);
  border-color: rgba(100, 123, 180, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.sonix-tech-step__no {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #274d97, #4c5ebb);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(18, 30, 60, 0.22);
}

.sonix-tech-step h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: #ffffff;
}

.sonix-tech-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  line-height: 1.75;
}

/* =========================
   CTA
========================= */

.sonix-tech-cta {
  padding: 0 0 112px;
}

.sonix-tech-cta__box {
  text-align: center;
  padding: 58px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(84, 120, 198, 0.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(122, 108, 208, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.sonix-tech-cta__box h2 {
  max-width: 860px;
  margin: 0 auto 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.sonix-tech-cta__box p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.85;
}

.sonix-tech-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .sonix-tech-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .sonix-tech-hero__grid,
  .sonix-tech-value__grid {
    grid-template-columns: 1fr;
  }

  .sonix-tech-hero__content {
    max-width: none;
    text-align: center;
  }

  .sonix-tech-hero__actions,
  .sonix-tech-hero__badges {
    justify-content: center;
  }

  .sonix-tech-hero__visual {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .sonix-tech-hero {
    padding: 54px 0 64px;
  }

  .sonix-tech-hero__title {
    font-size: 2.3rem;
  }

  .sonix-tech-services__grid,
  .sonix-tech-hero-cards__row,
  .sonix-tech-process__grid {
    grid-template-columns: 1fr;
  }

  .sonix-tech-btn--primary,
  .sonix-tech-btn--ghost {
    width: 100%;
  }

  .sonix-tech-cta__box {
    padding: 44px 22px;
    border-radius: 22px;
  }
}