/* =========================================================
   SSS (FAQ) & SON CTA
   ========================================================= */

.faq-section {
  background: var(--surface-alt);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.faq-grid > div:first-child > p {
  color: var(--text);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 0 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 200ms ease;
}

.accordion details[open] {
  border-color: rgba(0, 168, 181, 0.3);
  box-shadow: var(--shadow-soft);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

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

.accordion summary span {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 22px;
  font-weight: 400;
  transition: transform 200ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion p {
  margin: -5px 0 20px;
  color: var(--text);
  font-size: 14px;
}


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

.final-cta {
  padding: 60px 0;
  color: #ffffff;
  background: var(--brand-deep);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  color: #80E5ED;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
}


/* =========================================================
   ALT SAYFALAR (LEGAL & PAGE HERO)
   ========================================================= */

.page-hero {
  padding: 90px 0 70px;
  background: var(--brand-soft);
}

.page-hero h1 {
  margin: 12px 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.page-hero p {
  max-width: 720px;
  color: var(--text);
}

.legal-content {
  padding-top: 70px;
}

.prose {
  max-width: 850px;
}

.prose h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.prose h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
}

.prose p,
.prose li {
  color: var(--text);
}

.prose a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.legal-warning {
  margin-top: 35px;
  padding: 20px;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 14px;
}


/* =========================================================
   PRODUCT LIST PAGE
   ========================================================= */

.products-page-hero {
  background: linear-gradient(
    180deg,
    var(--brand-soft) 0%,
    #ffffff 100%
  );
}

.products-page-hero p {
  max-width: 720px;
}

.products-list-section {
  background: #ffffff;
}

.products-list-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 45px;
}

.products-list-heading p {
  max-width: 480px;
  color: var(--text);
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-list-card {
  padding: 0;
  overflow: hidden;
}

.product-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-alt);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-list-card:hover .product-card-media img {
  transform: scale(1.05);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
  padding: 28px;
}

.product-card-body h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.product-card-body h2 a:hover {
  color: var(--brand-dark);
}

.product-card-body p {
  margin-bottom: 28px;
  color: var(--text);
}

.product-list-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.product-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 700;
}

.product-detail-link span {
  transition: transform 250ms ease;
}

.product-detail-link:hover span {
  transform: translateX(4px);
}

.product-quote-link {
  padding: 10px 18px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: background 200ms ease;
}

.product-quote-link:hover {
  background: var(--brand-dark);
}

.products-page-cta {
  padding: 70px 0;
  color: #ffffff;
  background: var(--brand-deep);
}

.products-page-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.products-page-cta span {
  color: #80E5ED;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.products-page-cta h2 {
  margin-top: 8px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
}

.products-page-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.products-page-phone {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.products-page-phone:hover {
  color: #80E5ED;
}


/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */

.product-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(0, 168, 181, 0.1) 0%,
      transparent 28rem
    ),
    linear-gradient(
      180deg,
      var(--surface-alt) 0%,
      #ffffff 100%
    );
}

.product-detail-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 86px solid rgba(0, 168, 181, 0.03);
  border-radius: 50%;
}

.product-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 72px;
}

.product-detail-hero-copy {
  min-width: 0;
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: all 180ms ease;
}

.product-detail-back:hover,
.product-detail-back:focus-visible {
  color: var(--brand-dark);
  transform: translateX(-3px);
}

