/* =========================================================
   DIRLIKLI SIGORTA
   HOME.CSS
   ANA SAYFA ÖZEL STİLLERİ
   ========================================================= */


/* =========================================================
   1. HOME TEMEL
   ========================================================= */

.dirlikli-home {
  width: 100%;
  overflow: hidden;

  color: var(--ink);
  background: var(--surface);
}

.dirlikli-home *,
.dirlikli-home *::before,
.dirlikli-home *::after {
  box-sizing: border-box;
}

.dh-container {
  width: min(
    1480px,
    calc(100% - 72px)
  );

  margin-inline: auto;
}

.dh-section {
  padding: 92px 0;
}


/* =========================================================
   2. ORTAK HOME BAŞLIKLARI
   ========================================================= */

.dh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;

  color: var(--brand);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dh-eyebrow::before {
  content: "";

  width: 30px;
  height: 2px;

  flex: 0 0 auto;

  border-radius: 999px;

  background: currentColor;
}

.dh-heading {
  margin: 0;

  color: var(--gray-dark);

  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.08;

  letter-spacing: -0.035em;

  font-weight: 800;
}

.dh-description {
  max-width: 720px;

  margin: 18px 0 0;

  color: var(--text);

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   3. HOME BUTONLARI
   ========================================================= */

.dh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 52px;

  padding: 13px 25px;

  border: 1px solid var(--brand);
  border-radius: 12px;

  background: var(--brand);
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;

  cursor: pointer;

  box-shadow: var(--shadow-brand);

  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.dh-button:hover,
.dh-button:focus-visible {
  transform: translateY(-2px);

  color: #ffffff;

  background: var(--brand-dark);
  border-color: var(--brand-dark);

  box-shadow:
    0 16px 34px -10px
    rgba(0, 128, 139, 0.35);
}

.dh-button-outline {
  color: var(--gray-dark);

  background: #ffffff;

  border-color: var(--line);

  box-shadow: none;
}

.dh-button-outline:hover,
.dh-button-outline:focus-visible {
  color: var(--brand-dark);

  background: var(--brand-soft);

  border-color:
    rgba(0, 168, 181, 0.30);

  box-shadow: none;
}


/* =========================================================
   4. HERO
   ========================================================= */

.dh-hero {
  padding: 32px 0 54px;

  background: #ffffff;
}

.dh-hero-shell {
  position: relative;
}

.dh-hero-slider {
  position: relative;

  min-height: 610px;

  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--gray-dark);

  box-shadow: var(--shadow);
}

.dh-hero-slide {
  position: absolute;
  inset: 0;

  min-height: 610px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.dh-hero-slide.active {
  position: relative;

  opacity: 1;
  visibility: visible;
}

.dh-hero-bg {
  position: absolute;
  inset: 0;
}

.dh-hero-bg picture {
  display: block;

  width: 100%;
  height: 100%;
}

.dh-hero-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.dh-hero-fallback {
  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      115deg,
      var(--gray-dark) 0%,
      var(--gray) 42%,
      var(--brand) 100%
    );
}

.dh-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(52, 52, 52, 0.96) 0%,
      rgba(52, 52, 52, 0.88) 31%,
      rgba(52, 52, 52, 0.55) 57%,
      rgba(52, 52, 52, 0.10) 100%
    );
}

.dh-hero-inner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  min-height: 610px;

  padding: 72px 76px;
}

.dh-hero-content {
  width: min(700px, 56%);
}

.dh-hero-kicker {
  display: block;

  margin-bottom: 15px;

  color: var(--brand-soft);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dh-hero-title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.01;

  letter-spacing: -0.045em;

  font-weight: 800;
}

.dh-hero-text {
  max-width: 620px;

  margin: 21px 0 0;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 17px;
  line-height: 1.75;
}

.dh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 31px;
}

.dh-hero-actions .dh-button-outline {
  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.08);

  border-color:
    rgba(255, 255, 255, 0.42);
}

.dh-hero-actions .dh-button-outline:hover,
.dh-hero-actions .dh-button-outline:focus-visible {
  color: var(--gray-dark);

  background: #ffffff;

  border-color: #ffffff;
}


/* =========================================================
   5. HERO OKLARI
   ========================================================= */

