:root {
  --colors-primary-500: #4e0052;
  --colors-primary-600: #3e0042;
  --colors-secondary-50: #fff1fb;
  --colors-secondary-100: #ffdbf4;
  --colors-secondary-500: #ff0db6;
  --colors-basic-100: #ffffff;
  --colors-basic-200: #fafafa;
  --colors-basic-300: #f5f5f5;
  --colors-basic-500: #e0e0e0;
  --colors-basic-700: #9e9e9e;
  --colors-basic-1100: #212121;
  --colors-light-pink-100: #fff8ff;
  --colors-success-500: #4caf50;
  --colors-white-100: #ffffff;
  --font-size-1: 26px;
  --font-size-2: 22px;
  --font-size-3: 18px;
  --font-size-4: 16px;
  --font-size-6: 14px;
  --radius-rd-16: 16px;
  --radius-rd-32: 32px;
  --spacing-sp-16: 16px;
  --spacing-sp-32: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--colors-basic-100);
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

/* -------------------------------------------------------------------------- */
/* Banner — Desktop                                                           */
/* -------------------------------------------------------------------------- */

.banner {
  width: 100%;
  min-height: 650px;
  background-color: var(--colors-primary-500);
  background-image: url("../images/d-stabil-internet-banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner .img {
  display: none;
}

.banner .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 650px;
  padding: 110px 86px 64px;
}

.banner .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 512px;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.banner h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  color: var(--colors-basic-100);
  width: 100%;
}

.banner .subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: var(--font-size-1);
  line-height: 32px;
  color: var(--colors-secondary-500);
  width: 100%;
}

.banner .body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--colors-basic-100);
  width: 100%;
}

.banner .body strong,
.banner .promo-hint strong {
  font-weight: 700;
}

.promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.text-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  padding: 16px;
  background-color: var(--colors-basic-100);
  border: 1px solid var(--colors-secondary-500);
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.text-buttons:hover {
  background-color: var(--colors-light-pink-100);
}

.promo-code {
  flex: 1 0 0;
  min-width: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--colors-basic-1100);
  text-align: left;
}

.kopyala {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-6);
  line-height: 22px;
  color: var(--colors-primary-500);
  white-space: nowrap;
  transition: color 0.2s ease-in-out;
}

.text-buttons:hover .kopyala {
  color: var(--colors-primary-600);
}

.text-buttons.is-copied .kopyala {
  color: var(--colors-success-500);
}

.copy {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.promo-hint {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--colors-basic-100);
  width: 100%;
}

.banner-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.large-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 12px 24px;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: var(--font-size-4);
  line-height: 26px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.large-button--white-bg {
  background-color: var(--colors-basic-100);
  color: var(--colors-primary-500);
  border: none;
}

.large-button--white-bg:hover {
  background-color: var(--colors-light-pink-100);
}

.large-button--white-bg:active {
  background-color: var(--colors-basic-100);
}

.large-button--transparent {
  background-color: transparent;
  color: var(--colors-basic-100);
  border: 1px solid var(--colors-basic-100);
}

.large-button--transparent:hover {
  background-color: transparent;
  color: var(--colors-basic-100);
}

/* -------------------------------------------------------------------------- */
/* Shared content blocks                                                      */
/* -------------------------------------------------------------------------- */

.fixed-aspect-ratio-spacer {
  position: relative;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  aspect-ratio: 630 / 420;
  border-radius: var(--radius-rd-32);
  overflow: clip;
}

.fixed-aspect-ratio-spacer__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-rd-32);
}

.sorgu-text {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  padding: 32px;
}

.sorgu-text__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.sorgu-text h2,
.features-slider__header h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: var(--font-size-2);
  line-height: 30px;
  color: var(--colors-primary-500);
}

.sorgu-text .body,
.features-slider__header .body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--colors-basic-1100);
  width: 100%;
}

.footnote-ref {
  font-size: 9.03px;
  line-height: 22px;
  vertical-align: super;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--colors-basic-1100);
}

.bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url("../images/icon-dot-24.svg") center / 24px 24px no-repeat;
}

/* -------------------------------------------------------------------------- */
/* what-changed-with-turknet — Desktop                                        */
/* -------------------------------------------------------------------------- */

.what-changed-with-turknet {
  width: 100%;
  background-color: var(--colors-white-100);
}

.what-changed-with-turknet .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 64px 76px 32px;
}

/* -------------------------------------------------------------------------- */
/* just-like-you-dreamt — Desktop                                             */
/* -------------------------------------------------------------------------- */

.just-like-you-dreamt {
  width: 100%;
  background-color: var(--colors-white-100);
}

.just-like-you-dreamt .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 76px;
}

/* -------------------------------------------------------------------------- */
/* features-slider — Desktop                                                  */
/* -------------------------------------------------------------------------- */

.features-slider {
  width: 100%;
  background-color: var(--colors-basic-100);
  overflow: hidden;
}

.features-slider .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 32px 76px 64px;
}

