﻿*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

:root {
  --dfn-primary: #d90429;
  --dfn-primary-dark: #a9001f;
  --dfn-dark: #212121;
  --dfn-body-text: #333333;
  --dfn-gray-text: #6c757d;
  --dfn-light-bg: #f8f9fa;
  --dfn-white: #ffffff;
  --dfn-border: #e0e0e0;

  --dfn-info-bg: #e3f2fd;
  --dfn-info-border: #90caf9;
  --dfn-info-text: #0d47a1;

  --gradient-primary: linear-gradient(135deg, #d90429 0%, #ff1744 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(217, 4, 41, 0.03) 0%,
    rgba(255, 23, 68, 0.01) 100%
  );

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 4px 20px rgba(217, 4, 41, 0.2);

  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--dfn-light-bg);
  color: var(--dfn-body-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 20px auto;
  background: var(--dfn-white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
}

/* HEADER */
.header {
  background: var(--dfn-white);
  padding: 30px 40px;
  border-bottom: 5px solid transparent;
  border-image: var(--gradient-primary) 1;
  position: relative;
  background-size: cover;
  background-position: center;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.logo-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-logo {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.logo-subtext {
  font-size: 1rem;
  color: var(--dfn-dark);
  font-weight: 600;
  border-left: 3px solid var(--dfn-primary);
  padding-left: 20px;
  margin: 0;
}

.trust-indicators {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--dfn-border);
  border-top: none;
}
.header-nav--top {
  margin: 0;
  justify-content: flex-start;
}
.header-nav a {
  color: var(--dfn-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  background: #fff;
}
.header-nav a:hover {
  color: var(--dfn-primary);
  border-color: var(--dfn-primary);
  box-shadow: var(--shadow-sm);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--dfn-body-text);
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  border: 1px solid var(--dfn-border);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
}
.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--dfn-primary);
}
.trust-item-icon {
  color: var(--dfn-primary);
  font-size: 1.1rem;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: var(--gradient-overlay);
  padding: 40px 30px;
  border-bottom: 1px solid var(--dfn-border);
}
.feature-box {
  background: var(--dfn-white);
  padding: 25px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--dfn-primary);
}
.feature-box-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-box-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dfn-dark);
  text-transform: uppercase;
}
.feature-box-desc {
  font-size: 0.9rem;
  color: var(--dfn-gray-text);
}

/* PRODUCT HERO SECTION */
.product-hero {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 30px;
  border: 1px solid var(--dfn-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--dfn-white);
  transition: var(--transition-normal);
}
.product-hero:hover {
  box-shadow: var(--shadow-lg);
  border-color: #ddd;
}