.dh-slider-arrow {
  position: absolute;

  z-index: 10;

  top: 50%;

  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  margin-top: -23px;

  padding: 0;

  border: 0;
  border-radius: 11px;

  background: var(--gray-dark);
  color: #ffffff;

  font-size: 25px;

  cursor: pointer;

  box-shadow: var(--shadow-soft);

  transition:
    transform 180ms ease,
    background 180ms ease;
}

.dh-slider-arrow:hover {
  transform: scale(1.05);

  background: var(--brand);
}

.dh-slider-prev {
  left: -23px;
}

.dh-slider-next {
  right: -23px;
}


/* =========================================================
   6. HERO DOTS
   ========================================================= */

.dh-slider-dots {
  position: absolute;

  z-index: 10;

  left: 50%;
  bottom: 22px;

  display: flex;
  gap: 7px;

  transform: translateX(-50%);
}

.dh-slider-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.50);

  cursor: pointer;

  transition:
    width 180ms ease,
    background 180ms ease;
}

.dh-slider-dot.active {
  width: 30px;

  background: #ffffff;
}


/* =========================================================
   7. TEKLİF / TANITIM ALANI
   ========================================================= */

.dh-offer {
  padding: 72px 0 84px;

  background: #ffffff;
}

.dh-offer-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    280px
    430px;

  gap: 38px;

  align-items: start;
}

.dh-offer-copy {
  padding: 14px 10px 0 0;
}

.dh-offer-copy h2 {
  max-width: 690px;

  margin: 8px 0 0;

  color: var(--gray-dark);

  font-size: clamp(36px, 3.3vw, 52px);
  line-height: 1.1;

  letter-spacing: -0.04em;

  font-weight: 800;
}

.dh-offer-copy p {
  max-width: 700px;

  margin: 18px 0 0;

  color: var(--text);

  line-height: 1.85;
}


/* =========================================================
   8. TEKLİF ALANI KÜÇÜK AVANTAJLAR
   ========================================================= */

.dh-trust-row {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 14px;

  margin-top: 36px;
}

.dh-trust-item {
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 13px;

  background: var(--surface-alt);
}

.dh-trust-icon {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  margin-bottom: 12px;

  border-radius: 10px;

  background: var(--brand-soft);
  color: var(--brand);

  font-size: 17px;
  font-weight: 900;
}

.dh-trust-item strong {
  display: block;

  color: var(--gray-dark);

  font-size: 13px;
  line-height: 1.45;
}


/* =========================================================
   9. ÜRÜN SEÇİM TABLARI
   ========================================================= */

.dh-product-tabs {
  display: grid;

  gap: 9px;

  align-content: start;
}

.dh-product-tab {
  width: 100%;

  min-height: 53px;

  padding: 12px 13px;

  border: 0;
  border-radius: 6px;

  background: var(--gray-dark);
  color: #ffffff;

  font-size: 13px;
  font-weight: 800;

  text-align: center;

  cursor: pointer;

  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.dh-product-tab:hover,
.dh-product-tab.active {
  background: var(--brand);

  transform: translateX(4px);

  box-shadow: var(--shadow-brand);
}


/* =========================================================
   10. TEKLİF FORMU
   ========================================================= */

.dh-quote-card {
  align-self: start;

  padding: 29px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: #ffffff;

  box-shadow: var(--shadow);
}

.dh-quote-card h3 {
  margin: 0;

  color: var(--gray-dark);

  font-size: 24px;
  line-height: 1.2;
}

.dh-quote-sub {
  margin: 7px 0 21px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.55;
}

.dh-form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;
}

.dh-field-full {
  grid-column: 1 / -1;
}

.dh-dynamic-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dh-field label {
  display: block;

  margin-bottom: 5px;

  color: var(--gray-dark);

  font-size: 11px;
  font-weight: 800;
}