.product-detail-hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.product-detail-lead {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.product-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.product-detail-trust div {
  padding: 16px 17px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.product-detail-trust strong,
.product-detail-trust span {
  display: block;
}

.product-detail-trust strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.product-detail-trust span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.product-detail-hero-media {
  position: relative;
  min-width: 0;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.product-detail-hero-media > img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.product-detail-placeholder {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  min-height: 400px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 48px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #0E2A38 0%,
    #004D56 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.product-detail-placeholder::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  border: 36px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.product-detail-placeholder-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--brand-dark);
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-detail-placeholder-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.product-detail-placeholder > span,
.product-detail-placeholder > small {
  position: relative;
  z-index: 1;
}

.product-detail-placeholder > span {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-detail-placeholder > small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.product-detail-content-section {
  background: #ffffff;
}

.product-detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: start;
  gap: 68px;
}

.product-detail-content h2 {
  margin: 14px 0 22px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
}

.product-detail-prose {
  max-width: 790px;
}

.product-detail-prose p,
.product-detail-prose li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.product-detail-prose p {
  margin: 0 0 18px;
}

.product-detail-prose h2,
.product-detail-prose h3,
.product-detail-prose h4 {
  color: var(--ink);
  font-weight: 800;
}

.product-detail-prose ul,
.product-detail-prose ol {
  padding-left: 22px;
}

.product-detail-contact-card {
  position: sticky;
  top: 115px;
  padding: 32px;
  overflow: hidden;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.product-detail-contact-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  background: var(--brand-soft);
  border-radius: 50%;
  opacity: 0.8;
}

.product-detail-contact-card > * {
  position: relative;
  z-index: 1;
}

.product-detail-contact-label {
  display: inline-flex;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-contact-card h2 {
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
}

.product-detail-contact-card > p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.product-detail-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.product-detail-contact-actions .button {
  width: 100%;
}

.product-detail-contact-info {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-detail-contact-info a {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.product-detail-contact-info a:hover,
.product-detail-contact-info a:focus-visible {
  color: var(--brand);
}


/* =========================================================
   ÜRÜN ÖZELLİKLERİ & BİLGİ ŞERİDİ
   ========================================================= */

.product-features-section {
  background: var(--surface-alt);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-feature-card {
  min-width: 0;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all 200ms ease;
}

.product-feature-card:hover {
  border-color: rgba(0, 168, 181, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 14px;
  font-size: 22px;
  font-weight: 900;
}

.product-feature-icon i {
  font-size: 22px;
}

.product-feature-card h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.product-feature-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.product-detail-info-strip {
  padding: 54px 0;
  color: #ffffff;
  background: var(--brand-deep);
}

.product-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-info-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.product-detail-info-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #80E5ED;
  border: 1px solid rgba(128, 229, 237, 0.3);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
}

.product-detail-info-grid h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.product-detail-info-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
}

.product-detail-faq-section {
  background: #ffffff;
}

.product-detail-faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 80px;
}

.product-detail-faq-grid h2 {
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
}

.product-detail-faq-grid > div:first-child > p {
  color: var(--text);
}

.product-detail-final-cta {
  padding: 64px 0;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand-deep) 100%
  );
}

.product-detail-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.product-detail-final-cta span {
  color: #80E5ED;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-final-cta h2 {
  max-width: 700px;
  margin: 7px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
}

.product-detail-final-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.product-detail-final-phone {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.product-detail-final-phone:hover,
.product-detail-final-phone:focus-visible {
  color: #80E5ED;
}


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

@media (max-width: 1080px) {
  .product-detail-hero-grid {
    gap: 42px;
  }

  .product-detail-content-grid {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(290px, 0.85fr);

    gap: 38px;
  }

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


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

  .note-one {
    right: 0;
  }

  .note-two {
    left: 0;
  }

  .process-grid,
  .about-grid,
  .quote-grid,
  .faq-grid {
    gap: 45px;
  }
}


@media (max-width: 992px) {
  .products-list-heading {
    display: block;
  }

  .products-list-heading p {
    margin-top: 20px;
  }

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

  .products-page-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-picture {
    width: min(580px, 100%);
  }

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

  .process-grid,
  .about-grid,
  .quote-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-copy {
    text-align: center;
  }

  .process-copy > p {
    margin-inline: auto;
  }

  .about-visual {
    min-height: 400px;
  }

  .quote-copy {
    text-align: center;
  }

  .contact-card {
    justify-content: center;
  }

  .product-detail-hero {
    padding: 76px 0 68px;
  }

  .product-detail-hero-grid,
  .product-detail-content-grid,
  .product-detail-faq-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-hero-copy {
    text-align: center;
  }

  .product-detail-back,
  .product-detail-hero-copy .eyebrow,
  .product-detail-actions {
    justify-content: center;
  }

  .product-detail-lead {
    margin-inline: auto;
  }

  .product-detail-trust {
    max-width: 720px;
    margin-inline: auto;
    margin-top: 34px;
  }

  .product-detail-hero-media {
    min-height: 420px;
  }

  .product-detail-contact-card {
    position: static;
  }

  .product-detail-info-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  html {
    scroll-padding-top: 84px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 52px 0 60px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 15px;
  }

  .hero-trust div {
    flex: 1;
    min-width: 90px;
  }

  .hero-visual {
    min-height: 400px;
    margin-inline: -8px;
  }

  .hero-main-image {
    max-height: 430px;
    border-radius: 22px;
  }

  .insurance-card {
    width: min(420px, 94%);
    padding: 22px;
  }

  .insurance-card h2 {
    font-size: 24px;
  }

  .choice-row {
    gap: 6px;
  }

  .choice {
    padding: 7px 4px;
    font-size: 10px;
  }

  .floating-note {
    transform: scale(0.88);
  }

  .note-one {
    top: 12px;
    right: -12px;
  }

  .note-two {
    bottom: 5px;
    left: -12px;
  }

  .product-grid,
  .product-list-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 270px;
  }

  .products-all-action .button {
    width: 100%;
  }

  .steps article {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }

  .steps article > span {
    width: 46px;
    height: 46px;
  }

  .about-visual {
    min-height: 340px;
  }

  .about-shield {
    width: 165px;
    height: 165px;
    padding: 30px;
  }

  .about-stat {
    right: 15px;
    bottom: 15px;
  }

  .quote-form-card {
    padding: 26px 20px;
    margin-inline: -4px;
  }

  .quote-contact-actions {
    grid-template-columns: 1fr;
  }

  .quote-email-link {
    grid-column: auto;
  }

  .contact-card {
    align-items: flex-start;
  }

  .contact-card a {
    font-size: 17px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-grid {
    gap: 30px;
  }

  .accordion details {
    padding-inline: 17px;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta .button {
    width: 100%;
  }

  .page-hero {
    padding: 68px 0 52px;
  }

  .products-page-cta h2 {
    font-size: 28px;
  }

  .products-page-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .products-page-cta-actions .button {
    width: 100%;
  }

  .product-detail-hero {
    padding: 58px 0 54px;
  }

  .product-detail-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .product-detail-lead {
    font-size: 16px;
  }

  .product-detail-actions {
    display: grid;
  }

  .product-detail-actions .button {
    width: 100%;
  }

  .product-detail-trust {
    grid-template-columns: 1fr;
  }

  .product-detail-hero-media {
    min-height: 340px;
  }

  .product-detail-placeholder {
    min-height: 330px;
    padding: 34px 22px;
    border-radius: 22px;
  }

  .product-detail-placeholder-icon {
    width: 76px;
    height: 76px;
  }

  .product-detail-placeholder-icon svg {
    width: 38px;
    height: 38px;
  }

  .product-detail-placeholder > span {
    font-size: 24px;
  }

  .product-detail-content h2 {
    font-size: 30px;
  }

  .product-detail-contact-card {
    padding: 24px 20px;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-card {
    padding: 22px;
  }

  .product-detail-info-grid article {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .product-detail-final-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .product-detail-final-actions .button {
    width: 100%;
  }

  .product-detail-final-phone {
    text-align: center;
  }
}


@media (max-width: 390px) {
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-trust div {
    min-width: 0;
  }

  .hero-trust strong {
    font-size: 14px;
  }

  .hero-trust span {
    font-size: 10px;
  }

  .insurance-card {
    transform: none;
  }

  .floating-note {
    display: none;
  }
}


/* =========================================================
   ERİŞİLEBİLİRLİK
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}