.product-image {
  flex: 1;
  min-width: 320px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
}
.product-image img {
  max-width: 100%;
  height: auto;
}
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.product-gallery .gallery-radio {
  display: none;
}
.product-gallery-main .gallery-item {
  display: none;
}
.product-gallery-main .gallery-item:first-child {
  display: block;
}
.product-main-image,
.product-gallery-main {
  width: 100%;
  border: 1px solid var(--dfn-border);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-main-image img,
.product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, 60px);
  grid-auto-rows: 60px;
  gap: 8px;
  justify-content: start;
}
.product-thumb-link {
  display: block;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid var(--dfn-border);
  border-radius: 8px;
  padding: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.caption {
  display: none;
}

.product-info {
  flex: 1.4;
  min-width: 320px;
  padding: 35px;
  background: linear-gradient(to right, #ffffff, #fcfcfc);
  border-left: 1px solid var(--dfn-border);
}
.product-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dfn-dark);
  margin: 0 0 15px 0;
  line-height: 1.3;
}
.product-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
  background: #fff5f6;
  padding: 20px;
  border-left: 4px solid var(--dfn-primary);
  border-radius: 0 6px 6px 0;
}
.product-details {
  margin: 10px 0 25px;
  padding: 18px;
  border: 1px solid var(--dfn-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.product-details-title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--dfn-dark);
}
.detail-block {
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
}
.detail-block:first-of-type {
  border-top: none;
  padding-top: 0;
}
.detail-title {
  font-weight: 700;
  color: var(--dfn-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
.detail-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.detail-list {
  margin: 0;
  padding-left: 18px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.delivery-info {
  margin-bottom: 25px;
  color: var(--dfn-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SPECS TABLE */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.specs-table tr td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.specs-table tr:last-child td {
  border-bottom: none;
}
.specs-label {
  font-weight: 700;
  color: #444;
  width: 160px;
}
.specs-value {
  color: #555;
}
.numbers-cell {
  font-family: "Consolas", monospace;
  font-size: 0.9rem;
  color: #333;
  word-break: break-all;
}

/* VIN CHECK DROPDOWN */
.vin-section {
  padding-top: 25px;
}
.vin-check {
  background: var(--dfn-info-bg);
  border: 1px solid var(--dfn-info-border);
  border-radius: 8px;
  margin-top: 0;
  color: var(--dfn-info-text);
  overflow: hidden;
}
.vin-check summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.vin-check summary::-webkit-details-marker {
  display: none;
}
.vin-icon {
  font-size: 1.8rem;
  color: #1976d2;
}
.vin-summary-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.vin-hint {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
  color: #4b6b86;
  border: 1px dashed var(--dfn-info-border);
  padding: 2px 8px;
  border-radius: 999px;
}
.vin-check-body {
  padding: 0 20px 20px;
}
.vin-check-body p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.vin-check-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
}
.vin-check-photo {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid var(--dfn-info-border);
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vin-check-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* COMPATIBILITY */
.compat-area {
  margin-top: 25px;
}
.compat-accordion {
  border: 1px solid var(--dfn-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.compat-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  color: var(--dfn-dark);
  text-transform: uppercase;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--dfn-border);
  background: #fafafa;
}
.compat-accordion summary::-webkit-details-marker {
  display: none;
}
.compat-summary-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.compat-summary-meta {
  font-size: 0.75rem;
  color: var(--dfn-gray-text);
  padding: 2px 8px;
  border: 1px solid var(--dfn-border);
  border-radius: 999px;
  background: #fff;
}
.compat-list {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  max-height: 200px;
  overflow-y: auto;
  padding: 15px 16px;
  background: #f9f9f9;
}
.compat-list li {
  border-bottom: 1px dashed #ddd;
  padding: 4px 0;
}

/* CONTENT SECTIONS & TITLES */
.content-section {
  padding: 35px 16px;
  border-bottom: 1px solid var(--dfn-border);
}
.section-title {
  font-size: 2rem;
  color: var(--dfn-dark);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 20px auto 0;
  border-radius: 4px;
}

/* TIMELINE */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
}
.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 140px;
}
.step-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--dfn-white);
  border: 4px solid var(--dfn-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-normal);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.8), var(--shadow-sm);
}
.timeline-step:hover .step-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.8), var(--shadow-red);
}
.step-icon {
  font-size: 1.8rem;
  color: var(--dfn-primary);
}
.step-title {
  font-weight: 700;
  color: var(--dfn-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--dfn-gray-text);
  line-height: 1.4;
  padding: 0 10px;
}

/* PFAND SYSTEM (YENİ DÜZEN - 3 ÜST 2 ALT) */
.pfand-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.pfand-steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.pfand-card {
  flex: 1 1 260px;
  max-width: 300px;
  min-width: 0;
  background: var(--dfn-white);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: 300px;
}

.pfand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--dfn-primary);
}

.pfand-circle {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-red);
}

.pfand-card h3 {
  font-size: 1.1rem;
  color: var(--dfn-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.pfand-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.important-note {
  background: linear-gradient(135deg, #fff5f6 0%, #ffe8eb 100%);
  border: 1px solid #ffd6db;
  border-left: 5px solid var(--dfn-primary);
  padding: 25px 30px;
  border-radius: 12px;
  color: #5c1a24;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.important-note i {
  color: var(--dfn-primary);
  font-size: 1.5rem;
  margin-top: -3px;
}

/* QUALITY GRID - 3 Columns */
.test-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-step {
  background: var(--dfn-white);
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--dfn-border);
  border-top: 4px solid var(--dfn-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.test-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--dfn-primary);
}
.test-step-icon-wrapper {
  margin-bottom: 20px;
}
.test-step-icon {
  font-size: 2.5rem;
  color: #ccc;
  transition: var(--transition-normal);
}
.test-step:hover .test-step-icon {
  color: var(--dfn-primary);
  transform: scale(1.1);
}
.test-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--dfn-dark);
  line-height: 1.4;
}
.test-step-desc {
  font-size: 0.85rem;
  color: #777;
}