.dh-field input,
.dh-field select,
.dh-field textarea {
  width: 100%;

  border: 1px solid var(--line);
  border-radius: 8px;

  outline: none;

  background: #ffffff;
  color: var(--text);

  font-size: 12px;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.dh-field input,
.dh-field select {
  height: 44px;

  padding: 0 11px;
}

.dh-field textarea {
  min-height: 74px;

  padding: 10px 11px;

  resize: vertical;
}

.dh-field input:focus,
.dh-field select:focus,
.dh-field textarea:focus {
  border-color: var(--brand);

  box-shadow:
    0 0 0 3px
    rgba(0, 168, 181, 0.09);
}

.dh-consent {
  display: flex;
  gap: 8px;

  margin: 14px 0;

  color: var(--text);

  font-size: 10px;
  line-height: 1.45;
}

.dh-consent input {
  margin-top: 2px;
}

.dh-quote-submit {
  width: 100%;
}


/* =========================================================
   11. SİGORTA ÜRÜNLERİ
   ========================================================= */

.dh-products {
  background: var(--surface-alt);
}

.dh-products-head {
  display: grid;

  grid-template-columns:
    1fr 0.75fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 42px;
}

.dh-products-head .dh-description {
  margin: 0;
}

.dh-product-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.dh-product-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 300px;

  padding: 28px;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: #ffffff;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.dh-product-card::after {
  content: "";

  position: absolute;

  width: 110px;
  height: 110px;

  top: -60px;
  right: -55px;

  border-radius: 50%;

  background:
    rgba(0, 168, 181, 0.06);

  pointer-events: none;
}

.dh-product-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(0, 168, 181, 0.28);

  box-shadow: var(--shadow);
}

.dh-product-icon {
  display: grid;
  place-items: center;

  width: 56px;
  height: 56px;

  margin-bottom: 24px;

  overflow: hidden;

  border-radius: 14px;

  background: var(--brand-soft);
  color: var(--brand);

  font-size: 22px;
  font-weight: 900;
}

.dh-product-icon img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.dh-product-card h3 {
  margin: 0 0 11px;

  color: var(--gray-dark);

  font-size: 20px;
}

.dh-product-card p {
  margin: 0 0 24px;

  color: var(--text);

  font-size: 13px;
  line-height: 1.75;
}

.dh-product-link {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: auto;

  color: var(--brand-dark);

  font-size: 13px;
  font-weight: 800;
}

.dh-product-link span {
  transition:
    transform 180ms ease;
}

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

.dh-products-bottom {
  margin-top: 35px;

  text-align: center;
}


/* =========================================================
   12. AVANTAJLAR
   ========================================================= */

.dh-benefits {
  background: #ffffff;
}

.dh-benefits-grid {
  display: grid;

  grid-template-columns:
    0.72fr 1.28fr;

  gap: 70px;

  align-items: center;
}

.dh-benefits-copy {
  max-width: 580px;
}

.dh-benefit-cards {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 16px;
}