.features-slider__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.features-slider__header h2 {
  max-width: 644px;
}

.features-slider__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.features-slider__track::-webkit-scrollbar {
  display: none;
}

.features-slider__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.features-slider .card-row {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: center;
  gap: var(--spacing-sp-32);
  width: 380px;
  padding: 32px;
  background-color: var(--colors-basic-100);
  border: 1px solid var(--colors-basic-300);
  border-radius: 32px;
  scroll-snap-align: start;
}

.card-row__content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.card-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--colors-secondary-50);
  border: 0.8px solid var(--colors-secondary-100);
  border-radius: var(--radius-rd-16);
}

.card-row__icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.features-slider .card-row h3 {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: var(--font-size-3);
  line-height: 28px;
  color: var(--colors-primary-500);
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* faq — Desktop                                                              */
/* -------------------------------------------------------------------------- */

.faq {
  width: 100%;
  background-color: var(--colors-basic-200);
}

.faq .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.soru-cevap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 848px;
  padding: 32px 16px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 0 16px 8px;
  text-align: center;
}

.faq-header__title {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: var(--font-size-2);
  line-height: 30px;
  color: var(--colors-primary-500);
}

.faq-header__subtitle {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--colors-basic-700);
}

.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--colors-basic-500);
}

.faq-item--last {
  border-bottom: none;
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 16px 0;
  list-style: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

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

.faq-item__summary::marker {
  content: "";
}

.faq-item__summary:hover {
  opacity: 0.8;
}

.faq-item__question {
  flex: 1 0 0;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--colors-primary-500);
  text-align: left;
}

.faq-item__icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--colors-primary-500);
  transition: transform 0.2s ease;
}

.faq-item__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--colors-basic-1100);
}

.faq-item__answer p + p,
.faq-item__answer p + ul,
.faq-item__answer ul + p {
  margin-top: 12px;
}

.faq-item__answer ul {
  padding-left: 1.25em;
}

.faq-item__answer li + li {
  margin-top: 8px;
}

.faq-item__answer:empty {
  display: none;
}

/* -------------------------------------------------------------------------- */
/* footnotes — Desktop                                                        */
/* -------------------------------------------------------------------------- */

.footnotes {
  width: 100%;
  background-color: var(--colors-basic-100);
}

.footnotes .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: var(--spacing-sp-32) 76px;
}

.footnotes__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  border-radius: 32px;
}

.footnotes__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-6);
  line-height: 22px;
  color: var(--colors-basic-700);
}

.footnotes__number {
  flex-shrink: 0;
  white-space: nowrap;
}

.footnotes__text {
  flex: 1 0 0;
  min-width: 0;
}

/* -------------------------------------------------------------------------- */
/* Banner — Mobile                                                            */
/* -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .banner {
    min-height: unset;
    background-image: none;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden;
  }

  .banner .container {
    min-height: unset;
    padding: 0;
  }

  .banner .img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: 487px;
    overflow: hidden;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .banner .img img {
    display: block;
    width: 121.75%;
    height: 100%;
    margin-left: -10.88%;
    margin-top: 9.75%;
    object-fit: cover;
  }

  .banner .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .banner .text {
    max-width: none;
    padding: 16px 16px 24px;
    gap: 24px;
  }

  .banner .promo {
    margin-top: 8px;
  }

  .banner h1 {
    font-size: var(--font-size-1);
    line-height: 32px;
  }

  .banner .subtitle {
    font-size: var(--font-size-3);
    line-height: 28px;
  }

  .promo-code {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: var(--font-size-4);
    line-height: 26px;
  }

  .banner-buttons {
    flex-direction: column;
    gap: 0;
  }

  .large-button--white-bg {
    width: 100%;
  }

  .large-button--transparent {
    display: none;
  }

  /* what-changed / just-like — Mobile */
  .what-changed-with-turknet .container,
  .just-like-you-dreamt .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .what-changed-with-turknet .fixed-aspect-ratio-spacer,
  .just-like-you-dreamt .fixed-aspect-ratio-spacer {
    flex: none;
    width: calc(100% - 32px);
    margin: 32px 16px 0;
    aspect-ratio: 390 / 250;
  }

  .just-like-you-dreamt .fixed-aspect-ratio-spacer {
    order: -1;
  }

  .what-changed-with-turknet .sorgu-text,
  .just-like-you-dreamt .sorgu-text {
    padding: 16px 16px 24px;
  }

  .bullet-list li {
    align-items: flex-start;
  }

  .bullet-list li::before {
    margin-top: 0;
  }

  /* features-slider — Mobile */
  .features-slider .container {
    gap: 16px;
    padding: 32px 16px;
  }

  .features-slider__track {
    gap: 16px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .features-slider .card-row {
    width: 300px;
    padding: 16px;
  }

  /* faq — Mobile */
  .soru-cevap {
    max-width: none;
    padding: 24px 16px;
  }

  /* footnotes — Mobile */
  .footnotes .container {
    gap: 24px;
    padding: var(--spacing-sp-16) 16px;
  }
}
