:root {
  color-scheme: dark;
  --bg: #080002;
  --panel: rgba(255, 255, 255, .055);
  --line: rgba(255, 255, 255, .13);
  --text: rgba(255, 255, 255, .86);
  --muted: rgba(255, 255, 255, .68);
  --red: #f01818;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 24, 24, .42), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(255, 192, 58, .14), transparent 22%),
    linear-gradient(150deg, #160004 0%, #2c0508 44%, #070002 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  padding: 20px 16px 40px;
}

a {
  color: #fff;
}

.wrap {
  width: min(100%, 920px);
  margin: 0 auto;
}

.topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.home-link {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.hero,
.block,
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .26);
}

.hero {
  padding: clamp(22px, 6vw, 44px);
}

.eyebrow {
  margin: 0 0 8px;
  color: #ffb6b6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.14;
}

h1 {
  font-size: clamp(28px, 8vw, 50px);
}

h2 {
  font-size: clamp(20px, 5vw, 30px);
}

h3 {
  font-size: clamp(17px, 4vw, 22px);
}

p,
li,
dd {
  font-size: clamp(15px, 3.8vw, 17px);
  line-height: 1.62;
}

p {
  margin: 0 0 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta,
.ghost {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.cta {
  background: linear-gradient(180deg, #f01818, #9f0606);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .34);
}

.cta.wa-link {
  gap: 10px;
  padding: 0 20px 0 16px;
  background: linear-gradient(180deg, #25d366, #128c7e);
  color: #fff;
  line-height: 1.16;
  text-align: left;
  box-shadow: 0 14px 30px rgba(6, 95, 70, .36), inset 0 1px rgba(255, 255, 255, .38);
}

.cta.wa-link::before {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff url("/assets/16-whatsapp-ikon-dairesi.webp?v=12") center / 112% 112% no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.block,
.faq {
  padding: 18px;
}

.block ul,
.block ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--text);
}

.info-table th,
.info-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
}

.sample-list li {
  margin-bottom: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.navgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.navgrid a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.note {
  margin-top: 16px;
  padding: 14px;
  border-left: 3px solid var(--red);
  background: rgba(240, 24, 24, .1);
  color: var(--muted);
}

dl {
  margin: 0;
}

dt {
  margin-top: 15px;
  color: #fff;
  font-weight: 900;
}

dd {
  margin: 5px 0 0;
}

.footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 640px) {
  .table-wrap {
    overflow-x: visible;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 10px;
  }

  .info-table thead {
    display: none;
  }

  .info-table tr {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    overflow: hidden;
  }

  .info-table td {
    position: relative;
    min-height: 46px;
    padding: 10px 12px 10px 118px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-table td:last-child {
    border-bottom: 0;
  }

  .info-table td::before {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 92px;
    color: #fff;
    font-weight: 900;
  }

  .info-table td:nth-child(1)::before {
    content: "Kontrol";
  }

  .info-table td:nth-child(2)::before {
    content: "Önem";
  }

  .info-table td:nth-child(3)::before {
    content: "Dikkat";
  }
}

@media (min-width: 760px) {
  body {
    padding-top: 34px;
  }

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