.dh-benefit-card {
  padding: 27px;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: var(--surface-alt);

  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.dh-benefit-card:hover {
  transform: translateY(-3px);

  border-color:
    rgba(0, 168, 181, 0.25);

  background: var(--brand-soft);

  box-shadow: var(--shadow-soft);
}

.dh-benefit-icon {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  margin-bottom: 18px;

  border-radius: 13px;

  background: #ffffff;
  color: var(--brand);

  box-shadow: var(--shadow-soft);

  font-weight: 900;
}

.dh-benefit-card h3 {
  margin: 0 0 8px;

  color: var(--gray-dark);

  font-size: 17px;
}

.dh-benefit-card p {
  margin: 0;

  color: var(--text);

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   13. ANLAŞMALI ŞİRKETLER
   ========================================================= */

.dh-partners {
  background: var(--gray-dark);
}

.dh-partners .dh-eyebrow {
  color: var(--brand);
}

.dh-partners .dh-heading {
  color: #ffffff;
}

.dh-partners .dh-description {
  color:
    rgba(255, 255, 255, 0.68);
}

.dh-centered {
  max-width: 760px;

  margin:
    0 auto 42px;

  text-align: center;
}

.dh-centered .dh-eyebrow {
  justify-content: center;
}

.dh-centered .dh-description {
  margin-inline: auto;
}

.dh-partner-grid {
  display: grid;

  grid-template-columns:
    repeat(6, 1fr);

  gap: 12px;
}

.dh-partner-card {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100px;

  padding: 15px;

  border:
    1px solid
    rgba(255, 255, 255, 0.10);

  border-radius: 13px;

  background: #ffffff;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.dh-partner-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 16px 34px
    rgba(0, 0, 0, 0.16);
}

.dh-partner-card img {
  max-width: 130px;
  max-height: 50px;

  object-fit: contain;
}

.dh-partner-card span {
  color: var(--gray-dark);

  font-size: 12px;
  font-weight: 800;

  text-align: center;
}


/* =========================================================
   14. İLETİŞİM / SUPPORT
   ========================================================= */

.dh-support {
  background: var(--surface-alt);
}

.dh-support-grid {
  display: grid;

  grid-template-columns:
    1fr 0.95fr;

  gap: 60px;

  align-items: stretch;
}

.dh-support-content {
  padding: 10px 0;
}

.dh-support-content p {
  max-width: 680px;

  margin: 19px 0 0;

  color: var(--text);

  line-height: 1.8;
}

.dh-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.dh-contact-panel {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;
}

.dh-contact-item {
  padding: 25px;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: #ffffff;

  box-shadow: var(--shadow-soft);

  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.dh-contact-item:hover {
  transform: translateY(-2px);

  border-color:
    rgba(0, 168, 181, 0.25);
}

.dh-contact-item small {
  display: block;

  margin-bottom: 5px;

  color: var(--muted);

  font-size: 11px;
}

.dh-contact-item strong,
.dh-contact-item a {
  color: var(--gray-dark);

  font-size: 15px;
  font-weight: 800;
}


/* =========================================================
   15. FAQ
   ========================================================= */

.dh-faq {
  background: #ffffff;
}

.dh-faq-grid {
  display: grid;

  grid-template-columns:
    0.70fr 1.30fr;

  gap: 80px;
}

.dh-faq-copy {
  position: sticky;

  top: 130px;

  align-self: start;
}

.dh-faq-list {
  display: grid;

  gap: 10px;
}

.dh-faq-list details {
  padding: 0 22px;

  border: 1px solid var(--line);
  border-radius: 12px;

  background: var(--surface-alt);

  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.dh-faq-list details[open] {
  border-color:
    rgba(0, 168, 181, 0.25);

  background: #ffffff;

  box-shadow: var(--shadow-soft);
}

.dh-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 20px 0;

  cursor: pointer;
  list-style: none;

  color: var(--gray-dark);

  font-size: 14px;
  font-weight: 800;
}

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

.dh-faq-list summary span {
  display: grid;
  place-items: center;

  width: 28px;
  height: 28px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--brand-soft);
  color: var(--brand);

  transition:
    transform 180ms ease;
}

.dh-faq-list details[open]
summary span {
  transform: rotate(45deg);
}

.dh-faq-list p {
  margin: -2px 0 21px;

  color: var(--text);

  font-size: 13px;
  line-height: 1.75;
}


/* =========================================================
   16. FINAL CTA
   ========================================================= */

.dh-final {
  padding: 82px 0;

  background: var(--brand);
}

.dh-final-inner {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 55px;

  align-items: center;
}

.dh-final h2 {
  max-width: 760px;

  margin: 0;

  color: #ffffff;

  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.1;

  letter-spacing: -0.035em;
}

.dh-final p {
  max-width: 700px;

  margin: 15px 0 0;

  color:
    rgba(255, 255, 255, 0.80);

  line-height: 1.7;
}

.dh-final-actions {
  display: grid;

  gap: 10px;

  min-width: 220px;
}

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

.dh-final-actions
.dh-button:first-child {
  color: var(--brand-dark);

  background: #ffffff;

  border-color: #ffffff;

  box-shadow: none;
}

.dh-final-actions
.dh-button-outline {
  color: #ffffff;

  background: transparent;

  border-color:
    rgba(255, 255, 255, 0.55);
}

.dh-final-actions
.dh-button-outline:hover,
.dh-final-actions
.dh-button-outline:focus-visible {
  color: var(--gray-dark);

  background: #ffffff;

  border-color: #ffffff;
}


/* =========================================================
   17. GENİŞ DESKTOP / 2K
   ========================================================= */

@media (min-width: 1700px) {

  .dh-container {
    width: min(
      1540px,
      calc(100% - 100px)
    );
  }

  .dh-hero-slider,
  .dh-hero-slide,
  .dh-hero-inner {
    min-height: 650px;
  }

  .dh-hero-inner {
    padding-inline: 90px;
  }

  .dh-offer-grid {
    grid-template-columns:
      minmax(0, 1.1fr)
      300px
      450px;
  }

}


/* =========================================================
   18. LAPTOP
   ========================================================= */

@media (max-width: 1280px) {

  .dh-container {
    width: min(
      1240px,
      calc(100% - 48px)
    );
  }

  .dh-slider-prev {
    left: 14px;
  }

  .dh-slider-next {
    right: 14px;
  }

  .dh-offer-grid {
    grid-template-columns:
      minmax(0, 1fr)
      240px
      390px;

    gap: 26px;
  }

  .dh-partner-grid {
    grid-template-columns:
      repeat(4, 1fr);
  }

}


/* =========================================================
   19. TABLET LANDSCAPE
   ========================================================= */

@media (max-width: 1050px) {

  .dh-offer-grid {
    grid-template-columns:
      1fr 320px;
  }

  .dh-offer-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .dh-quote-card {
    grid-column: 2;
    grid-row: 1;
  }

  .dh-product-tabs {
    grid-column: 1 / -1;
    grid-row: 2;

    grid-template-columns:
      repeat(3, 1fr);
  }

  .dh-product-tab:hover,
  .dh-product-tab.active {
    transform: translateY(-2px);
  }

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

  .dh-benefits-grid {
    grid-template-columns: 1fr;
  }

  .dh-benefits-copy {
    max-width: 750px;
  }

  .dh-support-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   20. TABLET
   ========================================================= */

@media (max-width: 820px) {

  .dh-container {
    width: min(
      100% - 32px,
      760px
    );
  }

  .dh-section {
    padding: 70px 0;
  }

  .dh-hero {
    padding-top: 18px;
  }

  .dh-hero-slider,
  .dh-hero-slide,
  .dh-hero-inner {
    min-height: 570px;
  }

  .dh-hero-inner {
    padding: 55px 38px;
  }

  .dh-hero-content {
    width: 85%;
  }

  .dh-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(52, 52, 52, 0.95),
        rgba(52, 52, 52, 0.70)
      );
  }

  .dh-offer-grid {
    grid-template-columns: 1fr;
  }

  .dh-offer-copy,
  .dh-product-tabs,
  .dh-quote-card {
    grid-column: auto;
    grid-row: auto;
  }

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

  .dh-quote-card {
    max-width: 620px;
  }

  .dh-products-head,
  .dh-faq-grid,
  .dh-final-inner {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .dh-products-head
  .dh-description {
    margin-top: 0;
  }

  .dh-benefit-cards {
    grid-template-columns:
      1fr 1fr;
  }

  .dh-partner-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .dh-contact-panel {
    grid-template-columns:
      1fr 1fr;
  }

  .dh-faq-copy {
    position: static;
  }

  .dh-final-actions {
    max-width: 330px;
  }

}


/* =========================================================
   21. MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .dh-container {
    width: min(
      100% - 26px,
      560px
    );
  }

  .dh-section {
    padding: 58px 0;
  }

  .dh-heading {
    font-size: 32px;
  }

  .dh-hero-slider {
    border-radius: 17px;
  }

  .dh-hero-slider,
  .dh-hero-slide,
  .dh-hero-inner {
    min-height: 590px;
  }

  .dh-hero-inner {
    align-items: flex-start;

    padding:
      60px 23px 90px;
  }

  .dh-hero-content {
    width: 100%;
  }

  .dh-hero-title {
    font-size: 41px;
  }

  .dh-hero-text {
    font-size: 15px;
  }

  .dh-hero-actions {
    display: grid;
  }

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

  .dh-slider-arrow {
    top: auto;
    bottom: 18px;
  }

  .dh-slider-prev {
    left: 17px;
  }

  .dh-slider-next {
    right: 17px;
  }

  .dh-slider-dots {
    bottom: 36px;
  }

  .dh-offer {
    padding:
      45px 0 60px;
  }

  .dh-offer-copy h2 {
    font-size: 36px;
  }

  .dh-trust-row {
    grid-template-columns: 1fr;
  }

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

  .dh-form-grid {
    grid-template-columns: 1fr;
  }

  .dh-dynamic-fields {
    grid-template-columns: 1fr;
  }

  .dh-field-full {
    grid-column: auto;
  }

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

  .dh-product-card {
    min-height: auto;
  }

  .dh-benefit-cards {
    grid-template-columns: 1fr;
  }

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

  .dh-partner-card {
    min-height: 88px;
  }

  .dh-contact-panel {
    grid-template-columns: 1fr;
  }

  .dh-support-actions {
    display: grid;
  }

  .dh-support-actions
  .dh-button {
    width: 100%;
  }

  .dh-final-actions {
    min-width: 0;
    max-width: none;
  }

}


/* =========================================================
   22. ÇOK KÜÇÜK MOBİL
   ========================================================= */

@media (max-width: 390px) {

  .dh-container {
    width:
      calc(100% - 22px);
  }

  .dh-hero-title {
    font-size: 36px;
  }

  .dh-offer-copy h2 {
    font-size: 32px;
  }

  .dh-partner-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   23. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .dh-hero-slide,
  .dh-button,
  .dh-product-tab,
  .dh-product-card,
  .dh-benefit-card,
  .dh-partner-card,
  .dh-contact-item,
  .dh-slider-arrow,
  .dh-slider-dot {
    transition: none;
  }

}
/* =========================================================
   KAMPANYALAR
   ========================================================= */

.dh-campaigns {
    background: var(--surface-alt, #f4f5f5);
}

.dh-campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.dh-campaign-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line, #e2e6e7);
    border-radius: 22px;
    box-shadow: var(--shadow-soft, 0 14px 35px rgba(24, 38, 42, .07));
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dh-campaign-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 168, 181, .28);
    box-shadow: 0 18px 42px rgba(24, 38, 42, .11);
}

.dh-campaign-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-soft, #e6f7f8), #fff);
}

