/* Ticimax mobil uygulama — IGY tema token’ları üzerine ek düzen */

.tm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.tm-hero-copy h1 {
  max-width: 18ch;
}

.tm-phone {
  display: flex;
  justify-content: center;
  padding: 12px 0 8px;
}

.tm-phone-frame {
  width: min(280px, 100%);
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(107, 142, 255, 0.35), rgba(0, 46, 149, 0.55));
  border: 1px solid var(--line-2);
  box-shadow: 0 24px 60px -24px rgba(0, 46, 149, 0.7);
}

.tm-phone-notch {
  width: 38%;
  height: 10px;
  margin: 4px auto 8px;
  border-radius: 999px;
  background: rgba(6, 7, 12, 0.85);
}

.tm-phone-screen {
  height: calc(100% - 22px);
  border-radius: 26px;
  background: #0b1020;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--faint);
}

.tm-phone-banner {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 45%, transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.tm-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

.tm-phone-grid span {
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(107, 142, 255, 0.18), rgba(20, 23, 40, 0.8));
  border: 1px solid var(--line);
}

.tm-phone-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 46, 149, 0.45);
  border: 1px solid var(--line-2);
  font-size: 13px;
}

.tm-phone-cart b {
  font-weight: 500;
}

.tm-phone-cart span {
  color: var(--peri);
}

.tm-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 12, 22, 0.5);
}

.tm-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tm-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tm-list li {
  color: var(--dim);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.tm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peri);
}

.tm-list strong {
  color: var(--ink);
  font-weight: 500;
}

.tm-compare {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.tm-compare-head,
.tm-compare-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 12px;
  padding: 18px 22px;
}

.tm-compare-head {
  background: rgba(0, 46, 149, 0.22);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
}

.tm-compare-row {
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
}

.tm-compare-row strong {
  color: var(--ink);
  font-weight: 500;
}

.tm-faq-wrap {
  max-width: 760px;
}

.tm-faq {
  display: grid;
  gap: 0;
}

.tm-faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.tm-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.tm-faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

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

.tm-faq summary::after {
  content: "+";
  color: var(--peri);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  flex: none;
}

.tm-faq details[open] summary::after {
  content: "–";
}

.tm-faq p {
  margin-top: 10px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.7;
}

html[data-theme="light"] .tm-phone-screen {
  background: #f4f6fc;
}

html[data-theme="light"] .tm-phone-banner {
  color: #002e95;
}

@media (max-width: 900px) {
  .tm-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tm-phone-frame {
    width: min(240px, 70vw);
  }

  .tm-compare-head,
  .tm-compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tm-compare-head span:first-child,
  .tm-compare-head span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 640px) {
  .tm-hero-copy h1 {
    max-width: none;
  }
}
