
    :root {
      --header-bg: linear-gradient(90deg, #131c33 70%, #19b5fd 180%);
      --nav-bg: #1a2338;
      --card-bg: #203050;
      --text-main: #f6f6f6;
      --text-secondary: #b8e2fc;
      --blue-main: #19b5fd;
      --accent: #13cb9d;
      --shadow-brand: 0 8px 34px #19b5fd40, 0 1px 10px #13cb9d18;
    }
    html, body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }
    body {
      background: #101c2c;
      font-family: 'Montserrat', Arial, sans-serif;
      color: var(--text-main);
      margin: 0;
      min-height: 100vh;
    }
    .main-header {
      background: var(--header-bg);
      padding: 0;
      box-shadow: 0 4px 38px #19b5fd18;
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      min-height: 88px;
      z-index: 10;
    }
    
    .logo-area {
      display: flex;
      align-items: center;
      padding-left: 40px;
    }
    .logo-home-link {
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, filter 0.2s ease;
    }
    .logo-home-link:hover {
      transform: translateY(-2px);
      filter: brightness(1.04);
    }
    .logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0f2a44, #0b1d30);
  box-shadow:
    inset 0 0 0 1px rgba(0,200,255,0.35),
    0 0 18px rgba(0,200,255,0.25);
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

    .logo-frame img {
      width: 53px; height: 53px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 0 18px #19b5fd66, 0 0 4px #232c44;
      display: block;
    }
    .brandline {
      font-size: 1.38em;
      font-weight: 900;
      color: var(--blue-main);
      letter-spacing: .08em;
      text-shadow: 0 2px 17px #19b5fd77, 0 0 11px #13cb9d33;
      margin-left: 7px;
    }
    nav {
      margin-left: auto;
      flex: 1 1 auto;
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.6rem;
      height: 88px;
      padding: 0 24px;
      z-index: 5;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding-right: 24px;
      flex: 0 0 auto;
    }
    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      padding: 0;
      border-radius: 14px;
      border: 1px solid rgba(25,181,253,0.22);
      background: rgba(255,255,255,0.04);
      color: var(--text-main);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .menu-toggle:hover {
      transform: translateY(-1px);
      background: rgba(25,181,253,0.1);
      border-color: rgba(25,181,253,0.42);
      box-shadow: 0 10px 22px rgba(25,181,253,0.16);
    }
    .menu-toggle:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(25,181,253,0.22), 0 10px 22px rgba(25,181,253,0.16);
    }
    .menu-toggle-box {
      position: relative;
      width: 19px;
      height: 14px;
      display: inline-flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .menu-toggle-line {
      display: block;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transform-origin: center;
      transition: transform 0.24s ease, opacity 0.2s ease;
    }
    .nav-link {
  color: var(--blue-main);
  text-decoration: none;
  padding: 0.65em 1.5em;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.09em;

  background: transparent;
  border: none;

  position: relative;
  letter-spacing: .3px;

  transform: translateY(0) scale(1);
  transition:
    background 0.25s ease,
    color 0.2s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-link:hover {
  background: linear-gradient(100deg, #19b5fd 60%, #13cb9d 120%);
  color: #0b1624;

  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 28px rgba(25,181,253,0.45);
}
.nav-link.active {
  background: linear-gradient(100deg, #19b5fd 60%, #13cb9d 120%);
  color: #0b1624;

  box-shadow:
    0 8px 24px rgba(25,181,253,0.55),
    inset 0 0 0 2px rgba(255,255,255,0.15);

  transform: scale(1.08);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: 6px;
  width: 64%;
  height: 2px;
  background: rgba(11,22,36,0.65);
  opacity: 0;

  transform: scaleX(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}
    .nav-link.urgent {
      color: var(--blue-main);
      background: #1a2338;
      font-weight: 800;
      border: 2px solid #19b5fd;
      margin-left: 24px;
      padding: 0.58em 1.24em;
      transition: background 0.14s,color 0.14s,border 0.17s;
    }
    .nav-link.urgent:hover {
      background: #13cb9d;
      color: #1a2338;
      border: 2px solid #13cb9d;
    }
.theme-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 0;
  min-width: 88px;
  width: 88px;
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(25,181,253,0.24);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover {
  transform: translateY(-2px);
  background: rgba(25,181,253,0.12);
  border-color: rgba(25,181,253,0.42);
  box-shadow: 0 10px 24px rgba(25,181,253,0.18);
}
.theme-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(25,181,253,0.22), 0 10px 24px rgba(25,181,253,0.18);
}
.theme-toggle-icon {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.32s ease, opacity 0.25s ease, color 0.25s ease;
}
.theme-toggle-sun {
  grid-column: 1;
}
.theme-toggle-sun {
  color: #ffd36b;
  text-shadow: 0 0 14px rgba(255,211,107,0.28);
}
.theme-toggle-moon {
  grid-column: 2;
  color: #c9dbff;
  text-shadow: 0 0 12px rgba(201,219,255,0.24);
}
.theme-toggle-thumb {
  position: absolute;
  top: 50%;
  left: 7px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #19b5fd, #13cb9d);
  box-shadow: 0 0 16px rgba(25,181,253,0.3);
  transform: translate(0, -50%);
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}
.theme-toggle[data-theme="light"] .theme-toggle-thumb {
  transform: translate(42px, -50%);
  background: linear-gradient(145deg, #ffd36b, #ffb347);
  box-shadow: 0 0 16px rgba(255,179,71,0.34);
}
.theme-toggle[data-theme="light"] .theme-toggle-sun {
  transform: scale(1.15) rotate(18deg);
  opacity: 1;
}
.theme-toggle[data-theme="light"] .theme-toggle-moon {
  opacity: 0.45;
  transform: scale(0.92);
}
.theme-toggle[data-theme="dark"] .theme-toggle-sun {
  opacity: 0.45;
  transform: scale(0.92);
}
.theme-toggle[data-theme="dark"] .theme-toggle-moon {
  transform: scale(1.15) rotate(-12deg);
  opacity: 1;
}
.theme-toggle-nav {
  margin-left: 0;
}
.main-header.nav-open .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.main-header.nav-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}
.main-header.nav-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:root.theme-switching body,
:root.theme-switching .main-header,
:root.theme-switching .hero,
:root.theme-switching .hero-image,
:root.theme-switching .section,
:root.theme-switching .service-card,
:root.theme-switching .faq-block,
:root.theme-switching .faq-item,
:root.theme-switching .legal-card,
:root.theme-switching .form-section,
:root.theme-switching .theme-toggle,
:root.theme-switching input,
:root.theme-switching select,
:root.theme-switching textarea {
  transition:
    background 0.32s ease,
    background-color 0.32s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.32s ease,
    filter 0.32s ease;
}

  .hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 620px;
  width: 100%;
  background: #0b1624;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.25;
}

    .hero-title {
      font-size: 2.48rem;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 0.56em;
      letter-spacing: 1.2px;
      text-shadow: 0 2px 18px #19b5fd88,0 2px 8px #13cb9d33;
    }
.hero-desc {
      font-size: 1.18em;
      color: var(--text-secondary);
      margin-bottom: 1.7em;
    }
.hero-note-stack {
  display: grid;
  gap: 0.85rem;
  margin: -0.4rem 0 1.4rem;
  max-width: 580px;
}

.hero-note {
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  background: rgba(25,181,253,0.08);
  border: 1px solid rgba(25,181,253,0.18);
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.hero-note strong {
  color: var(--blue-main);
}
.hero-image {
  position: relative;
  height: 100%;
  background: #0b1624;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}


.hero-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    180deg,
    transparent,
    #0b1624
  );
  pointer-events: none;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0b1624 0%,
    rgba(11,22,36,0.95) 15%,
    rgba(11,22,36,0.6) 35%,
    rgba(11,22,36,0.25) 55%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  padding: 80px 60px 80px 80px; /* links schön luftig */
  max-width: 720px;
}
.hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.25;
}

    .garantie-badge {
      margin: auto;
      background: rgba(25,181,253,0.1);
      color: var(--text-main);
      font-weight: 800;
      border-radius: 18px;
      border: 1px solid rgba(25,181,253,0.2);
      font-size: 1.02em;
      padding: 0.9em 1.35em;
      box-shadow: 0 10px 24px rgba(0,0,0,0.14);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-bottom:1.1em;
      letter-spacing: .01em;
      line-height: 1.45;
    }
    .garantie-badge-static{
      width: fit-content;
      max-width: 100%;
      justify-content: flex-start;
      margin: 0 0 0.2rem;
      background: linear-gradient(180deg, rgba(25,181,253,0.1), rgba(19,203,157,0.08));
      border-color: rgba(19,203,157,0.22);
      color: #d8f5ff;
      box-shadow: 0 12px 26px rgba(0,0,0,0.16);
    }
    .garantie-badge-static::before{
      content: "Garantie";
      display: inline-flex;
      margin-right: 0.8rem;
      padding: 0.28rem 0.62rem;
      border-radius: 999px;
      background: rgba(19,203,157,0.16);
      color: var(--accent);
      font-size: 0.74em;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .hero-cta {
      display: inline-block;
      background: linear-gradient(90deg, #19b5fd 60%, #13cb9d 130%);
      color: #12204a;
      font-weight:bold;
      font-size: 1.1em;
      border-radius: 21px;
      padding: 0.89em 2.1em;
      text-decoration: none;
      margin-top: 1.1em;
      margin-bottom: 0.2em;
      box-shadow: 0 4px 19px #19b5fd24;
      transition: background .19s, color .13s, transform .10s;
      border: none;
    }
    .hero-cta:hover {
      background:linear-gradient(93deg,#13cb9d 2%,#19b5fd 98%,#0e85e2 140%);
      color: #fff;
      transform: scale(1.065) translateY(-2px);
      outline:none;
    }
.section {
      background: #151f36;
      border-radius: 17px;
      max-width: 1150px;
      margin: 2.2rem auto 2.3rem auto;
      box-shadow: 0 8px 34px #19b5fd13;
      padding: 2.2rem 2.2rem 2.2rem 2.2rem;
      position: relative;
    }
    .section-head {
      font-size: 1.23em;
      font-weight: bold;
      color: var(--blue-main);
      margin-bottom: 1em;
      letter-spacing: 1px;
      border-bottom: 2.5px solid #19b5fd;
      padding-bottom: 0.35em;
    }
.social-proof {
  margin-top: 1.4em;
  font-size: 1.05em;
  opacity: 0.85;
  display: grid;
  gap: 0.55rem;
}

.social-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.social-proof a {
  color: var(--blue-main);
  font-weight: 700;
  text-decoration: none;
}

.social-proof a:hover {
  text-decoration: underline;
}
/* Scroll-to-top Button */
#scrollTopBtn {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #19b5fd, #13cb9d);
  color: #0b1624;
  font-size: 1.6rem;
  font-weight: 900;

  cursor: pointer;
  box-shadow: 0 10px 30px rgba(25,181,253,0.35);

  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.25s ease;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#scrollTopBtn:hover {
  box-shadow: 0 14px 40px rgba(25,181,253,0.55);
  transform: translateY(-4px) scale(1.05);
}

    .service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:2em;padding:0.88em 0 0 0;}
    .service-card{background:var(--card-bg);border-radius:15px;box-shadow:0 6px 22px #19b5fd25;padding:2rem 1.3rem 1.5rem 1.3rem;min-width:200px;display:flex;flex-direction:column;align-items:flex-start;position:relative;transition:box-shadow 0.22s,border-color 0.18s,transform .15s;overflow:hidden;border:2px solid #1a2338;font-size:1.07em;}
    .service-card:hover{border-color:var(--blue-main);box-shadow:0 11px 49px #19b5fd24;transform:scale(1.045) translateY(-4px);z-index:1;}
    .service-icon{font-size:2.18em;color:var(--blue-main);margin-bottom:.35em;filter:drop-shadow(0 1px 10px #19b5fd88);}
    .service-title{font-size:1.14em;font-weight:700;color:var(--accent);margin-bottom:.62em;}
    .service-desc{color:var(--text-secondary);}
    .service-garantie{background:var(--blue-main);color:#151f2d;font-weight:bold;border-radius:7px;padding:0.2em 0.55em;margin-top:0.8em;box-shadow:0 4px 18px #19b5fd15;font-size:0.93em;}
    .repair-table{width:100%;border-collapse:collapse;margin-bottom:1.5em;}
    .repair-table th,.repair-table td{padding:1em 0.6em;text-align:left;background:#101c2c;color:var(--blue-main);border-bottom:1px solid #1a2338;font-size:1em;}
    .repair-table th{background:var(--blue-main);color:#151f36;font-weight:800;font-size:1.08em;border-bottom:3px solid #13cb9d;}
    .repair-table .gpu-model{font-weight:bold;color:var(--blue-main);}
    .repair-table .repair-price{font-weight:bold;color:var(--accent);font-size:1.07em;}
    .faq-block{margin-top:2.1em;background:linear-gradient(180deg,#101c2c,#0d1828);border-radius:18px;padding:2em 1.2em 1.3em 1.2em;box-shadow:0 2px 18px #19b5fd14;border:1px solid rgba(25,181,253,0.12);}
    .faq-block h3{color:var(--accent);margin-bottom:1em;font-size:1.11em;letter-spacing:.5px;}
    .faq-accordion{display:grid;gap:0.9rem;}
    .faq-item{border-radius:16px;background:rgba(255,255,255,0.03);border:1px solid rgba(25,181,253,0.09);overflow:hidden;}
    .faq-item summary{list-style:none;cursor:pointer;padding:1rem 1.15rem;font-weight:800;color:var(--text-main);display:flex;align-items:center;justify-content:space-between;gap:1rem;}
    .faq-item summary::-webkit-details-marker{display:none;}
    .faq-item summary::after{content:"+";font-size:1.15rem;color:var(--blue-main);flex-shrink:0;}
    .faq-item[open] summary{background:rgba(25,181,253,0.08);}
    .faq-item[open] summary::after{content:"–";color:var(--accent);}
    .faq-item-body{padding:0 1.15rem 1.1rem 1.15rem;color:var(--text-secondary);line-height:1.7;}
    .faq-item-body p{margin:0;}
    @media (max-width:900px){
      .main-header,nav{padding-left: 0px; padding-right: 0px;}
      .logo-area,.logo-frame{padding-left: 0;}
      .logo-frame{margin-left:10px;}
      nav{padding-right:6px;}
      .header-actions{padding-right:10px;}
      .section{padding:1em;}
      .service-grid{gap:1em;}
      .faq-block{padding:1em;}
    }
    @media (max-width:700px){
      .main-header,.logo-area{padding-left:4px;}
      .logo-frame{padding:6px 6px;}
      .logo-frame img{width:36px;height:36px;}
      .hero-title{font-size:1.11em;}
      nav{font-size:0.97em;gap:0.65em;}
      .main-header{flex-wrap:wrap;}
      .header-actions{
        width:100%;
        justify-content:flex-end;
        padding:0 10px 10px;
      }
    }
footer{background:#141b2e;color:var(--text-secondary);text-align:center;padding:1.5em 1rem 1em 1rem;margin-top:1.6em;box-shadow:0 -4px 19px #19b5fd16;font-size:0.98em;}
    .footer-links{text-align:left;margin:2em auto 0 auto;max-width:340px;}
    .footer-links h3{font-size:1.06em;color:var(--blue-main);margin-bottom:1em;font-weight:800;letter-spacing:.9px;}
    .footer-links ul{list-style:none;padding:0;margin:0;}
    .footer-links li{margin-bottom:0.7em;color:var(--text-secondary);font-weight:500;font-size:1em;padding-left:0;position:relative;}
    .footer-links li::before{content:none;}
    .footer-bar{margin-top:2em;opacity:.72;font-size:0.98em;color:var(--blue-main);}
.contact-section {
  text-align: left;
  overflow: hidden;
}

.gpu-search-shell {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.gpu-search-label {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.96rem;
}

.gpu-search-input {
  width: 100%;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(25,181,253,0.22);
  background: rgba(10,17,30,0.95);
  color: var(--text-main);
  font: inherit;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.gpu-search-input:focus {
  outline: none;
  border-color: rgba(19,203,157,0.6);
  box-shadow: 0 0 0 3px rgba(19,203,157,0.12);
}

.gpu-filter-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.gpu-filter-chip {
  border: 1px solid rgba(25,181,253,0.18);
  background: rgba(25,181,253,0.08);
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.gpu-filter-chip:hover {
  transform: translateY(-1px);
  background: rgba(25,181,253,0.14);
}

.gpu-filter-chip.is-active {
  background: linear-gradient(100deg, #19b5fd 55%, #13cb9d 120%);
  color: #0b1624;
  box-shadow: 0 10px 24px rgba(25,181,253,0.24);
}

.gpu-search-results {
  position: relative;
  z-index: 20;
  display: grid;
  gap: 0.45rem;
  max-height: 360px;
  overflow-y: auto;
  padding: 0.65rem;
  border-radius: 18px;
  background: rgba(8,14,24,0.98);
  border: 1px solid rgba(25,181,253,0.2);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.gpu-result-item,
.gpu-search-empty {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(25,181,253,0.08);
  background: rgba(18,28,44,0.95);
  color: var(--text-main);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-sizing: border-box;
}

.gpu-result-item {
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.gpu-result-item:hover {
  transform: translateY(-1px);
  border-color: rgba(19,203,157,0.26);
  background: rgba(21,34,52,0.98);
}

.gpu-result-title {
  display: block;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.4;
}

.gpu-result-meta,
.gpu-selected-meta {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.gpu-selected-meta {
  min-height: 1.4em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  padding: 1.2rem 1rem 1.2rem 0;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(25,181,253,0.12);
  border: 1px solid rgba(25,181,253,0.22);
  color: var(--blue-main);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy h3 {
  margin: 0 0 0.9rem;
  color: var(--text-main);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

.contact-copy p {
  margin: 0 0 1.4rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-highlights {
  display: grid;
  gap: 1rem;
}

.contact-highlight {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13,22,37,0.98), rgba(9,18,32,0.98));
  border: 1px solid rgba(25,181,253,0.16);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.contact-highlight strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  font-size: 1rem;
}

.contact-highlight span {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.96rem;
}

.contact-form-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(25,181,253,0.08), transparent 30%),
    linear-gradient(180deg, rgba(10,18,32,0.98), rgba(8,14,25,0.98));
  border: 1px solid rgba(25,181,253,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.contact-field {
  display: grid;
  gap: 0.48rem;
}

.contact-field label {
  color: #b8e2fc;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-card input,
.contact-form-card textarea {
  margin: 0;
  background: rgba(10,18,32,0.92);
  border: 1px solid rgba(25,181,253,0.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.contact-form-card textarea {
  min-height: 180px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
}

.contact-submit {
  min-width: 220px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(100deg, #19b5fd 55%, #13cb9d 120%);
  color: #0b1624;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(25,181,253,0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.contact-submit:hover {
  background:linear-gradient(93deg,#13cb9d 2%,#19b5fd 98%,#0e85e2 140%);
  color: #fff;
  transform: scale(1.065) translateY(-2px);
  box-shadow: 0 18px 34px rgba(25,181,253,0.34);
  filter: brightness(1.04);
}

.contact-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(25,181,253,0.22), 0 18px 34px rgba(25,181,253,0.34);
}

.contact-status {
  min-height: 24px;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-privacy-note {
  margin: 0.25rem 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-privacy-note a,
.footer-links a {
  display: inline-block;
  padding: 0.2rem 0.1rem;
  color: var(--blue-main);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.form-privacy-note a:hover,
.footer-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateX(2px);
}

.repair-steps-section {
  padding-top: 1.9rem;
}

.repair-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.repair-step-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10,18,32,0.98), rgba(8,14,25,0.98));
  border: 1px solid rgba(25,181,253,0.16);
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

.repair-step-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(19,203,157,0.14);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.repair-step-card h3 {
  margin: 0 0 0.55rem;
  color: var(--text-main);
  font-size: 1.08rem;
}

.repair-step-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.repair-status {
  max-width: 720px;
  margin: 1rem auto 0;
  min-height: 26px;
  padding: 0;
  color: var(--text-secondary);
  font-weight: 700;
  line-height: 1.7;
}

.repair-status.is-visible {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(25,181,253,0.08);
  border: 1px solid rgba(25,181,253,0.16);
}

.repair-status.is-success {
  color: #dbfff4;
  background: rgba(19,203,157,0.12);
  border-color: rgba(19,203,157,0.22);
}

.repair-status.is-error {
  color: #ffdce3;
  background: rgba(255,122,144,0.12);
  border-color: rgba(255,122,144,0.22);
}

#repairSubmitBtn[disabled] {
  opacity: 0.76;
  cursor: wait;
  transform: none;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-card {
  background: #151f36;
  border-radius: 20px;
  border: 1px solid rgba(25,181,253,0.16);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
  padding: 2rem;
}

.legal-card h1 {
  margin: 0 0 1rem;
}

.legal-card h2 {
  margin: 2rem 0 0.8rem;
  color: var(--blue-main);
  font-size: 1.18rem;
}

.legal-card p,
.legal-card li,
.legal-card address {
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: normal;
}

.legal-card ul {
  padding-left: 1.2rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1rem;
  }

  .contact-actions {
    align-items: stretch;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }
}
/* ======================================== */
/* Form Layout & Abstände – Optimiert */
/* ======================================== */

form {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

/* Abstand zwischen Sektionen */
.form-section {
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 2rem 2.5rem;
    background: #0d1625;
    border-radius: 16px;
    border: 1px solid rgba(25,181,253,0.18);
}

/* Titel */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--blue-main), transparent);
    margin-bottom: 1.8rem;
}

/* ======================================== */
/* Input-Felder größer & klarer */
/* ======================================== */

input, select, textarea {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: #0b1220;
    border: 1px solid rgba(25,181,253,0.35);
    color: var(--text-main);
    font-size: 1.15rem;
    transition: border-color .25s ease, box-shadow .25s ease;
    width: 100%;
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--blue-main);
    box-shadow: 0 0 14px rgba(25,181,253,0.45);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

/* ======================================== */
/* GRID – Damit nichts gequetscht ist */
/* ======================================== */

/* Gleichmäßige 2-Spalten-Formulare */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 1.6em;
    width: 100%;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4em;
}

/* Einzelzeilige Felder (z. B. GPU-Modelle) */
.form-grid.full {
    grid-template-columns: 1fr;
}

/* GPU Info Text */
.gpu-info {
    margin-top: .5rem;
    font-size: 1.05rem;
    color: #9ccdfc;
    font-weight: 500;
}

/* Abstand zum Modell-Dropdown */
#gpuModel {
  margin-top: .7rem;
}

/* Mobil optimieren */
@media (max-width: 900px) {
  .form-grid-2, .gpu-grid {
    grid-template-columns: 1fr;
  }
}

/* GPU-Bereich stabil halten */
.gpu-section .form-grid {
    grid-template-columns: repeat(2, 1fr);
}

.gpu-section #gpuModel {
    grid-column: span 2; /* Modell immer volle Breite */
}

.problem-section .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6em;
}

.problem-section textarea {
    min-height: 180px;
    grid-column: span 2; /* Großes Textfeld über ganze Breite */
}
.upload-row {
    margin-top: 1.6em;
}
.checkbox-row {
    margin-top: 1em;
}
.pretty-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: 1.1em;
}

.pretty-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #19b5fd; /* modernes hellblau */
    cursor: pointer;
}

.pretty-checkbox .note {
    font-size: 0.9em;
    opacity: 0.7;
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4em;
}

.problem-grid select,
.problem-grid textarea {
    width: 100%;
}

#descriptionField {
    grid-column: span 2; /* Textbereich volle Breite */
    min-height: 150px;
}

@media (max-width: 1080px) {
  .main-header {
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 18px;
    gap: 12px;
  }

  .logo-area {
    padding-left: 0;
  }

  nav {
    order: 3;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 6px 0 0;
  }

  .header-actions {
    margin-left: auto;
    padding-right: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: none;
    padding: 52px 28px 34px;
  }

  .hero-image {
    min-height: 340px;
  }

  .hero-image::before {
    background: linear-gradient(
      180deg,
      rgba(11,22,36,0.18) 0%,
      rgba(11,22,36,0.72) 100%
    );
  }

  .hero-image img {
    object-position: center;
  }

  .section {
    margin: 1.2rem 18px 1.4rem;
    padding: 1.5rem;
  }

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

  .repair-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .repair-table thead,
  .repair-table tbody,
  .repair-table tr {
    white-space: nowrap;
  }

  .legal-page {
    padding: 30px 18px 48px;
  }
}

@media (max-width: 760px) {
  .main-header {
    padding: 10px 14px 14px;
    align-items: center;
    row-gap: 10px;
    flex-wrap: wrap;
  }

  .logo-area {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 124px);
  }

  .brandline {
    font-size: 1rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  nav {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 12px;
    width: min(290px, calc(100vw - 24px));
    flex: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    height: auto;
    padding: 0.7rem;
    margin-left: 0;
    border-radius: 18px;
    background: rgba(11, 22, 36, 0.92);
    border: 1px solid rgba(25,181,253,0.12);
    box-shadow: 0 24px 50px rgba(8, 16, 28, 0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 30;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.82rem 0.95rem;
    font-size: 0.96rem;
    line-height: 1.2;
    box-sizing: border-box;
    transform: none;
    border-radius: 14px;
    color: #e7f5ff;
    background: transparent;
    box-shadow: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(25,181,253,0.1);
    color: #f8fdff;
    box-shadow: none;
  }

  .nav-link.active {
    background: linear-gradient(100deg, rgba(25,181,253,0.22), rgba(19,203,157,0.14));
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(25,181,253,0.18);
  }

  .nav-link:hover,
  .nav-link.active {
    transform: none;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 0.55rem;
    padding-right: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .theme-toggle {
    min-width: 64px;
    width: 64px;
    height: 46px;
    padding: 0.35rem 0.4rem;
    border-radius: 14px;
  }

  .theme-toggle-thumb {
    left: 5px;
    width: 22px;
    height: 22px;
  }

  .theme-toggle[data-theme="light"] .theme-toggle-thumb {
    transform: translate(30px, -50%);
  }

  .theme-toggle-icon {
    font-size: 0.9rem;
  }

  .main-header.nav-open nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .hero-content {
    padding: 34px 18px 24px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.05;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.15rem;
  }

  .hero-note-stack {
    margin-top: 0.4rem;
    gap: 0.7rem;
  }

  .hero-note {
    padding: 0.85rem 0.95rem;
    font-size: 0.92rem;
  }

  .garantie-badge,
  .hero-cta {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-image {
    min-height: 230px;
  }

  .section {
    margin: 1rem 12px 1.2rem;
    padding: 1.15rem;
    border-radius: 20px;
  }

  .section-head {
    font-size: 1.08rem;
  }

  .service-grid,
  .repair-steps-grid,
  .form-grid,
  .gpu-section .form-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .gpu-section #gpuModel,
  #descriptionField,
  .problem-section textarea {
    grid-column: auto;
  }

  .service-card,
  .repair-step-card {
    min-width: 0;
    padding: 1rem;
  }

  .service-card:hover {
    transform: none;
  }

  .service-icon {
    font-size: 1.85rem;
  }

  .service-title {
    font-size: 1.02rem;
  }

  .service-desc {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .repair-table {
    display: block;
    width: 100%;
    min-width: 0;
    margin-bottom: 1.1rem;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    overflow: visible;
    white-space: normal;
  }

  .repair-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .repair-table tbody {
    display: grid;
    gap: 0.85rem;
  }

  .repair-table tr {
    display: grid;
    gap: 0.72rem;
    padding: 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(25,181,253,0.14);
    background: linear-gradient(180deg, rgba(16,28,44,0.98), rgba(13,24,40,0.98));
    box-shadow: 0 12px 26px rgba(8, 16, 28, 0.2);
  }

  .repair-table td {
    display: grid;
    grid-template-columns: minmax(0, 112px) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    background: transparent;
    border-bottom: none;
    white-space: normal;
    word-break: break-word;
  }

  .repair-table td::before {
    content: attr(data-label);
    color: #8fd3ff;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .repair-table .gpu-model,
  .repair-table .repair-price {
    font-size: 0.98rem;
  }

  .faq-item summary {
    padding: 0.9rem 1rem;
    font-size: 0.96rem;
  }

  .faq-item-body {
    padding: 0 1rem 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
  }

  .contact-copy {
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-copy h3 {
    font-size: 1.55rem;
  }

  .contact-highlights {
    gap: 0.8rem;
  }

  .contact-highlight {
    padding: 0.9rem 0.95rem;
  }

  .contact-form-card {
    padding: 1rem;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .contact-layout > *,
  .contact-highlight,
  .contact-field,
  .contact-actions,
  .contact-status,
  .form-privacy-note {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact-form-card input,
  .contact-form-card textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact-form-card textarea {
    min-height: 170px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }

  .gpu-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .gpu-filter-row::-webkit-scrollbar {
    display: none;
  }

  .gpu-filter-chip {
    flex: 0 0 auto;
  }

  .gpu-search-results {
    max-height: 280px;
    padding: 0.5rem;
  }

  .gpu-result-item,
  .gpu-search-empty {
    padding: 0.8rem 0.85rem;
  }

  .form-section {
    margin: 1.2rem 0;
    padding: 1.2rem;
  }

  input,
  select,
  textarea {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .pretty-checkbox {
    align-items: flex-start;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .footer-links {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-frame {
    width: 48px;
    height: 48px;
  }

  .logo-img,
  .logo-frame img {
    width: 32px;
    height: 32px;
  }

  .brandline {
    font-size: 0.88rem;
    max-width: 148px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 9.8vw, 2.2rem);
  }

  .hero-image {
    min-height: 190px;
  }

  .section {
    margin-left: 10px;
    margin-right: 10px;
    padding: 1rem;
  }

  .contact-copy h3 {
    font-size: 1.38rem;
    line-height: 1.2;
  }

  .repair-table td {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .repair-table td::before {
    font-size: 0.72rem;
  }

  .contact-form-card {
    padding: 0.95rem;
  }

  .service-card,
  .repair-step-card,
  .contact-highlight,
  .contact-form-card,
  .legal-card {
    border-radius: 16px;
  }

  #scrollTopBtn {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  .social-proof {
    font-size: 0.94rem;
  }

  .social-link-row {
    gap: 0.25rem;
  }
}

:root[data-theme="light"] {
  --header-bg: linear-gradient(90deg, #edf6ff 10%, #dff2ff 70%, #d5f8ef 125%);
  --nav-bg: #ffffff;
  --card-bg: #ffffff;
  --text-main: #11233b;
  --text-secondary: #4b6781;
  --blue-main: #0d94ea;
  --accent: #0ea97f;
  --shadow-brand: 0 10px 32px rgba(13, 148, 234, 0.18), 0 1px 10px rgba(14, 169, 127, 0.12);
}

:root[data-theme="light"] body {
  background: #eef5fb;
  color: var(--text-main);
}

:root[data-theme="light"] .main-header {
  box-shadow: 0 6px 28px rgba(13, 148, 234, 0.12);
}

:root[data-theme="light"] .logo-frame {
  background: linear-gradient(145deg, #f8fcff, #dbefff);
  box-shadow:
    inset 0 0 0 1px rgba(13,148,234,0.22),
    0 0 18px rgba(13,148,234,0.12);
}

:root[data-theme="light"] .logo-frame img {
  background: #fff;
  box-shadow: 0 0 12px rgba(13,148,234,0.12), 0 0 2px rgba(17,35,59,0.08);
}

:root[data-theme="light"] .brandline {
  text-shadow: 0 2px 10px rgba(13,148,234,0.12);
}

:root[data-theme="light"] .nav-link {
  color: #127ac0;
}

:root[data-theme="light"] .nav-link:hover,
:root[data-theme="light"] .nav-link.active {
  color: #082034;
}

:root[data-theme="light"] .theme-toggle {
  background: rgba(13,148,234,0.08);
  color: var(--text-main);
  border-color: rgba(13,148,234,0.18);
}

:root[data-theme="light"] .hero,
:root[data-theme="light"] .hero-image {
  background: #f4f9fd;
}

:root[data-theme="light"] .hero::after,
:root[data-theme="light"] .hero-content::after {
  background-image:
    linear-gradient(rgba(17,35,59,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,35,59,0.05) 1px, transparent 1px);
  opacity: 0.45;
}

:root[data-theme="light"] .hero-image::before {
  background: linear-gradient(
    90deg,
    #f4f9fd 0%,
    rgba(244,249,253,0.96) 16%,
    rgba(244,249,253,0.7) 34%,
    rgba(244,249,253,0.24) 58%,
    transparent 78%
  );
}

:root[data-theme="light"] .hero-image::after {
  background: linear-gradient(180deg, transparent, #f4f9fd);
}

:root[data-theme="light"] .hero-title,
:root[data-theme="light"] .section-title,
:root[data-theme="light"] .legal-card h1,
:root[data-theme="light"] .legal-card h2 {
  text-shadow: none;
}

:root[data-theme="light"] .hero-note,
:root[data-theme="light"] .faq-block,
:root[data-theme="light"] .faq-item,
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .contact-highlight,
:root[data-theme="light"] .contact-form-card,
:root[data-theme="light"] .repair-step-card,
:root[data-theme="light"] .section,
:root[data-theme="light"] .legal-card,
:root[data-theme="light"] .form-section {
  background: #ffffff;
  border-color: rgba(13,148,234,0.16);
  box-shadow: 0 14px 32px rgba(13,148,234,0.08);
}

:root[data-theme="light"] .service-desc,
:root[data-theme="light"] .faq-item-body,
:root[data-theme="light"] .legal-card p,
:root[data-theme="light"] .legal-card li,
:root[data-theme="light"] .legal-card address,
:root[data-theme="light"] .contact-copy p,
:root[data-theme="light"] .contact-highlight span,
:root[data-theme="light"] .repair-step-card p,
:root[data-theme="light"] .repair-status,
:root[data-theme="light"] .gpu-info {
  color: var(--text-secondary);
}

:root[data-theme="light"] .contact-highlight strong,
:root[data-theme="light"] .contact-copy h3,
:root[data-theme="light"] .repair-step-card h3,
:root[data-theme="light"] .gpu-result-title,
:root[data-theme="light"] .gpu-search-label {
  color: var(--text-main);
}

:root[data-theme="light"] .contact-form-card {
  background:
    radial-gradient(circle at top right, rgba(13,148,234,0.08), transparent 30%),
    #ffffff;
}

:root[data-theme="light"] .contact-field label,
:root[data-theme="light"] .form-privacy-note {
  color: var(--text-secondary);
}

:root[data-theme="light"] .contact-form-card input,
:root[data-theme="light"] .contact-form-card textarea,
:root[data-theme="light"] .gpu-search-input {
  background: #f8fbff;
  color: var(--text-main);
  border-color: rgba(13,148,234,0.22);
  box-shadow: inset 0 0 0 1px rgba(13,148,234,0.02);
}

:root[data-theme="light"] .contact-form-card input::placeholder,
:root[data-theme="light"] .contact-form-card textarea::placeholder,
:root[data-theme="light"] .gpu-search-input::placeholder {
  color: #6b8399;
}

:root[data-theme="light"] .gpu-filter-chip {
  background: #eef6fd;
  border-color: rgba(13,148,234,0.18);
  color: var(--text-main);
}

:root[data-theme="light"] .gpu-filter-chip.active {
  color: #082034;
}

:root[data-theme="light"] .gpu-search-results {
  background: #ffffff;
  border-color: rgba(13,148,234,0.16);
  box-shadow: 0 14px 28px rgba(13,148,234,0.08);
}

:root[data-theme="light"] .gpu-result-item,
:root[data-theme="light"] .gpu-search-empty {
  background: #f8fbff;
  color: var(--text-main);
  border-color: rgba(13,148,234,0.12);
}

:root[data-theme="light"] .gpu-result-item:hover {
  background: #eef6fd;
  border-color: rgba(14,169,127,0.22);
}

:root[data-theme="light"] .gpu-result-meta,
:root[data-theme="light"] .gpu-selected-meta {
  color: var(--text-secondary);
}

:root[data-theme="light"] .repair-table th {
  color: #082034;
}

:root[data-theme="light"] .repair-table th,
:root[data-theme="light"] .repair-table td {
  border-bottom-color: rgba(13,148,234,0.12);
}

:root[data-theme="light"] .repair-table td {
  background: #f7fbff;
  color: var(--text-main);
}

@media (max-width: 760px) {
  :root[data-theme="light"] .repair-table tr {
    background: #ffffff;
    border-color: rgba(13,148,234,0.14);
    box-shadow: 0 12px 24px rgba(13, 148, 234, 0.08);
  }

  :root[data-theme="light"] .repair-table td {
    background: transparent;
  }

  :root[data-theme="light"] .repair-table td::before {
    color: #3a7ab7;
  }
}

:root[data-theme="light"] .menu-toggle {
  background: rgba(255,255,255,0.82);
  color: #17304a;
  border-color: rgba(13,148,234,0.2);
}

:root[data-theme="light"] .theme-toggle {
  background: rgba(255,255,255,0.82);
  border-color: rgba(13,148,234,0.2);
}

@media (max-width: 760px) {
  :root[data-theme="light"] .main-header nav {
    background: rgba(255,255,255,0.92);
    border-color: rgba(13,148,234,0.14);
    box-shadow: 0 24px 46px rgba(13, 148, 234, 0.14);
  }

  :root[data-theme="light"] .nav-link {
    color: #17304a;
  }

  :root[data-theme="light"] .nav-link:hover {
    background: rgba(13,148,234,0.08);
    color: #0d2f4d;
  }

  :root[data-theme="light"] .nav-link.active {
    background: linear-gradient(100deg, rgba(13,148,234,0.16), rgba(59,130,246,0.08));
    color: #0d2f4d;
    box-shadow: inset 0 0 0 1px rgba(13,148,234,0.14);
  }
}

:root[data-theme="light"] input,
:root[data-theme="light"] select,
:root[data-theme="light"] textarea {
  background: #f8fbff;
  color: var(--text-main);
  border-color: rgba(13,148,234,0.22);
}

:root[data-theme="light"] input::placeholder,
:root[data-theme="light"] textarea::placeholder {
  color: #6b8399;
}

:root[data-theme="light"] .garantie-badge {
  color: #17304a;
  background: rgba(13,148,234,0.08);
  border-color: rgba(13,148,234,0.16);
  box-shadow: 0 8px 24px rgba(13,148,234,0.12);
}

:root[data-theme="light"] .garantie-badge-static {
  background: linear-gradient(180deg, rgba(13,148,234,0.08), rgba(14,169,127,0.08));
  border-color: rgba(14,169,127,0.18);
  color: #17304a;
}

:root[data-theme="light"] .garantie-badge-static::before {
  background: rgba(14,169,127,0.14);
  color: #0b8f6f;
}

:root[data-theme="light"] .service-garantie {
  color: #082034;
}

:root[data-theme="light"] .faq-item[open] summary {
  background: rgba(13,148,234,0.08);
}

:root[data-theme="light"] #scrollTopBtn {
  color: #082034;
}