.dh-campaign-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.dh-campaign-card:hover .dh-campaign-media img {
    transform: scale(1.025);
}

.dh-campaign-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 28px;
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 168, 181, .18), transparent 35%),
        linear-gradient(135deg, #f7fbfb, var(--brand-soft, #e6f7f8));
}

.dh-campaign-placeholder span {
    color: var(--brand-dark, #00808b);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dh-campaign-placeholder strong {
    max-width: 85%;
    color: var(--ink, #343434);
    font-size: 22px;
    line-height: 1.2;
}

.dh-campaign-body {
    padding: 24px;
}

.dh-campaign-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--brand-dark, #00808b);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dh-campaign-body h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.25;
}

.dh-campaign-body h3 a {
    color: var(--ink, #343434);
    text-decoration: none;
}

.dh-campaign-body p {
    min-height: 52px;
    margin: 0 0 18px;
    color: var(--text, #626262);
    line-height: 1.65;
}

@media (max-width: 980px) {
    .dh-campaign-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .dh-campaign-grid {
        grid-template-columns: 1fr;
    }

    .dh-campaign-body p {
        min-height: 0;
    }
}


/* =========================================================
   FAQ DOCUMENT
   ========================================================= */

.dh-faq-document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-top: 18px;
    margin-bottom: 18px;
    padding: 16px 18px;

    border: 1px solid rgba(0, 168, 181, 0.18);
    border-radius: 14px;

    background: #f4faf9;
}

.dh-faq-document__main {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
}

.dh-faq-document__icon {
    display: grid;

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    place-items: center;

    border-radius: 11px;

    color: #fff;
    background: var(--primary, #16846b);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.dh-faq-document__copy {
    min-width: 0;
}

.dh-faq-document__copy strong {
    display: block;

    color: var(--ink, #10243e);

    font-size: 13px;
    font-weight: 800;
}

.dh-faq-document__copy p {
    margin: 4px 0 0;

    color: var(--text, #667085);

    font-size: 12px;
    line-height: 1.55;
}

.dh-faq-document__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.dh-faq-document__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 7px 12px;

    border: 1px solid var(--primary, #16846b);
    border-radius: 8px;

    color: #fff;
    background: var(--primary, #16846b);

    font-size: 10px;
    font-weight: 750;

    transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.dh-faq-document__button:hover {
    background: #0f735d;
    border-color: #0f735d;
}

.dh-faq-document__button--secondary {
    color: var(--primary, #16846b);
    background: #fff;
}

.dh-faq-document__button--secondary:hover {
    color: #0f735d;
    background: #f8fbfa;
}

@media (max-width: 680px) {

    .dh-faq-document {
        align-items: stretch;
        flex-direction: column;
    }

    .dh-faq-document__actions {
        width: 100%;
    }

    .dh-faq-document__button {
        flex: 1;
    }

}