/* FAQ SECTION */
.faq-section {
  padding: 60px 30px;
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: #fcfcfc;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 10px;
  transition: var(--transition-normal);
}
.faq-item:hover {
  border-color: var(--dfn-primary);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--dfn-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary i {
  color: var(--dfn-primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.faq-answer {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* DISCLAIMER */
.disclaimer-section {
  padding: 60px 30px;
  background: #f9f9f9;
  border-top: 1px solid var(--dfn-border);
}
.disclaimer-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 35px 40px;
  border-radius: 12px;
  border-left: 5px solid #7f8c8d;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}
.disclaimer-icon {
  font-size: 1.4rem;
  color: #7f8c8d;
}
.disclaimer-box h2 {
  font-size: 1.1rem;
  color: var(--dfn-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.disclaimer-box p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 12px;
}
.disclaimer-box p:last-child {
  margin-bottom: 0;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 30px;
  background: var(--gradient-light);
  border-top: 1px solid #eee;
}
.trust-badge {
  text-align: center;
  transition: var(--transition-normal);
}
.trust-badge:hover {
  transform: translateY(-3px);
}
.trust-badge-icon {
  font-size: 2.5rem;
  color: var(--dfn-dark);
  margin-bottom: 10px;
  display: block;
}
.trust-badge:hover .trust-badge-icon {
  color: var(--dfn-primary);
}
.trust-badge-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: #555;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  background: var(--gradient-dark);
  color: var(--dfn-white);
  padding: 60px 30px 40px 30px;
  text-align: center;
  border-top: 5px solid transparent;
  border-image: var(--gradient-primary) 1;
  position: relative;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-normal);
}
.footer-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(217, 4, 41, 0.4);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 25px;
}

.footer-sub {
  font-size: 0.95rem;
  color: #bbb;
  font-weight: 400;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  margin: 18px 0 28px;
}
.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.footer-links a:hover {
  color: var(--dfn-white);
  text-decoration: underline;
}
.footer-bottom {
  font-size: 0.85rem;
  color: #666;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .header {
    padding: 20px;
    justify-content: center;
    text-align: center;
  }
  .product-hero {
    flex-direction: column;
  }
  .product-image {
    padding: 20px;
  }
  .product-info {
    padding: 25px;
    border-left: none;
    border-top: 1px solid #eee;
  }
  .timeline::before {
    display: none;
  }
  .timeline {
    flex-direction: column;
    gap: 15px;
  }
  .timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc";
    text-align: left;
    align-items: start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    min-width: 0;
    width: 100%;
  }
  .step-icon-wrapper {
    grid-area: icon;
    margin: 0;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-width: 3px;
  }
  .step-title {
    grid-area: title;
  }
  .step-desc {
    grid-area: desc;
    padding: 0;
  }
  .step-icon {
    font-size: 1.4rem;
  }
  .disclaimer-box {
    padding: 25px;
  }
  .test-steps {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  /* Mobil için pfand grid ayarı */
  .pfand-steps-grid {
    justify-content: center;
  }
  .pfand-card {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    min-width: 0;
  }
  .trust-indicators {
    justify-content: center;
  }
  .trust-item {
    width: 100%;
    justify-content: center;
  }
  .header-nav {
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
  }
  .header-nav a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    padding: 10px 8px;
  }
  .container {
    margin: 0;
    border-radius: 0;
  }
  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 30px 16px;
  }
  .trust-badge {
    width: 100%;
  }

  .trust-badge-text {
    min-height: 2.6em;
    line-height: 1.3;
    text-align: center;
  }
}
