
  html {
    scroll-behavior: smooth;
  }

  .dbp-product-page {
    --blue: #0071c5;
    --blue-dark: #005a9e;
    --blue-soft: #e7f6ff;
    --graphite: #4a504e;
    --graphite-dark: #303533;
    --muted: #5f6664;
    --line: #d8dddc;
    --line-dark: #bec5c3;
    --mist: #f2f5f5;
    --white: #ffffff;
    --content: 1220px;
    --header-height: 92px;
  }

  .dbp-product-page,
  .dbp-product-page * {
    box-sizing: border-box;
  }
  .dbp-product-page {
    color: var(--graphite);
    background: var(--white);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
  }
  .dbp-product-page img {
    display: block;
    max-width: 100%;
  }
  .dbp-product-page a {
    color: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  .dbp-product-page figure {
    margin: 0;
  }

  .dbp-container {
    width: 100%;
    max-width: 1400px;      /* tema .container ile aynı (header/nav/breadcrumb hizası) */
    margin-inline: auto;
    padding-inline: 20px;   /* tema .container padding'i ile aynı */
  }
  .dbp-section {
    padding: 112px 0;
  }
  .dbp-section--mist {
    background: var(--mist);
  }
  .dbp-section--blue-soft {
    background: var(--blue-soft);
  }
  .dbp-anchor {
    scroll-margin-top: 150px;
  }

  .dbp-product-header {
    position: relative;
    z-index: 50;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }
  .dbp-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    height: 100%;
  }
  .dbp-header-product {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-self: start;
    line-height: 1.1;
  }
  .dbp-header-product small {
    margin-bottom: 7px;
    color: var(--blue-dark);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .dbp-header-product strong {
    color: var(--graphite-dark);
    font-size: 0.96rem;
    font-weight: 720;
    letter-spacing: 0.01em;
  }
  .dbp-header-contact {
    display: inline-flex;
    align-items: center;
    align-self: center;
    min-height: 44px;
    padding: 0 22px;
    color: #ffffff !important;
    background: var(--graphite);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease;
  }
  .dbp-header-contact:visited,
  .dbp-header-contact:hover,
  .dbp-header-contact:focus-visible {
    color: #ffffff !important;
    background: var(--blue);
  }
  .dbp-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background:
      linear-gradient(
        90deg,
        rgba(242, 245, 245, 0.98) 0%,
        rgba(242, 245, 245, 0.78) 38%,
        rgba(242, 245, 245, 0.12) 66%
      ),
      var(--mist);
  }
  .dbp-hero-visual,
  .dbp-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .dbp-hero-visual img {
    z-index: 2;
    object-fit: cover;
    object-position: 64% center;
  }
  .dbp-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    min-height: 640px;
    padding-top: 50px;
    padding-bottom: 48px;
  }
  .dbp-hero-card {
    width: min(100%, 520px);
    padding: 44px 48px 46px;
    border-top: 6px solid var(--blue);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(48, 53, 51, 0.14);
  }
  .dbp-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--graphite);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .dbp-hero h1 {
    margin: 0 0 17px;
    color: var(--graphite-dark);
    font-size: clamp(3rem, 5.6vw, 5.8rem);
    font-weight: 520;
    line-height: 0.96;
    letter-spacing: -0.055em;
  }
  .dbp-hero-lead {
    max-width: 430px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
  }
  .dbp-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .dbp-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 50px;
    padding: 0 21px;
    border: 2px solid var(--graphite);
    color: var(--graphite);
    background: transparent;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      background 0.2s ease;
  }
  .dbp-button--primary {
    min-width: 210px;
    border-color: var(--blue);
    color: #ffffff !important;
    background: var(--blue);
  }
  a.dbp-button.dbp-button--primary:visited,
  a.dbp-button.dbp-button--primary:hover,
  a.dbp-button.dbp-button--primary:focus-visible {
    color: #ffffff !important;
  }
  a.dbp-button.dbp-button--primary span {
    color: inherit !important;
  }
  .dbp-button:hover,
  .dbp-button:focus-visible {
    border-color: var(--blue-dark);
    color: var(--white);
    background: var(--blue-dark);
  }
  .dbp-product-tabs {
    position: sticky;
    z-index: 40;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
  }
  .dbp-tab-list {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .dbp-tab-list::-webkit-scrollbar {
    display: none;
  }
  .dbp-tab-list a {
    flex: 0 0 auto;
    min-width: 156px;
    padding: 20px 24px 17px;
    border-bottom: 4px solid transparent;
    color: var(--graphite);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }
  .dbp-tab-list a:first-child,
  .dbp-tab-list a:hover,
  .dbp-tab-list a:focus-visible {
    border-bottom-color: var(--blue);
    color: var(--blue-dark);
  }

  .section-heading {
    max-width: 820px;
    margin-bottom: 58px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--blue-dark);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .eyebrow::before {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--blue);
  }
  .dbp-product-page h2 {
    margin: 0 0 24px;
    color: var(--graphite-dark);
    font-size: clamp(2.35rem, 4.5vw, 4.6rem);
    font-weight: 520;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }
  .dbp-product-page h3 {
    margin: 0 0 13px;
    color: var(--graphite-dark);
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  .dbp-product-page p {
    margin: 0 0 20px;
  }
  .dbp-lead {
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.65;
  }

  .intro-copy {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
    margin-bottom: 78px;
  }
  .intro-copy h2 {
    margin-bottom: 0;
  }
  .intro-body p:last-child {
    margin-bottom: 0;
  }

    .fact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin: 0;
      padding: 0;
      border-top: 1px solid var(--line-dark);
      border-bottom: 1px solid var(--line-dark);
      list-style: none;
  }
  .fact {
    min-height: 185px;
    padding: 34px 30px;
    border-right: 1px solid var(--line);
  }
  .fact:last-child {
    border-right: 0;
  }
  .fact small {
    display: block;
    min-height: 38px;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-transform: uppercase;
  }
  .fact strong {
    display: block;
    margin-top: 22px;
    color: var(--graphite-dark);
    font-size: clamp(1.75rem, 3.2vw, 3.6rem);
    font-weight: 520;
    line-height: 1;
    letter-spacing: -0.05em;
  }
  .fact--accent {
    background: var(--blue);
  }
  .fact--accent small,
  .fact--accent strong {
    color: var(--white);
  }

  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
  }
  .benefit {
    position: relative;
    min-height: 180px;
    padding: 34px 46px 34px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .benefit:nth-child(even) {
    border-right: 0;
  }
  .benefit::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 13px;
    height: 13px;
    background: var(--blue);
  }
  .benefit h3 {
    padding-left: 8px;
  }
  .benefit p {
    margin: 0;
    padding-left: 8px;
    color: var(--muted);
    font-size: 0.98rem;
  }
    .product-logic {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 72px;
      padding: 0;
      border: 1px solid var(--line-dark);
      background: var(--white);
      list-style: none;
  }
  .logic-step {
    position: relative;
    min-height: 210px;
    padding: 35px 38px;
    border-right: 1px solid var(--line);
  }
  .logic-step:last-child {
    border-right: 0;
  }
  .logic-step::after {
    content: "→";
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -17px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: var(--blue);
    font-weight: 900;
    transform: translateY(-50%);
  }
  .logic-step:last-child::after {
    display: none;
  }
  .logic-step small {
    display: block;
    margin-bottom: 30px;
    color: var(--blue-dark);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .logic-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
  }

  .series-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 650px;
  }
  .series-media {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #dfe4e3;
  }
  .series-media > img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .series-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 3.2vw, 60px);
    background: var(--white);
  }
  .series-copy p {
    color: var(--muted);
  }
  .engineering-note {
    margin-top: 22px;
    padding: 24px 0 0 25px;
    border-top: 1px solid var(--line);
    border-left: 5px solid var(--blue);
    color: var(--graphite) !important;
  }

  .software-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 76px;
    align-items: center;
  }
  .software-visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    background: var(--white);
  }
  .software-visual img {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature-list {
    display: grid;
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid var(--line-dark);
  }
  .feature-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-no {
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
  .feature-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
  }

  .construction-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    margin-bottom: 62px;
  }
  .construction-copy {
    column-count: 2;
    column-gap: 52px;
  }
  .construction-copy p {
    break-inside: avoid;
    color: var(--muted);
  }
  .wide-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-top: 7px solid var(--blue);
    background: #dfe4e3;
  }
  .wide-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
  }

  .dbp-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .dbp-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line-dark);
    background: var(--graphite-dark);
    box-shadow: 0 16px 38px rgba(48, 53, 51, 0.12);
  }
  .dbp-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .dbp-video-card {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    color: var(--white) !important;
    background: var(--graphite-dark);
    text-decoration: none;
  }
  .dbp-video-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 35%,
      rgba(20, 24, 23, 0.88) 100%
    );
  }
  .dbp-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .dbp-video-card:hover img,
  .dbp-video-card:focus-visible img {
    opacity: 0.88;
    transform: scale(1.035);
  }
  .dbp-video-play {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: var(--white);
    background: rgba(0, 157, 254, 0.94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    font-size: 1.25rem;
    line-height: 1;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .dbp-video-card:hover .dbp-video-play,
  .dbp-video-card:focus-visible .dbp-video-play {
    background: var(--blue-dark);
    transform: translate(-50%, -50%) scale(1.06);
  }
  .dbp-video-copy {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 21px;
    left: 24px;
  }
  .dbp-video-copy small {
    display: block;
    margin-bottom: 5px;
    color: #9ddcff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .dbp-video-copy strong {
    display: block;
    color: var(--white);
    font-size: 1.04rem;
    line-height: 1.35;
  }
  .dbp-video-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
  }
  .dbp-video-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
  }
  .dbp-video-channel {
    flex: 0 0 auto;
    color: var(--blue-dark) !important;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .dbp-video-channel:hover,
  .dbp-video-channel:focus-visible {
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .capacity-head {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: start;
  }
  .check-list {
    margin: 10px 0 0;
    padding: 0;
    border-top: 1px solid var(--line-dark);
    list-style: none;
  }
  .check-list li {
    position: relative;
    padding: 18px 12px 18px 34px;
    border-bottom: 1px solid var(--line);
    color: var(--graphite);
  }
  .check-list li::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--blue);
  }
  .capacity-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    margin-top: 72px;
    padding: 44px 52px;
    color: var(--white);
    background: var(--graphite);
  }
  .capacity-banner h3 {
    color: var(--white);
    font-size: 1.65rem;
    font-weight: 560;
  }
  .capacity-banner p {
    margin: 0;
    color: #d7dcda;
  }
  .diameter {
    color: var(--white);
    font-size: clamp(2.5rem, 5.8vw, 5.8rem);
    font-weight: 520;
    line-height: 0.95;
    letter-spacing: -0.06em;
    white-space: nowrap;
  }
  .diameter em {
    color: var(--blue);
    font-style: normal;
  }

  .specification-block {
    padding-top: 92px;
  }
  .table-scroll {
    overflow-x: auto;
    border-top: 6px solid var(--blue);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
    scrollbar-color: var(--blue) var(--mist);
  }
  .spec-table {
    width: 100%;
    min-width: 1880px;
    border-collapse: collapse;
    font-size: 0.91rem;
    line-height: 1.4;
  }
  .spec-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .spec-table th,
  .spec-table td {
    padding: 20px 17px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
  }
  .spec-table th:last-child,
  .spec-table td:last-child {
    border-right: 0;
  }
  .spec-table tbody tr:last-child th,
  .spec-table tbody tr:last-child td {
    border-bottom: 0;
  }
  .spec-table thead th {
    color: var(--white);
    background: var(--graphite);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .spec-table thead th:first-child {
    min-width: 215px;
    text-align: left;
  }
  .spec-table tbody th {
    color: var(--graphite-dark);
    background: var(--mist);
    font-weight: 760;
    text-align: left;
    white-space: nowrap;
  }
  .spec-table tbody tr:nth-child(even) td {
    background: #f9fbfb;
  }
  .spec-table tbody tr:hover td {
    background: var(--blue-soft);
  }
  .specification-note {
    display: grid;
    grid-template-columns: 6px 1fr;
    gap: 23px;
    margin: 28px 0 0;
    padding: 28px 30px;
    border: 1px solid #bfdef1;
    background: var(--blue-soft);
  }
  .specification-note::before {
    content: "";
    background: var(--blue);
  }
  .specification-note p {
    margin: 0;
  }

  .faq-heading {
    max-width: 780px;
    margin-bottom: 54px;
  }
  .faq-heading .dbp-lead {
    margin-bottom: 0;
  }
  .faq-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: start;
  }
  .faq-group-title {
    margin: 0 0 8px;
    padding-bottom: 17px;
    border-bottom: 5px solid var(--blue);
    color: var(--graphite-dark);
    font-size: 1.22rem;
    font-weight: 720;
  }
  .dbp-faq {
    border-bottom: 1px solid var(--line-dark);
  }
  .dbp-faq summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 22px;
    align-items: start;
    padding: 22px 0;
    color: var(--graphite-dark);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 760;
    line-height: 1.45;
    list-style: none;
  }
  .dbp-faq summary::-webkit-details-marker {
    display: none;
  }
  .dbp-faq summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--white);
    background: var(--graphite);
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1;
  }
  .dbp-faq[open] summary::after {
    content: "−";
    background: var(--blue);
  }
  .dbp-faq-answer {
    padding: 0 52px 24px 0;
    color: var(--muted);
  }
  .dbp-faq-answer p {
    margin: 0;
  }
  .dbp-faq-answer a {
    color: var(--blue-dark);
    font-weight: 760;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .final-cta {
    padding: 86px 0;
    color: var(--white);
    background:
      linear-gradient(90deg, var(--blue) 0 9px, transparent 9px),
      var(--graphite);
  }
  .final-cta .dbp-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
  }
  .final-cta h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.8rem);
  }
  .final-cta p {
    margin: 0;
    color: #d7dcda;
  }
  .final-cta .dbp-button {
    border-color: var(--blue);
    color: #ffffff !important;
    background: var(--blue);
  }
  .final-cta a.dbp-button:visited,
  .final-cta a.dbp-button:hover,
  .final-cta a.dbp-button:focus-visible,
  .final-cta a.dbp-button span {
    color: #ffffff !important;
  }
  .dbp-product-footer {
    padding: 26px 0;
    border-top: 1px solid #656c69;
    color: #d7dcda;
    background: var(--graphite);
    font-size: 0.76rem;
  }
  .dbp-footer-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  .dbp-product-footer a {
    color: var(--white);
  }

  .dbp-product-page :focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
  }

  @media (max-width: 1040px) {
    .dbp-product-page {
      --header-height: 76px;
    }
    .dbp-product-header {
      height: var(--header-height);
    }
    .dbp-header-contact {
      display: inline-flex;
    }
    .dbp-hero,
    .dbp-hero-content {
      min-height: 590px;
    }
    .dbp-hero-card {
      width: 480px;
    }
    .fact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .fact:nth-child(2) {
      border-right: 0;
    }
    .fact:nth-child(-n + 2) {
      border-bottom: 1px solid var(--line);
    }
    .software-shell {
      gap: 48px;
    }
    .construction-copy {
      column-count: 1;
    }
    .dbp-video-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 780px) {
    .dbp-container {
      padding-inline: 20px;
    }
    .dbp-section {
      padding: 78px 0;
    }
    .dbp-hero {
      min-height: 720px;
    }
    .dbp-hero-content {
      align-items: flex-end;
      min-height: 720px;
      padding-bottom: 24px;
    }
    .dbp-hero-visual {
      height: 58%;
    }
    .dbp-hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        transparent 66%,
        rgba(242, 245, 245, 0.95)
      );
    }
    .dbp-hero-card {
      width: 100%;
      padding: 34px 28px 36px;
    }
    .dbp-tab-list a {
      min-width: 142px;
      padding-inline: 18px;
    }
    .intro-copy,
    .series-layout,
    .software-shell,
    .construction-layout,
    .capacity-head,
    .faq-columns,
    .final-cta .dbp-container {
      grid-template-columns: 1fr;
      gap: 42px;
    }
    .intro-copy {
      margin-bottom: 56px;
    }
    .benefit-grid {
      grid-template-columns: 1fr;
    }
    .benefit,
    .benefit:nth-child(even) {
      border-right: 0;
    }
    .product-logic {
      grid-template-columns: 1fr;
    }
    .logic-step {
      min-height: 0;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }
    .logic-step:last-child {
      border-bottom: 0;
    }
    .logic-step::after {
      top: auto;
      right: 34px;
      bottom: -17px;
      transform: rotate(90deg);
    }
    .series-media {
      min-height: 460px;
    }
    .series-layout {
      min-height: 0;
    }
    .series-copy {
      padding: 68px 30px;
    }
    .software-visual {
      min-height: 510px;
    }
    .construction-copy {
      column-count: 1;
    }
    .dbp-video-grid {
      grid-template-columns: 1fr;
    }
    .dbp-video-footer {
      align-items: flex-start;
      flex-direction: column;
    }
    .capacity-banner {
      grid-template-columns: 1fr;
      padding: 36px 30px;
    }
    .diameter {
      white-space: normal;
    }
    .final-cta .dbp-button {
      justify-self: start;
    }
  }

  @media (max-width: 520px) {
    .dbp-product-page {
      font-size: 16px;
    }
    .dbp-header-inner {
      gap: 12px;
    }
    .dbp-header-product small {
      font-size: 0.54rem;
    }
    .dbp-header-product strong {
      font-size: 0.84rem;
    }
    .dbp-header-contact {
      min-height: 40px;
      padding-inline: 12px;
      font-size: 0.6rem;
    }
    .dbp-hero h1 {
      font-size: 3.35rem;
    }
    .dbp-button-row {
      display: grid;
    }
    .dbp-button {
      width: 100%;
    }
    .fact-grid {
      grid-template-columns: 1fr;
    }
    .fact {
      min-height: 145px;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }
    .fact:last-child {
      border-bottom: 0;
    }
    .fact small {
      min-height: 0;
    }
    .benefit {
      padding-right: 14px;
    }
    .series-media {
      min-height: 390px;
    }
    .software-visual {
      min-height: 430px;
    }
    .wide-media,
    .wide-media img {
      min-height: 380px;
    }
    .capacity-banner {
      margin-top: 50px;
    }
    .table-scroll::after {
      content: "Swipe to compare all models →";
      display: block;
      position: sticky;
      left: 0;
      padding: 11px 14px;
      color: var(--muted);
      background: var(--mist);
      font-size: 0.75rem;
    }
    .faq-heading {
      margin-bottom: 40px;
    }
    .dbp-faq summary {
      gap: 15px;
      padding: 19px 0;
    }
    .dbp-faq-answer {
      padding-right: 0;
    }
    .dbp-footer-row {
      flex-direction: column;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .dbp-product-page *,
    .dbp-product-page *::before,
    .dbp-product-page *::after {
      transition-duration: 0.01ms !important;
    }
  }


/* Ürün sayfası: yeni tasarımın kendi hero'su var → tema page-hero'sunu ince breadcrumb bandına indir */
.page-hero.dbp-crumb-only {
  padding: 18px 0;
  background: #0d2045;
  display: flex;
  align-items: center;      /* breadcrumb'ı dikey ortala */
  min-height: 0;
}
.page-hero.dbp-crumb-only .page-hero-overlay { display: none; }
.page-hero.dbp-crumb-only .container { width: 100%; }
.page-hero.dbp-crumb-only .page-hero-content { margin: 0; width: 100%; }
.page-hero.dbp-crumb-only .page-breadcrumb { margin: 0; }   /* alttaki 18px fazlalığı kaldır */

/* Ürün tasarımının footer'ı ile tema footer'ı arasındaki 20px boşluğu kapat.
   (product.css yalnızca ürün sayfalarında yüklendiğinden bu kural sadece burada geçerli) */
.site-footer { margin-top: 0; }

/* Mobil grid-blowout önleme: 2 sütunlu düzenler tek sütuna inince
   çocukların min-width:auto'su viewport'u aşıyordu (series/software/construction). */
.series-layout > *,
.software-shell > *,
.construction-layout > *,
.capacity-head > *,
.final-cta .dbp-container > * {
  min-width: 0;
}

/* Müşteri isteği (2026-08-11): hero ve hybrid section'ları TAM EKRAN değil,
   diğer bölümler gibi container (max 1400) içinde kalsın.
   - hero: full-bleed section'ı 1400'e sabitle, ortala.
   - hybrid: series-layout artık .dbp-container ile sarıldı (render); köşeleri yumuşat. */
.dbp-hero {
  max-width: 1400px;
  margin-inline: auto;
}
#hybrid .series-layout {
  border-radius: 14px;
  overflow: hidden;
}


/* long-word overflow guard (de/es) - 2026-08-15 */
.dbp-product-page { overflow-wrap: break-word; }
.dbp-hero h1 { overflow-wrap: break-word; hyphens: auto; }

/* de/es hero basligi: uzun kelime icin kucult + satir araligi (i/g carpismasi) */
html[lang^="de"] .dbp-hero h1, html[lang^="es"] .dbp-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.06; letter-spacing: -0.02em; }
