:root {
  --bg: #fbfaf7;
  --surface: #f3f2ee;
  --surface-2: #ebe9e3;
  --ink: #1d1d1f;
  --ink-2: #454548;
  --muted: #77777c;
  --line: #deddd8;
  --orange: #f58a1f;
  --orange-2: #ffad4e;
  --orange-soft: #ffe8cf;
  --dark: #171717;
  --white: #fff;
  --green: #25d366;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 55px rgba(35, 28, 20, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", sans-serif !important;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
.review-viewport:focus-visible,
.brand-marquee:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--orange), white 15%);
  outline-offset: 3px;
}
.wrap {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.section-space {
  padding-block: 108px;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: -80px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  top: 18px;
}
.icon {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kicker {
  display: inline-block;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ad5f17;
  margin-bottom: 16px;
}
.kicker-light {
  color: #ffb86c;
}
h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", sans-serif;
}
h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
}
p {
  margin: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(221, 220, 215, 0.8);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 9px 30px rgba(20, 20, 20, 0.06);
  background: rgba(251, 250, 247, 0.96);
}
.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: height 0.25s var(--ease);
}
.site-header.scrolled .nav-shell {
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: #111;
}
.brand > span > span {
  color: var(--orange);
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav > a,
.nav-dropdown-button {
  font-size: 13px;
  font-weight: 400;
  border: 0;
  background: transparent;
  padding: 10px 0;
  transition: color 0.2s;
}
.desktop-nav > a:hover,
.nav-dropdown-button:hover {
  color: #b85c00;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-button {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-button .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-dropdown-button[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  transform: translate(-50%, -8px);
  width: 260px;
  background: #fff;
  border: 1px solid #e5e3de;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 25px 70px rgba(30, 25, 20, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  padding: 12px 10px;
  border-radius: 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.nav-dropdown-menu a:hover {
  background: #f6f4ef;
}
.nav-dropdown-menu .icon {
  width: 16px;
  height: 16px;
  color: #b7610f;
}
.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.header-contact:hover {
  transform: translateY(-2px);
  background: #2d2d2f;
}
.header-contact .icon {
  width: 16px;
  height: 16px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  border-top: 1px solid var(--line);
  background: #fbfaf7;
}
.mobile-nav-inner {
  display: grid;
  padding-block: 20px 28px;
}
.mobile-nav a {
  padding: 13px 0;
  border-bottom: 1px solid #e9e7e1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}
.mobile-nav-cta {
  margin-top: 12px;
  border: 0 !important;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  padding: 14px 16px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero */
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 52px;
  align-items: center;
  padding-block: 58px 46px;
}
.hero-copy {
  max-width: 560px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #66666b;
  margin-bottom: 24px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245, 138, 31, 0.14);
}
.hero h1 {
  font-size: clamp(44px, 5vw, 61px);
  line-height: 1.04;
  letter-spacing: -0.065em;
  max-width: 650px;
}
.hero h1 span {
  color: #be620b;
}
.hero-copy > p {
  margin-top: 24px;
  max-width: 545px;
  color: #66666c;
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  border: 1px solid transparent;
  min-height: 49px;
  padding: 12px 17px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.2s, color 0.2s;
}
.btn .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover .icon {
  transform: translate(2px, -2px);
}
.btn-primary {
  background: var(--orange);
  color: #21170f;
  box-shadow: 0 12px 24px rgba(223, 117, 12, 0.18);
}
.btn-primary:hover {
  background: #ff9c3c;
  box-shadow: 0 16px 34px rgba(223, 117, 12, 0.24);
}
.btn-secondary {
  background: #fff;
  border-color: #deddd8;
}
.btn-secondary:hover {
  background: #f4f3ef;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #333336;
}
.btn-white {
  background: #fff;
  color: #171717;
}
.btn-white:hover {
  background: #f6f6f6;
}
.btn-orange {
  background: var(--orange);
  color: #171717;
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.trust-row > div {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.trust-row .icon {
  color: #b95e08;
  margin-top: 2px;
}
.trust-row strong,
.trust-row small {
  display: block;
}
.trust-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.trust-row small {
  font-size: 10px;
  color: #88878b;
  margin-top: 2px;
  white-space: nowrap;
}
.hero-product {
  height: 575px;
  border-radius: 36px;
  background: linear-gradient(135deg, #f0ede7 0%, #fff7ed 51%, #f7e0c5 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid #ebe7df;
  isolation: isolate;
}
.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.65),
    transparent 42%
  );
  z-index: -1;
}
.product-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ffbe79 0,
    #f58a1f 42%,
    rgba(245, 138, 31, 0) 72%
  );
  filter: blur(8px);
  opacity: 0.48;
  left: 47%;
  top: 52%;
  transform: translate(-50%, -50%);
}
.hero-phone {
  position: absolute;
  border-radius: 42px;
  background: #151515;
  border: 7px solid #2a2928;
  box-shadow: 0 30px 70px rgba(55, 31, 13, 0.24);
  transition: transform 0.6s var(--ease);
}
.phone-back {
  width: 250px;
  height: 470px;
  left: 19%;
  top: 75px;
  transform: rotate(-10deg);
  background: linear-gradient(160deg, #ddd9d2, #a9a399);
  border-color: #625e58;
}
.phone-front {
  width: 255px;
  height: 488px;
  right: 18%;
  top: 43px;
  transform: rotate(9deg);
  z-index: 2;
}
.hero-product:hover .phone-back {
  transform: rotate(-7deg) translateY(-5px);
}
.hero-product:hover .phone-front {
  transform: rotate(6deg) translateY(-7px);
}
.camera {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 42% 37%,
    #73777d 0 12%,
    #141619 17% 54%,
    #3b3d40 56% 67%,
    #111 70%
  );
  border: 4px solid #b9b4ac;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
}
.camera-a {
  left: 24px;
  top: 26px;
}
.camera-b {
  left: 78px;
  top: 26px;
}
.camera-c {
  left: 24px;
  top: 80px;
}
.phone-mark {
  position: absolute;
  inset: auto 0 47%;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: -0.1em;
  color: #6b675f;
}
.phone-notch {
  position: absolute;
  width: 88px;
  height: 25px;
  background: #161616;
  border-radius: 0 0 16px 16px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 5px;
  border-radius: 32px;
  background: linear-gradient(160deg, #ffb762 0%, #f58a1f 45%, #da6500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #171717;
  text-align: center;
  overflow: hidden;
}
.phone-screen::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  top: 56px;
}
.phone-screen::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  top: 20px;
}
.phone-screen img {
  width: 126px;
  height: 126px;
  object-fit: contain;
  border-radius: 26px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}
.phone-screen small {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 600;
}
.phone-screen strong {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.floating-service {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 14px 34px rgba(46, 33, 22, 0.12);
  backdrop-filter: blur(10px);
}
.floating-service-a {
  left: 26px;
  bottom: 36px;
}
.floating-service-b {
  right: 24px;
  top: 36px;
}
.floating-service > .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 10px;
  background: #f4f1ec;
  color: #a85c14;
}
.floating-service strong,
.floating-service small {
  display: block;
}
.floating-service strong {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 13px;
}
.floating-service small {
  font-size: 9px;
  color: #838287;
  margin-top: 1px;
}
.product-label {
  position: absolute;
  right: 27px;
  bottom: 27px;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #7b746d;
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding-bottom: 18px;
}
.quick-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.quick-links a:hover {
  background: #f7eee4;
  border-color: #efd1af;
  transform: translateY(-2px);
}
.quick-links .icon {
  width: 15px;
  height: 15px;
  color: #ae6017;
}

/* Shared headings */
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 36px;
}
.section-heading-left {
  align-items: start;
}
.section-heading h2,
.contract-head h2,
.data-copy h2,
.energy-copy h2,
.reviews-head h2,
.faq-side h2,
.contact-inner h2 {
  font-size: clamp(33px, 3.8vw, 47px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.section-heading h2 span,
.contract-head h2 span,
.data-copy h2 span,
.energy-copy h2 span,
.reviews-head h2 span,
.faq-side h2 span,
.contact-inner h2 span {
  color: #bb620d;
}
.section-heading > p {
  max-width: 360px;
  color: #77767b;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 3px;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}
.service-card {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e6e4df;
  background: #f1f0ec;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s;
  isolation: isolate;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d8d5cf;
}
.service-copy {
  position: relative;
  z-index: 3;
  padding: 28px;
  max-width: 56%;
}
.service-index {
  font-size: 10px;
  color: #9a8d80;
  letter-spacing: 0.12em;
}
.service-copy h3 {
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.08;
  margin-top: 12px;
}
.service-copy p {
  font-size: 12px;
  color: #6d6c71;
  line-height: 1.75;
  margin-top: 12px;
  max-width: 340px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.service-link .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.25s;
}
.service-card:hover .service-link .icon {
  transform: translate(3px, -3px);
}
.service-card > img {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 58%;
  height: 95%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.service-card:hover > img {
  transform: scale(1.035) translateY(-2px);
}
.service-repair {
  grid-column: span 7;
  min-height: 420px;
  background: #f7eadb;
}
.service-repair > img {
  width: 57%;
  height: 100%;
  right: -1%;
  bottom: -3%;
}
.service-repair .service-copy {
  max-width: 50%;
}
.service-data {
  grid-column: span 5;
  min-height: 420px;
  background: #202020;
  color: #fff;
  border-color: #202020;
}
.service-data .service-copy p {
  color: #bdbdc1;
}
.service-data .service-index {
  color: #ffbd7f;
}
.service-data > img {
  width: 69%;
  right: -16%;
  bottom: -9%;
}
.service-accessory {
  grid-column: span 4;
  background: #e9eef6;
}
.service-accessory .service-copy {
  max-width: 68%;
}
.service-accessory > img {
  width: 67%;
  right: -14%;
  bottom: -18%;
}
.service-contract {
  grid-column: span 8;
  background: #efe8ff;
}
.service-contract .service-copy {
  max-width: 52%;
}
.service-resale {
  grid-column: span 7;
  background: #e7f0e8;
}
.service-resale .service-copy {
  max-width: 50%;
}
.service-energy {
  grid-column: span 5;
  background: #ffedda;
}
.service-energy .service-copy {
  max-width: 65%;
}
.service-energy > img {
  width: 74%;
  right: -22%;
  bottom: -14%;
}
.duo-device {
  position: absolute;
  right: -2%;
  bottom: -5%;
  width: 55%;
  height: 95%;
}
.duo-device img {
  position: absolute;
  width: 72%;
  height: 78%;
  object-fit: contain;
}
.duo-device img:first-child {
  left: -2%;
  top: 8%;
  transform: rotate(-9deg);
}
.duo-device img:last-child {
  right: -6%;
  bottom: -5%;
  transform: rotate(12deg);
}
.network-art {
  position: absolute;
  right: 1%;
  top: 0;
  width: 47%;
  height: 100%;
  display: grid;
  place-items: center;
}
.network-art > span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(101, 77, 136, 0.22);
}
.network-art > span:nth-child(1) {
  width: 120px;
  height: 120px;
}
.network-art > span:nth-child(2) {
  width: 230px;
  height: 230px;
}
.network-art > span:nth-child(3) {
  width: 340px;
  height: 340px;
}
.network-phone {
  width: 128px;
  height: 245px;
  border-radius: 28px;
  background: #1f1f21;
  border: 5px solid #55515b;
  position: relative;
  box-shadow: 0 30px 55px rgba(57, 46, 73, 0.16);
  transform: rotate(8deg);
}
.network-phone::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 21px;
  background: linear-gradient(155deg, #bc9ef4, #7f62ca 44%, #3e315c);
}
.network-phone i {
  position: absolute;
  z-index: 2;
  width: 53px;
  height: 15px;
  border-radius: 0 0 12px 12px;
  background: #1f1f21;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
}

/* Repair configurator */
.repair-section {
  background: #f0efeb;
  border-top: 1px solid #e4e1db;
  border-bottom: 1px solid #e4e1db;
}
.repair-builder {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
  border: 1px solid #e3e1dc;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30, 25, 20, 0.04);
}
.repair-form {
  padding: 38px;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.form-step > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3eee8;
  color: #a65e19;
  font-size: 10px;
  font-weight: 600;
}
.form-step strong,
.form-step small {
  display: block;
}
.form-step strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.form-step small {
  font-size: 10px;
  color: #8b8a8e;
  margin-top: 1px;
}
.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 25px;
}
.segment {
  height: 50px;
  border: 1px solid #dddcd7;
  background: #faf9f6;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.segment.active {
  background: #fff2e5;
  border-color: #f0b77b;
  box-shadow: inset 0 0 0 1px #f0b77b;
  color: #914b09;
}
.segment .icon {
  width: 17px;
  height: 17px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 29px;
}
.form-grid label,
.tariff-finder label {
  display: grid;
  gap: 7px;
}
.form-grid label > span,
.tariff-finder label > span {
  font-size: 10px;
  color: #77767b;
  letter-spacing: 0.04em;
}
input,
select {
  width: 100%;
  height: 50px;
  border: 1px solid #dddcd7;
  border-radius: 12px;
  background: #faf9f6;
  color: #27272a;
  padding: 0 14px;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input:focus,
select:focus {
  border-color: #eea65f;
  box-shadow: 0 0 0 4px rgba(245, 138, 31, 0.1);
  background: #fff;
}
.defect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.defect-grid button {
  min-height: 54px;
  border: 1px solid #dddcd7;
  border-radius: 13px;
  background: #faf9f6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.defect-grid button:hover {
  transform: translateY(-1px);
}
.defect-grid button.active {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}
.defect-grid .icon {
  width: 16px;
  height: 16px;
}
.repair-submit {
  width: 100%;
  margin-top: 2px;
}
.micro-note {
  font-size: 9px;
  line-height: 1.6;
  color: #9a999d;
  margin-top: 12px;
}
.repair-stage {
  min-height: 620px;
  background: linear-gradient(145deg, #ffe0bb, #f5942d);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.repair-stage::before,
.repair-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}
.repair-stage::before {
  width: 420px;
  height: 420px;
}
.repair-stage::after {
  width: 600px;
  height: 600px;
}
.repair-stage > img {
  width: 90%;
  height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 35px rgba(95, 46, 9, 0.18));
}
.repair-stage-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}
.repair-facts {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.repair-facts > div {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 13px;
  padding: 10px 11px;
}
.repair-facts span,
.repair-facts strong {
  display: block;
}
.repair-facts span {
  font-size: 8px;
  color: #b4661c;
}
.repair-facts strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 500;
  margin-top: 2px;
}

/* Brand marquee */
.brand-band {
  padding-block: 32px 36px;
  background: #fff;
  border-bottom: 1px solid #e8e6e1;
}
.brand-band-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.brand-band-head h2 {
  font-size: 22px;
  letter-spacing: -0.04em;
}
.brand-band-head p {
  font-size: 11px;
  color: #838287;
}
.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brandScroll 36s linear infinite;
}
.brand-marquee:hover .brand-marquee-track,
.brand-marquee:focus .brand-marquee-track {
  animation-play-state: paused;
}
.brand-set {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}
.brand-set button {
  border: 1px solid #dfddd8;
  background: #faf9f6;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.brand-set button:hover {
  background: #fff2e5;
  border-color: #f2bf8e;
}
@keyframes brandScroll {
  to {
    transform: translateX(-50%);
  }
}

/* Accessories */
.accessory-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}
.accessory-visual {
  height: 440px;
  border-radius: 28px;
  background: #eef1f5;
  border: 1px solid #e2e5e9;
  position: relative;
  overflow: hidden;
}
.accessory-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px 30px 10px;
  transition: transform 0.5s var(--ease);
}
.accessory-visual:hover img {
  transform: scale(1.025);
}
.accessory-visual > span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #6e7178;
}
.accessory-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.accessory-card {
  min-height: 214px;
  border: 1px solid #e2e0db;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.28s var(--ease), box-shadow 0.28s;
}
.accessory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30, 25, 20, 0.07);
}
.accessory-card > .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 11px;
  background: #fff2e5;
  color: #a9580c;
  margin-bottom: auto;
}
.accessory-card h3 {
  font-size: 20px;
}
.accessory-card p {
  font-size: 11px;
  color: #7c7b80;
  margin-top: 5px;
}
.accessory-finder {
  margin-top: 14px;
  border: 1px solid #e2e0db;
  background: #f2f0eb;
  border-radius: 22px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 14px;
}
.accessory-finder .kicker {
  margin-bottom: 6px;
}
.accessory-finder h3 {
  font-size: 20px;
}
.accessory-finder input {
  background: #fff;
}

/* Contracts */
.contract-section {
  background: #181818;
  color: #fff;
}
.contract-head {
  max-width: 760px;
}
.contract-head h2 span {
  color: #ffac5d;
}
.contract-head > p {
  color: #b8b8bc;
  max-width: 650px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.85;
}
.provider-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 160px repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
}
.provider-label,
.provider {
  height: 84px;
  border-radius: 18px;
  border: 1px solid #343434;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider-label {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #9d9da2;
}
.provider {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.provider img {
  max-width: 110px;
  max-height: 40px;
  object-fit: contain;
}
.provider > span:not(.o2-mark) {
  display: none;
  color: #111;
  font-weight: 600;
}
.provider img[style*="display: none"] + span {
  display: block;
}
.provider-1und1 {
  background: #0a2c78;
}
.provider-1und1 > span {
  color: #fff !important;
}
.provider-vodafone {
  background: #fff;
}
.provider-telekom {
  background: #fff;
}
.provider-o2 {
  background: #143a9b;
}
.o2-mark {
  font-size: 40px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.08em;
}
.o2-mark sub {
  font-size: 21px;
  vertical-align: -0.12em;
}
.contract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.contract-card {
  min-height: 310px;
  border: 1px solid #363636;
  background: #212121;
  border-radius: 25px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.contract-card:hover {
  transform: translateY(-3px);
  background: #252525;
}
.contract-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #2d2d2d;
  display: grid;
  place-items: center;
  color: #ffab5b;
}
.contract-icon .icon {
  width: 22px;
  height: 22px;
}
.contract-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c3c3c7;
  margin-top: auto;
}
.contract-card h3 {
  font-size: 27px;
  line-height: 1.1;
  max-width: 480px;
  margin-top: 12px;
}
.contract-card p {
  font-size: 12px;
  line-height: 1.8;
  color: #a9a9ad;
  max-width: 520px;
  margin-top: 12px;
}
.text-link {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  margin-top: 20px;
  color: inherit;
}
.text-link .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.text-link:hover .icon {
  transform: translate(3px, -3px);
}
.tariff-finder {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
  border: 1px solid #393939;
  background: #202020;
  border-radius: 22px;
  padding: 20px;
}
.tariff-finder .kicker {
  margin-bottom: 5px;
}
.tariff-finder h3 {
  font-size: 20px;
}
.tariff-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.tariff-options button {
  height: 50px;
  border: 1px solid #3b3b3b;
  border-radius: 12px;
  background: #2a2a2a;
  color: #d6d6d8;
  font-size: 11px;
}
.tariff-options button.active {
  background: #fff1e2;
  color: #8c4908;
  border-color: #f2b77c;
}
.tariff-finder select {
  background: #2a2a2a;
  border-color: #3c3c3c;
  color: #fff;
}
.provider-note {
  font-size: 9px;
  color: #707075;
  margin-top: 12px;
}

/* Data */
.data-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.data-visual {
  height: 520px;
  border-radius: 28px;
  background: linear-gradient(145deg, #202020, #3b352f);
  position: relative;
  overflow: hidden;
}
.data-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 25px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.2));
}
.data-visual > span {
  position: absolute;
  bottom: 20px;
  left: 22px;
  color: #c7c1ba;
  font-size: 9px;
  letter-spacing: 0.15em;
}
.data-copy > p {
  margin-top: 20px;
  color: #76757a;
  font-size: 13px;
  line-height: 1.85;
  max-width: 580px;
}
.use-cases {
  display: grid;
  gap: 8px;
  margin: 26px 0;
}
.use-cases > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 14px;
  border: 1px solid #e3e1dc;
  background: #fff;
  border-radius: 15px;
}
.use-cases .icon {
  grid-row: span 2;
  width: 35px;
  height: 35px;
  padding: 8px;
  background: #fff1e4;
  border-radius: 10px;
  color: #a8590e;
}
.use-cases strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.use-cases small {
  font-size: 10px;
  color: #8a898e;
  margin-top: 2px;
}

/* Resale */
.resale-section {
  background: #f0efeb;
  border-top: 1px solid #e4e1db;
  border-bottom: 1px solid #e4e1db;
}
.resale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.resale-card {
  min-height: 440px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid #dfddd7;
}
.resale-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 55%;
}
.card-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.resale-copy h3 {
  font-size: 31px;
  line-height: 1.08;
  margin-top: 16px;
}
.resale-copy p {
  font-size: 12px;
  color: #66666b;
  line-height: 1.8;
  margin-top: 14px;
}
.resale-card > img {
  position: absolute;
  width: 62%;
  height: 94%;
  right: -8%;
  bottom: -6%;
  object-fit: contain;
  transition: transform 0.45s var(--ease);
}
.resale-card:hover > img {
  transform: scale(1.03) translateY(-4px);
}
.resale-buy {
  background: #e7f0e8;
}
.resale-sell {
  background: #fae6d2;
}

/* Energy */
.energy-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e3e1dc;
  overflow: hidden;
}
.energy-copy {
  padding: 44px;
}
.energy-copy > p {
  color: #727176;
  font-size: 13px;
  line-height: 1.85;
  margin-top: 20px;
  max-width: 600px;
}
.energy-checks {
  display: grid;
  gap: 8px;
  margin: 26px 0;
}
.energy-checks > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}
.energy-checks .icon {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 9px;
  background: #fff1e3;
  color: #a9580c;
}
.energy-visual {
  min-height: 500px;
  background: #ffe6c9;
  position: relative;
  overflow: hidden;
}
.energy-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.energy-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  padding: 12px 14px;
  backdrop-filter: blur(9px);
}
.energy-badge > .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  background: #1d1d1f;
  color: #fff;
  border-radius: 10px;
}
.energy-badge strong,
.energy-badge small {
  display: block;
}
.energy-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.energy-badge small {
  font-size: 9px;
  color: #858489;
}

/* Reviews */
.reviews-section {
  background: #fff;
  border-top: 1px solid #eceae6;
  border-bottom: 1px solid #eceae6;
}
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.slider-controls {
  display: flex;
  gap: 8px;
}
.slider-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #dedcd7;
  background: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.slider-controls button:hover {
  background: #f4f2ee;
  transform: translateY(-2px);
}
.review-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 10px;
  color: #8d8c91;
}
.google-g {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3f3f3;
  font-size: 16px;
  font-weight: 600;
  color: #4285f4;
}
.review-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-top: 18px;
}
.review-viewport::-webkit-scrollbar {
  display: none;
}
.review-track {
  display: flex;
  gap: 12px;
}
.review-card {
  flex: 0 0 calc(50% - 6px);
  scroll-snap-align: start;
  min-height: 300px;
  border: 1px solid #e2e0db;
  border-radius: 24px;
  background: #fbfaf7;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  letter-spacing: 0.08em;
  color: #f4a23c;
  font-size: 14px;
}
.review-card blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 28px 0;
  color: #36363a;
}
.review-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1e1e1f;
  color: #fff;
  font-size: 10px;
}
.review-person strong,
.review-person small {
  display: block;
}
.review-person strong {
  font-size: 11px;
  font-weight: 500;
}
.review-person small {
  font-size: 9px;
  color: #88878c;
  margin-top: 1px;
}
.reviews-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 10px;
  color: #7c7b80;
}
.reviews-foot > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.reviews-foot .icon {
  width: 14px;
  height: 14px;
}
.review-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}
.progress-line {
  width: 100px;
  height: 1px;
  background: #d9d7d2;
  display: block;
}
.progress-line i {
  display: block;
  height: 2px;
  width: 33.333%;
  background: #1d1d1f;
  transition: width 0.25s;
}

/* Locations */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.location-card {
  border: 1px solid #e1dfda;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(30, 25, 20, 0.07);
}
.location-photo {
  height: 250px;
  background: #efece6;
  position: relative;
  overflow: hidden;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.location-card:hover .location-photo img {
  transform: scale(1.025);
}
.location-photo > span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 8px;
  letter-spacing: 0.11em;
}
.location-body {
  padding: 22px;
}
.location-kicker {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #aa621e;
}
.location-body h3 {
  font-size: 25px;
  margin-top: 7px;
}
.location-address {
  font-size: 11px;
  color: #78777c;
  line-height: 1.7;
  margin-top: 8px;
}
.location-body dl {
  margin: 18px 0;
  display: grid;
  gap: 8px;
}
.location-body dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #ebe9e4;
  padding-top: 8px;
}
.location-body dt,
.location-body dd {
  font-size: 9px;
  margin: 0;
}
.location-body dt {
  color: #929196;
}
.location-body dd {
  color: #505055;
  text-align: right;
}
.location-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 760px) {
  .accessory-finder { grid-template-columns: 1fr; }
  .accessory-finder .btn { width: 100%; }
}
.location-actions a,
.location-actions button {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.location-actions button {
  color: #a85a11;
}
.location-actions .icon {
  width: 14px;
  height: 14px;
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 118px;
}
.faq-side > p {
  font-size: 12px;
  line-height: 1.8;
  color: #77767b;
  max-width: 290px;
  margin-top: 18px;
}
.faq-list {
  border-top: 1px solid #dcdad5;
}
.faq-list details {
  border-bottom: 1px solid #dcdad5;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: -0.025em;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #dedcd7;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.faq-icon .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.faq-list details[open] .faq-icon {
  background: #1d1d1f;
  color: #fff;
}
.faq-list details[open] .faq-icon .icon {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 50px 22px 0;
  font-size: 12px;
  color: #737277;
  line-height: 1.85;
  max-width: 760px;
}

/* Contact / footer */
.contact-section {
  padding: 28px;
  background: #171717;
  color: #fff;
}
.contact-inner {
  min-height: 400px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1e1e1f, #26211d 58%, #442612);
  position: relative;
  overflow: hidden;
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-inner::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 138, 31, 0.48),
    rgba(245, 138, 31, 0) 68%
  );
  right: -70px;
  top: -100px;
}
.contact-inner > div:first-child,
.contact-actions {
  position: relative;
  z-index: 2;
}
.contact-inner h2 {
  font-size: clamp(38px, 4.6vw, 58px);
}
.contact-inner > div:first-child > p {
  color: #b6b6ba;
  font-size: 13px;
  margin-top: 18px;
}
.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-logo {
  position: absolute;
  width: 280px;
  height: 280px;
  object-fit: contain;
  right: 50px;
  bottom: 10px;
  opacity: 0.16;
  filter: grayscale(1);
}
.footer {
  padding: 54px 0 24px;
  background: #0f0f0f;
  color: #d6d6d7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 40px;
}
.footer-brand-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #88888d;
  max-width: 290px;
  margin-top: 14px;
}
.footer-brand img {
  background: #000;
}
.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footer-grid strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.footer-grid a,
.footer-grid span {
  font-size: 14px;
  color: #8f8f94;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #242424;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: #65656a;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-bottom .icon {
  width: 12px;
  height: 12px;
}

/* Floating contact */
.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 91, 43, 0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 91, 43, 0.28);
}
.whatsapp-float svg {
  width: 21px;
  height: 21px;
}
.whatsapp-float span {
  font-size: 11px;
  font-weight: 500;
}
.mobile-contact-bar {
  display: none;
}
.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  max-width: min(560px, calc(100% - 30px));
  padding: 13px 16px;
  border-radius: 13px;
  background: #1d1d1f;
  color: #fff;
  font-size: 11px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease) var(--delay, 0ms),
    transform 0.55s var(--ease) var(--delay, 0ms);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .wrap {
    width: min(100% - 44px, 1180px);
  }
  .desktop-nav {
    gap: 20px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .hero-product {
    height: 535px;
  }
  .phone-back {
    left: 12%;
  }
  .phone-front {
    right: 11%;
  }
  .service-copy {
    max-width: 62%;
  }
  .service-repair .service-copy,
  .service-contract .service-copy,
  .service-resale .service-copy {
    max-width: 56%;
  }
  .repair-builder {
    grid-template-columns: 1fr;
  }
  .repair-stage {
    min-height: 500px;
  }
  .repair-stage > img {
    height: 90%;
    width: 70%;
  }
  .provider-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .provider-label {
    grid-column: 1/-1;
    height: auto;
    background: transparent;
    border: 0;
    justify-content: flex-start;
    padding: 0;
    color: #999;
    margin-bottom: 2px;
  }
  .tariff-finder {
    grid-template-columns: 1fr 1fr;
  }
  .tariff-finder > div:first-child {
    grid-column: 1/-1;
  }
  .data-section {
    gap: 38px;
  }
  .resale-copy {
    max-width: 62%;
  }
  .faq-section {
    gap: 55px;
  }
}

/* Shared service-page makeover: editorial explanation, soft utility colors and real visual anchors. */
.service-page .service-makeover {
  padding: 30px 0 112px;
  background: #f1f0ec;
  border-top: 1px solid var(--line);
}

.service-page .service-makeover .wrap {
  display: grid;
  gap: 16px;
}

.service-page .service-makeover-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .72fr);
  gap: 48px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffdf9 0%, #fff0dc 100%);
}

.service-page .service-makeover-intro .eyebrow {
  margin-bottom: 14px;
}

.service-page .service-makeover-intro h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: .98;
  letter-spacing: -.055em;
}

.service-page .service-makeover-intro p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-page .service-makeover-art {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #eaf1f3 0%, #f8e2d7 100%);
}

.service-page .service-makeover-art img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 20px 20px rgba(29, 29, 31, .12));
}

.service-page .service-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-page .service-step {
  position: relative;
  min-height: 218px;
  padding: 24px;
  border: 1px solid #e5e1da;
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-page .service-step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #a9580c;
  background: #ffe5c8;
}

.service-page .service-step:nth-child(2) .service-step-icon {
  color: #3e6871;
  background: #dcecef;
}

.service-page .service-step:nth-child(3) .service-step-icon {
  color: #657049;
  background: #e6edcf;
}

.service-page .service-step-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-page .service-step-number {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #aaa7a1;
  font: 12px/1 "Space Grotesk", sans-serif;
  letter-spacing: .08em;
}

.service-page .service-step h3 {
  max-width: 18ch;
  margin: 30px 0 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.service-page .service-step p {
  max-width: 34ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-page .service-makeover-note {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(194, 101, 12, .12);
  border-radius: var(--radius-md);
  background: #ffe8cf;
}

.service-page .service-makeover-note strong {
  flex: 0 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.service-page .service-makeover-note span {
  color: #665e56;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .service-page .service-makeover-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .service-page .service-makeover-art {
    min-height: 220px;
  }

  .service-page .service-steps {
    grid-template-columns: 1fr;
  }

  .service-page .service-step {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .service-page .service-makeover {
    padding: 20px 0 76px;
  }

  .service-page .service-makeover-intro {
    gap: 22px;
    padding: 22px;
    border-radius: 22px;
  }

  .service-page .service-makeover-intro h2 {
    font-size: 34px;
  }

  .service-page .service-makeover-intro p {
    margin-top: 14px;
    font-size: 14px;
  }

  .service-page .service-makeover-art {
    min-height: 180px;
  }

  .service-page .service-step {
    padding: 20px;
  }

  .service-page .service-step h3 {
    font-size: 20px;
  }

  .service-page .service-makeover-note {
    display: block;
    padding: 18px;
  }

  .service-page .service-makeover-note span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
  }
}
@media (max-width: 860px) {
  .wrap {
    width: min(100% - 34px, 900px);
  }
  .section-space {
    padding-block: 86px;
  }
  .desktop-nav,
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-shell {
    height: 68px;
  }
  .site-header.scrolled .nav-shell {
    height: 64px;
  }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 50px 32px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero-product {
    height: 510px;
  }
  .hero h1 {
    max-width: 700px;
  }
  .quick-links {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-heading {
    align-items: start;
    display: grid;
    gap: 18px;
  }
  .section-heading > p {
    max-width: 560px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card,
  .service-repair,
  .service-data,
  .service-accessory,
  .service-contract,
  .service-resale,
  .service-energy {
    grid-column: span 1;
    min-height: 340px;
  }
  .service-card:nth-child(1),
  .service-card:nth-child(4) {
    grid-column: 1/-1;
  }
  .service-card:nth-child(1) {
    min-height: 390px;
  }
  .service-copy,
  .service-repair .service-copy,
  .service-contract .service-copy,
  .service-resale .service-copy {
    max-width: 58%;
  }
  .accessory-layout {
    grid-template-columns: 1fr;
  }
  .accessory-visual {
    height: 370px;
  }
  .accessory-finder {
    grid-template-columns: 1fr 1fr;
  }
  .accessory-finder > div {
    grid-column: 1/-1;
  }
  .accessory-finder .btn {
    grid-column: 2;
  }
  .contract-grid {
    grid-template-columns: 1fr;
  }
  .contract-card {
    min-height: 270px;
  }
  .provider-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .data-section {
    grid-template-columns: 1fr;
  }
  .data-visual {
    height: 430px;
    order: 2;
  }
  .data-copy {
    order: 1;
  }
  .resale-grid {
    grid-template-columns: 1fr;
  }
  .resale-card {
    min-height: 390px;
  }
  .resale-copy {
    max-width: 58%;
  }
  .energy-card {
    grid-template-columns: 1fr;
  }
  .energy-visual {
    min-height: 390px;
  }
  .energy-copy {
    padding: 34px;
  }
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-card:last-child {
    grid-column: 1/-1;
  }
  .location-card:last-child .location-photo {
    height: 300px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-side {
    position: static;
  }
  .faq-side > p {
    max-width: 520px;
  }
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  body {
    font-size: 14px;
    padding-bottom: 64px;
  }
  .wrap {
    width: calc(100% - 28px);
  }
  .section-space {
    padding-block: 70px;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .hero {
    padding-top: 38px;
    gap: 30px;
  }
  .eyebrow {
    font-size: 9px;
    line-height: 1.5;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }
  .hero-copy > p {
    font-size: 13px;
    line-height: 1.75;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 28px;
  }
  .trust-row > div {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: #fff;
  }
  .trust-row small {
    white-space: normal;
  }
  .hero-product {
    height: 390px;
    border-radius: 26px;
  }
  .phone-back {
    width: 174px;
    height: 330px;
    left: 10%;
    top: 48px;
    border-radius: 31px;
  }
  .phone-front {
    width: 180px;
    height: 345px;
    right: 10%;
    top: 25px;
    border-radius: 31px;
  }
  .camera {
    width: 32px;
    height: 32px;
    border-width: 3px;
  }
  .camera-a {
    left: 17px;
    top: 20px;
  }
  .camera-b {
    left: 56px;
    top: 20px;
  }
  .camera-c {
    left: 17px;
    top: 59px;
  }
  .phone-mark {
    font-size: 31px;
  }
  .phone-notch {
    width: 64px;
    height: 18px;
  }
  .phone-screen {
    border-radius: 23px;
  }
  .phone-screen img {
    width: 86px;
    height: 86px;
    border-radius: 18px;
  }
  .phone-screen small {
    font-size: 7px;
    margin-top: 14px;
  }
  .phone-screen strong {
    font-size: 17px;
  }
  .floating-service {
    padding: 9px 10px;
    border-radius: 12px;
  }
  .floating-service-a {
    left: 12px;
    bottom: 14px;
  }
  .floating-service-b {
    right: 12px;
    top: 14px;
  }
  .floating-service > .icon {
    width: 28px;
    height: 28px;
    padding: 6px;
  }
  .floating-service strong {
    font-size: 10px;
  }
  .floating-service small {
    font-size: 7px;
  }
  .product-label {
    display: none;
  }
  .quick-links {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding-bottom: 0;
  }
  .quick-links a {
    font-size: 10px;
    padding: 10px 7px;
  }
  .section-heading h2,
  .contract-head h2,
  .data-copy h2,
  .energy-copy h2,
  .reviews-head h2,
  .faq-side h2,
  .contact-inner h2 {
    font-size: clamp(31px, 9.2vw, 38px);
  }
  .section-heading {
    margin-bottom: 27px;
  }
  .section-heading > p {
    font-size: 11px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-card,
  .service-repair,
  .service-data,
  .service-accessory,
  .service-contract,
  .service-resale,
  .service-energy,
  .service-card:nth-child(1),
  .service-card:nth-child(4) {
    grid-column: 1;
    min-height: 310px;
  }
  .service-copy,
  .service-repair .service-copy,
  .service-contract .service-copy,
  .service-resale .service-copy,
  .service-energy .service-copy {
    max-width: 67%;
    padding: 22px;
  }
  .service-copy h3 {
    font-size: 23px;
  }
  .service-copy p {
    font-size: 10px;
    line-height: 1.7;
  }
  .service-card > img {
    width: 61%;
    right: -12%;
  }
  .service-repair > img {
    width: 67%;
    right: -12%;
  }
  .service-data > img {
    width: 72%;
    right: -20%;
  }
  .service-accessory > img {
    width: 72%;
    right: -22%;
  }
  .service-energy > img {
    width: 82%;
    right: -33%;
  }
  .network-art {
    right: -8%;
    width: 52%;
  }
  .network-art > span:nth-child(3) {
    width: 260px;
    height: 260px;
  }
  .network-phone {
    width: 100px;
    height: 194px;
    border-radius: 23px;
  }
  .repair-form {
    padding: 24px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .defect-grid {
    grid-template-columns: 1fr 1fr;
  }
  .repair-stage {
    min-height: 365px;
  }
  .repair-stage > img {
    width: 100%;
    height: 77%;
  }
  .repair-facts {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 5px;
  }
  .repair-facts > div {
    padding: 8px;
  }
  .repair-facts strong {
    font-size: 8px;
  }
  .repair-stage-chip {
    top: 12px;
    left: 12px;
  }
  .brand-band-head {
    display: block;
  }
  .brand-band-head p {
    margin-top: 8px;
  }
  .brand-marquee {
    overflow-x: auto;
    mask-image: none;
    padding-inline: 14px;
  }
  .brand-marquee-track {
    animation: none;
  }
  .brand-set:last-child {
    display: none;
  }
  .brand-set button {
    font-size: 13px;
    padding: 10px 15px;
  }
  .accessory-visual {
    height: 290px;
  }
  .accessory-cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .accessory-card {
    min-height: 155px;
    padding: 16px;
  }
  .accessory-card > .icon {
    width: 30px;
    height: 30px;
  }
  .accessory-card h3 {
    font-size: 17px;
  }
  .accessory-card p {
    font-size: 9px;
  }
  .accessory-finder {
    grid-template-columns: 1fr;
    padding: 17px;
  }
  .accessory-finder > div,
  .accessory-finder .btn {
    grid-column: 1;
  }
  .accessory-finder h3 {
    font-size: 18px;
  }
  .contract-head > p {
    font-size: 11px;
  }
  .provider-row {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .provider-label {
    grid-column: 1/-1;
  }
  .provider {
    height: 68px;
  }
  .provider img {
    max-width: 82px;
    max-height: 30px;
  }
  .o2-mark {
    font-size: 33px;
  }
  .contract-card {
    padding: 22px;
    min-height: 250px;
  }
  .contract-card h3 {
    font-size: 24px;
  }
  .contract-card p {
    font-size: 10px;
  }
  .tariff-finder {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .tariff-finder > div:first-child {
    grid-column: 1;
  }
  .provider-note {
    line-height: 1.6;
  }
  .data-visual {
    height: 320px;
  }
  .use-cases > div {
    padding: 12px;
  }
  .use-cases small {
    font-size: 9px;
  }
  .resale-card {
    min-height: 350px;
  }
  .resale-copy {
    max-width: 67%;
    padding: 22px;
  }
  .resale-copy h3 {
    font-size: 25px;
  }
  .resale-copy p {
    font-size: 10px;
  }
  .resale-card > img {
    width: 66%;
    right: -20%;
  }
  .energy-copy {
    padding: 24px;
  }
  .energy-copy > p {
    font-size: 11px;
  }
  .energy-visual {
    min-height: 300px;
  }
  .energy-badge {
    left: 12px;
    bottom: 12px;
    padding: 9px 10px;
  }
  .reviews-head {
    align-items: start;
  }
  .slider-controls button {
    width: 40px;
    height: 40px;
  }
  .review-card {
    flex-basis: 100%;
    min-height: 280px;
    padding: 22px;
  }
  .review-card blockquote {
    font-size: 19px;
  }
  .reviews-foot {
    align-items: flex-start;
    gap: 20px;
  }
  .reviews-foot > a {
    text-align: right;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-card:last-child {
    grid-column: 1;
  }
  .location-photo,
  .location-card:last-child .location-photo {
    height: 220px;
  }
  .faq-list summary {
    font-size: 16px;
    padding: 18px 0;
  }
  .faq-list details p {
    padding-right: 0;
    font-size: 11px;
  }
  .faq-icon {
    width: 30px;
    height: 30px;
  }
  .contact-section {
    padding: 14px;
  }
  .contact-inner {
    min-height: 390px;
    border-radius: 23px;
    padding: 30px 22px;
  }
  .contact-inner > div:first-child > p {
    font-size: 11px;
  }
  .contact-actions {
    display: grid;
  }
  .contact-actions .btn {
    width: 100%;
  }
  .contact-logo {
    width: 190px;
    height: 190px;
    right: -20px;
    bottom: -15px;
  }
  .footer {
    padding-top: 42px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand-block {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .footer-bottom span:nth-child(2) {
    order: 3;
  }
  .whatsapp-float {
    display: none;
  }
  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid #deddd8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 7px 12px;
    gap: 7px;
  }
  .mobile-contact-bar a,
  .mobile-contact-bar button {
    border: 0;
    border-radius: 11px;
    background: #f2f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11px;
  }
  .mobile-contact-bar button {
    background: var(--green);
    color: #fff;
  }
  .mobile-contact-bar .icon {
    width: 16px;
    height: 16px;
  }
  .toast {
    bottom: 72px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-phone,
  .service-card,
  .service-card > img,
  .resale-card > img,
  .accessory-visual img {
    transition: none;
  }
  .brand-marquee-track {
    animation: none;
  }
  .brand-set:last-child {
    display: none;
  }
}

/* Prepared location detail pages */
.location-detail-page {
  min-height: 100vh;
  background: var(--bg);
}
.simple-header {
  border-bottom: 1px solid var(--line);
  background: #fbfaf7;
}
.simple-header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.simple-header-back {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.location-detail-hero {
  padding-block: 70px 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.location-detail-hero h1 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.03;
}
.location-detail-hero h1 span {
  color: #b95f0c;
}
.location-detail-hero p {
  color: #717075;
  margin-top: 18px;
  max-width: 540px;
}
.location-detail-photo {
  height: 480px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #e0ddd7;
  background: #efece6;
}
.location-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-detail-info {
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.location-info-card {
  border: 1px solid #e0ddd7;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
}
.location-info-card h2 {
  font-size: 24px;
  margin-bottom: 18px;
}
.location-info-card dl {
  margin: 0;
  display: grid;
  gap: 11px;
}
.location-info-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  border-top: 1px solid #eceae6;
}
.location-info-card dt,
.location-info-card dd {
  margin: 0;
  font-size: 11px;
}
.location-info-card dt {
  color: #8a898e;
}
.location-info-card dd {
  text-align: right;
}
.location-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.location-service-list span {
  padding: 9px 11px;
  border-radius: 999px;
  background: #f1efea;
  font-size: 10px;
}
@media (max-width: 760px) {
  .simple-header-inner {
    height: 66px;
  }
  .location-detail-hero {
    grid-template-columns: 1fr;
    padding-block: 45px 30px;
  }
  .location-detail-photo {
    height: 300px;
  }
  .location-detail-info {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }
}

/* Readability pass: keep the same visual system, but give body copy and UI text more room. */
body {
  font-size: 16px;
  line-height: 1.7;
}
p,
.hero-copy > p,
.section-heading > p,
.section-heading-left > p,
.contract-head p,
.data-copy > p,
.energy-copy > p,
.service-card p,
.accessory-card p,
.contract-card p,
.location-card p,
.faq-item p,
.faq-list details p,
.footer-grid p {
  font-size: 16px;
  line-height: 1.65;
}
small,
.form-step small,
.use-cases small,
.trust-row small,
.micro-note,
.provider-note {
  font-size: 12px;
  line-height: 1.5;
}
.form-step strong,
.trust-row strong {
  font-size: 15px;
}
.desktop-nav > a,
.nav-dropdown-button,
.mobile-nav a,
.kicker,
.provider-label,
.contract-label {
  font-size: 14px;
}
.form-grid label > span,
.tariff-finder label > span,
.accessory-finder label > span {
  font-size: 13px;
}
.trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 620px) {
  .section-space { padding-block: 56px; }
  .hero-product { height: 300px; }
  .accessory-visual { height: 220px; }
  .data-visual { height: 240px; }
  .energy-visual { min-height: 240px; }
  .service-card { min-height: 275px; }
  .mobile-contact-bar a,
  .mobile-contact-bar button { font-size: 13px; }
}

/* Typography final pass: keep these values last so component overrides cannot shrink body copy. */
body { font-size: 16px; }
.section-heading h2,
.section-heading-left h2,
.contract-head h2,
.data-copy h2,
.energy-copy h2,
.brand-band h2,
.reviews-section h2,
.locations-section h2,
.faq-side h2,
.contact-section h2 {
  font-size: clamp(38px, 4vw, 48px) !important;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.hero-copy > p,
.section-heading > p,
.repair-intro p,
.service-copy p,
.contract-head > p,
.contract-choice p,
.data-copy > p,
.resale-section .section-heading > p,
.resale-copy p,
.energy-copy > p,
.location-card p,
.faq-side > p,
.faq-list details p,
.contact-section > div:first-child > p,
.footer-brand-block > p {
  font-size: 16px !important;
  line-height: 1.65;
}
.service-copy h3,
.contract-choice h3,
.resale-card h3,
.location-card h3,
.accessory-item strong {
  font-size: clamp(24px, 2.4vw, 30px) !important;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.review-card blockquote { font-size: 17px !important; line-height: 1.55; }
@media (max-width: 620px) {
  .section-heading h2,
  .section-heading-left h2,
  .contract-head h2,
  .data-copy h2,
  .energy-copy h2,
  .brand-band h2,
  .reviews-section h2,
  .locations-section h2,
  .faq-side h2,
  .contact-section h2 { font-size: clamp(32px, 9vw, 42px) !important; }
  .service-copy h3,
  .contract-choice h3,
  .resale-card h3,
  .location-card h3 { font-size: 25px !important; }
}
.hero-product {
  height: 520px;
}
.hero-product .phone-front {
  right: auto;
  left: 12%;
  top: 48px;
  transform: rotate(6deg) scale(.86);
  transform-origin: center bottom;
}
.hero-repair-panel {
  position: absolute;
  z-index: 4;
  right: 30px;
  top: 50%;
  width: 43%;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(46,33,22,.12);
  backdrop-filter: blur(12px);
  transform: translateY(-42%);
}
.hero-repair-panel-head,
.hero-repair-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #858187;
  font-size: 10px;
  letter-spacing: .08em;
}
.hero-repair-panel-head span { display: inline-flex; align-items: center; gap: 7px; }
.hero-repair-panel-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.hero-repair-panel-head strong { font-family: "Space Grotesk", sans-serif; font-weight: 500; }
.hero-repair-panel h2 { margin: 30px 0 16px; font-family: "Space Grotesk", sans-serif; font-size: 24px; line-height: 1.08; letter-spacing: -.05em; font-weight: 500; }
.hero-repair-options { display: flex; flex-wrap: wrap; gap: 7px; }
.hero-repair-options span { padding: 7px 9px; border-radius: 999px; background: #f4f1ec; color: #545158; font-size: 11px; }
.hero-repair-panel-foot { margin-top: 28px; padding-top: 13px; border-top: 1px solid #ebe7df; letter-spacing: 0; }
.hero-repair-panel-foot .icon { width: 16px; height: 16px; color: #b95e08; }
.hero-product .product-label { right: 28px; bottom: 23px; }
@media (max-width: 760px) {
  .hero-product { height: 340px; }
  .hero-product .phone-front { left: 4%; top: 10px; transform: rotate(5deg) scale(.62); transform-origin: left bottom; }
  .hero-repair-panel { right: 12px; width: 48%; padding: 14px; border-radius: 16px; transform: translateY(-45%); }
  .hero-repair-panel h2 { margin: 20px 0 12px; font-size: 18px; }
  .hero-repair-options span { padding: 5px 7px; font-size: 10px; }
  .hero-repair-panel-foot { margin-top: 17px; font-size: 9px; }
  .hero-product .product-label { right: 14px; bottom: 14px; font-size: 8px; }
}
.hero-photo {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid #e8e3db;
  border-radius: 30px;
  background: #e9e5dc;
  box-shadow: 0 22px 55px rgba(46,33,22,.1);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0) 55%, rgba(18,18,18,.24) 100%);
  pointer-events: none;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-photo-badge {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(30,25,20,.12);
  backdrop-filter: blur(10px);
}
.hero-photo-badge .status-dot { width: 7px; height: 7px; box-shadow: none; }
.hero-photo-badge strong,
.hero-photo-badge small { display: block; }
.hero-photo-badge strong { font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 500; }
.hero-photo-badge small { margin-top: 2px; color: #77767b; font-size: 10px; }
@media (max-width: 760px) {
  .hero-photo { height: 340px; border-radius: 24px; }
  .hero-photo > img { object-position: 62% center; }
  .hero-photo-badge { left: 14px; bottom: 14px; padding: 9px 11px; }
}
.accessory-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  overflow: hidden;
}
.accessory-item {
  min-width: 0;
  padding: 14px 12px 16px;
  border: 1px solid #e4e1da;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
}
.accessory-item:nth-child(1) .accessory-icon { background: #eef3f7; color: #4d687c; }
.accessory-item:nth-child(2) .accessory-icon { background: #f1eef8; color: #6d5a8d; }
.accessory-item:nth-child(3) .accessory-icon { background: #fff0de; color: #a65e14; }
.accessory-item:nth-child(4) .accessory-icon { background: #edf4ed; color: #55745e; }
.accessory-item:nth-child(5) .accessory-icon { background: #f4f1ec; color: #5d5a54; }
.accessory-item:hover { transform: translateY(-4px); border-color: #efc18f; box-shadow: 0 14px 28px rgba(44,35,26,.08); }
.accessory-icon {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 13px;
  border-radius: 18px;
}
.accessory-icon .icon { width: 42px; height: 42px; }
.accessory-item strong,
.accessory-item small { display: block; }
.accessory-item strong { font-family: "Space Grotesk", sans-serif; font-size: 15px; font-weight: 500; letter-spacing: -.025em; }
.accessory-item small { margin-top: 3px; color: #858287; font-size: 11px; line-height: 1.35; }
.accessory-item-more .accessory-icon { border: 1px dashed #cfcac2; background: transparent; }
@media (max-width: 760px) {
  .accessory-rail { display: flex; overflow-x: auto; gap: 9px; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .accessory-item { flex: 0 0 148px; scroll-snap-align: start; padding: 11px 10px 14px; }
  .accessory-icon { width: 74px; height: 74px; margin-bottom: 10px; }
  .accessory-icon .icon { width: 34px; height: 34px; }
  .accessory-item strong { font-size: 14px; }
}
.contract-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.contract-choice {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #353535;
  border-radius: 22px;
  background: #202020;
  transition: transform .25s var(--ease), background .25s;
}
.contract-choice:hover { transform: translateY(-3px); background: #292929; }
.contract-choice-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 13px;
  background: #303030;
  color: #ffac5d;
}
.contract-choice-icon .icon { width: 21px; height: 21px; }
.contract-choice h3 { margin: 8px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 28px; line-height: 1.05; letter-spacing: -.045em; font-weight: 400; }
.contract-choice p { max-width: 410px; margin: 0; color: #b8b8bc; font-size: 14px; line-height: 1.65; }
.contract-choice .text-link { margin-top: auto; }
.tariff-finder-new {
  display: grid;
  grid-template-columns: .8fr 1.8fr;
  gap: 28px;
  align-items: end;
  margin-top: 14px;
  padding: 25px;
  border: 1px solid #444;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
}
.tariff-finder-copy h3 { margin: 5px 0 5px; font-family: "Space Grotesk", sans-serif; font-size: 29px; line-height: 1.05; letter-spacing: -.045em; font-weight: 400; }
.tariff-finder-copy p { max-width: 260px; margin: 0; color: #77767b; font-size: 13px; line-height: 1.55; }
.tariff-finder-controls { display: grid; grid-template-columns: auto 1fr 1fr auto; gap: 10px; align-items: end; }
.tariff-finder-new .tariff-options { display: flex; gap: 5px; padding: 4px; border: 1px solid #e0ddd7; border-radius: 10px; background: #f4f2ee; }
.tariff-finder-new .tariff-options button { min-height: 42px; padding: 0 13px; border: 0; border-radius: 7px; background: transparent; color: #69676b; font: inherit; font-size: 12px; cursor: pointer; }
.tariff-finder-new .tariff-options button.active { background: #1d1d1f; color: #fff; }
.tariff-finder-new label { display: grid; gap: 6px; }
.tariff-finder-new label > span { color: #77767b; font-size: 11px; }
.tariff-finder-new select,
.tariff-finder-new input { min-height: 42px; width: 100%; border: 1px solid #dedbd5; border-radius: 9px; background: #fff; color: var(--ink); padding: 0 11px; font: inherit; font-size: 12px; }
.tariff-finder-new .btn { min-height: 42px; white-space: nowrap; background: var(--orange); color: #21170f; }
.provider-row-new { grid-template-columns: 1.3fr repeat(4, 1fr); margin-top: 20px; padding: 15px 0 0; border-top: 1px solid #333; }
.provider-row-new .provider-label { align-self: center; color: #929196; font-size: 12px; }
@media (max-width: 900px) {
  .tariff-finder-new { grid-template-columns: 1fr; gap: 18px; }
  .tariff-finder-copy p { max-width: 480px; }
  .tariff-finder-controls { grid-template-columns: 1fr 1fr; }
  .tariff-finder-new .tariff-options { grid-column: 1 / -1; }
  .tariff-finder-new .btn { width: 100%; }
  .provider-row-new { grid-template-columns: repeat(4, 1fr); }
  .provider-row-new .provider-label { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .contract-choice-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .contract-choice { min-height: 210px; padding: 21px; }
  .contract-choice h3 { font-size: 25px; }
  .tariff-finder-new { padding: 19px; }
  .tariff-finder-controls { grid-template-columns: 1fr; }
  .tariff-finder-new .tariff-options { grid-column: auto; }
  .provider-row-new { gap: 7px; }
  .provider-row-new .provider { min-width: 0; }
}

/* Final section refinements */
.tariff-finder-new {
  background: #202020;
  color: #fff;
  border-color: #414141;
}
.tariff-finder-new .tariff-finder-copy h3 { color: #fff; }
.tariff-finder-new .tariff-finder-copy p { color: #b8b8bc; }
.tariff-finder-new .tariff-options { border-color: #464646; background: #292929; }
.tariff-finder-new .tariff-options button { color: #b8b8bc; }
.tariff-finder-new .tariff-options button.active { background: #fff; color: #1d1d1f; }
.tariff-finder-new label > span { color: #aaa8ad; }
.tariff-finder-new select,
.tariff-finder-new input {
  border-color: #4a4a4a;
  background: #292929;
  color: #fff;
}
.tariff-finder-new input::placeholder { color: #858388; }
.tariff-finder-new select:focus,
.tariff-finder-new input:focus { outline: 2px solid rgba(245, 138, 31, .55); outline-offset: 1px; }
.provider-o2 img { width: 54px; height: 42px; object-fit: contain; }
.provider-o2 { background: #fff; }
.repair-progress { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: #77767b; font-size: 11px; }
.repair-progress-line { flex: 1; height: 4px; overflow: hidden; border-radius: 999px; background: #e9e6e1; }
.repair-progress-line i { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--orange); transition: width .25s ease; }
.form-error { margin: 10px 0 0; color: #b83e31; font-size: 12px; line-height: 1.45; }
.location-address { font-style: normal; }
.form-success { display: grid; gap: 3px; margin-top: 12px; padding: 12px 14px; border: 1px solid #b6d9bf; border-radius: 12px; background: #edf8ef; color: #276b37; font-size: 12px; line-height: 1.45; }
.form-success strong { font-weight: 600; }
.location-open-status { display: inline-flex; margin-top: 8px; padding: 5px 8px; border-radius: 999px; background: #eef8ef; color: #2f7440; font-size: 10px; font-weight: 500; }
.location-actions { flex-wrap: wrap; }
.location-phone-link { color: #242326; }
.location-info-card .btn + .btn { margin-left: 8px; }
.location-info-card dd a { color: #a9580c; font-weight: 600; }
.contract-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contract-choice { min-height: 265px; }
#provider-row[hidden] { display: none; }
@media (max-width: 900px) {
  .contract-choice-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .contract-choice-grid { grid-template-columns: 1fr; }
}
.contract-section { background: #f3f1ec; color: var(--ink); border-top: 1px solid #e7e3dc; border-bottom: 1px solid #e7e3dc; }
.contract-section::before { background: radial-gradient(circle, rgba(245,138,31,.12), transparent 68%); }
.contract-section .kicker-light { color: #a9580c; }
.contract-section .contract-head h2 span { color: #bb620d; }
.contract-section .contract-head > p { color: #6f6e73; }
.contract-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contract-choice { min-height: 220px; padding: 28px; border-color: #dfdcd5; background: #fff; color: var(--ink); box-shadow: 0 10px 30px rgba(35,29,22,.04); }
.contract-choice:hover { background: #fffaf4; border-color: #efc18f; }
.contract-choice-icon { background: #f4eee7; color: #a9580c; }
.contract-label { color: #a9580c; }
.contract-choice p { color: #6f6e73; }
.contract-cta { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; padding: 24px; border-top: 1px solid #ddd9d1; }
.contract-cta p { margin: 0; color: #6f6e73; font-size: 14px; }
.contract-cta .btn { min-height: 50px; }
@media (max-width: 900px) { .contract-choice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .contract-choice-grid { grid-template-columns: 1fr; } .contract-cta { display: grid; text-align: center; } .contract-cta .btn { width: 100%; } }

/* Redesigned Internet & Mobilfunk section */
.contract-section { position: relative; overflow: hidden; background: #111; }
.contract-section::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(245,138,31,.17), transparent 68%); pointer-events: none; }
.contract-section > .wrap { position: relative; z-index: 1; }
.contract-head { max-width: none; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr); gap: 60px; align-items: end; }
.contract-head h2 { margin-top: 10px; font-size: clamp(42px, 5vw, 68px); }
.contract-head > p { max-width: 390px; margin: 0 0 6px; font-size: 15px; line-height: 1.7; }
.contract-choice-grid { gap: 16px; margin-top: 42px; }
.contract-choice { min-height: 245px; padding: 30px; border-color: #343434; border-radius: 26px; background: linear-gradient(145deg, #202020, #171717); }
.contract-choice:hover { background: linear-gradient(145deg, #29231e, #191919); }
.contract-choice-icon { width: 52px; height: 52px; margin-bottom: 38px; border-radius: 16px; background: #2c2c2c; color: #ffad5b; }
.contract-choice-icon .icon { width: 24px; height: 24px; }
.contract-label { color: #ffbd7f; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.contract-choice h3 { margin: 10px 0 8px; font-size: clamp(28px, 3vw, 38px); }
.contract-choice p { max-width: 390px; font-size: 15px; line-height: 1.6; }
.contract-choice .text-link { font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.tariff-finder-new { grid-template-columns: minmax(200px,.7fr) minmax(0,1.8fr); margin-top: 16px; padding: 30px; border-radius: 26px; background: #242424; border-color: #3d3d3d; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.tariff-finder-copy h3 { font-size: 32px; }
.tariff-finder-copy p { max-width: 300px; font-size: 14px; line-height: 1.65; }
.tariff-finder-controls { gap: 12px; }
.tariff-finder-new .tariff-options { background: #171717; border-color: #414141; }
.tariff-finder-new .tariff-options button { min-height: 48px; font-size: 13px; }
.tariff-finder-new .tariff-options button.active { background: #fff; color: #1d1d1f; }
.tariff-finder-new select, .tariff-finder-new input { min-height: 48px; background: #171717; border-color: #454545; color: #fff; font-size: 13px; }
.tariff-finder-new label > span { font-size: 11px; color: #aaa; }
.tariff-finder-new .btn { min-height: 48px; border-radius: 12px; font-size: 13px; }
.provider-row-new { margin-top: 30px; padding-top: 20px; border-color: #2c2c2c; }
.provider-row-new .provider { height: 64px; border-radius: 14px; }
.provider-note { max-width: 720px; font-size: 11px; line-height: 1.6; }
@media (max-width: 900px) {
  .contract-head { grid-template-columns: 1fr; gap: 18px; }
  .contract-head > p { max-width: 600px; }
  .tariff-finder-new { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .contract-head h2 { font-size: clamp(38px, 11vw, 52px); }
  .contract-head > p { font-size: 14px; }
  .contract-choice-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .contract-choice { min-height: 220px; padding: 23px; }
  .contract-choice-icon { margin-bottom: 28px; }
  .contract-choice h3 { font-size: 30px; }
  .contract-choice p { font-size: 14px; }
  .tariff-finder-new { padding: 22px; }
  .tariff-finder-copy h3 { font-size: 28px; }
}

/* Subtle Premium motion system */
:root { --motion-ease: cubic-bezier(.22, 1, .36, 1); --motion-fast: 180ms; --motion-base: 320ms; }
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p,
.hero-copy .hero-actions,
.hero-copy .hero-choices,
.hero-copy .trust-row { animation: heroIn .65s var(--motion-ease) both; }
.hero-copy h1 { animation-delay: 70ms; }
.hero-copy > p { animation-delay: 140ms; }
.hero-copy .hero-actions { animation-delay: 210ms; }
.hero-copy .hero-choices { animation-delay: 250ms; }
.hero-copy .trust-row { animation-delay: 280ms; }
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p,
.hero-copy .hero-actions,
.hero-copy .hero-choices,
.hero-copy .trust-row,
.hero-photo { animation-play-state: paused; }
.hero-copy.in-view .eyebrow,
.hero-copy.in-view h1,
.hero-copy.in-view > p,
.hero-copy.in-view .hero-actions,
.hero-copy.in-view .hero-choices,
.hero-copy.in-view .trust-row,
.hero-photo.in-view { animation-play-state: running; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-photo { --pointer-x: 50%; --pointer-y: 50%; isolation: isolate; animation: heroPhotoIn .85s var(--motion-ease) 120ms both; }
.hero-photo::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(circle 190px at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.12), transparent 72%); mix-blend-mode: screen; opacity: .7; transition: opacity .3s ease; }
.hero-photo img { position: relative; z-index: 0; animation: heroFloat 8s ease-in-out 1.1s infinite; }
@keyframes heroPhotoIn { from { opacity: 0; transform: translateX(22px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.hero-photo-badge { z-index: 3; }
.service-data::after { content: ""; position: absolute; inset: -30%; z-index: 0; background: linear-gradient(115deg, transparent 35%, rgba(245,138,31,.12) 50%, transparent 65%); transform: translateX(-30%) rotate(8deg); animation: dataSweep 8s ease-in-out infinite; pointer-events: none; }
@keyframes dataSweep { 0%,35% { transform: translateX(-45%) rotate(8deg); opacity: 0; } 55% { opacity: 1; } 75%,100% { transform: translateX(45%) rotate(8deg); opacity: 0; } }
.brand-marquee:hover .brand-marquee-track,
.brand-marquee:focus-within .brand-marquee-track { animation-play-state: paused; }
.tariff-choice-link .icon,
.btn .icon { transition: transform var(--motion-fast) var(--motion-ease); }
.tariff-choice-link:hover .icon,
.btn:hover .icon { transform: translate(3px, -3px); }
.contract-choice.is-selected { border-color: var(--orange); background: #2a2521; box-shadow: 0 0 0 1px rgba(245,138,31,.18), 0 18px 44px rgba(0,0,0,.18); }
.contract-choice.is-selected .contract-choice-icon { background: var(--orange); color: #24170d; }
.faq-list details .faq-icon { transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-base) var(--motion-ease); }
.faq-list details[open] .faq-icon { transform: rotate(0deg); }
.mobile-nav:not([hidden]) { animation: mobileNavIn .28s var(--motion-ease) both; transform-origin: top; }
.mobile-nav:not([hidden]) .mobile-nav-inner a { animation: navItemIn .35s var(--motion-ease) both; }
.mobile-nav:not([hidden]) .mobile-nav-inner a:nth-child(2) { animation-delay: 35ms; }
.mobile-nav:not([hidden]) .mobile-nav-inner a:nth-child(3) { animation-delay: 70ms; }
.mobile-nav:not([hidden]) .mobile-nav-inner a:nth-child(4) { animation-delay: 105ms; }
.mobile-nav:not([hidden]) .mobile-nav-inner a:nth-child(5) { animation-delay: 140ms; }
@keyframes mobileNavIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes navItemIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.toast:not([hidden]) { animation: toastIn .3s var(--motion-ease) both; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
.whatsapp-float { transition: transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) ease; }
.whatsapp-float:focus-visible { outline: 3px solid rgba(37,211,102,.55); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .hero-photo::after { display: none; }
}

/* The contact section is the container; no extra card is nested inside it. */
.contact-section {
  min-height: 400px;
  padding: 54px max(32px, calc((100vw - 1240px) / 2));
  background: linear-gradient(135deg, #1e1e1f, #26211d 58%, #442612);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 138, 31, .48), rgba(245, 138, 31, 0) 68%);
  right: -70px;
  top: -100px;
}
.contact-section > div:first-child,
.contact-section > .contact-actions { position: relative; z-index: 2; }
.contact-section h2 { font-size: clamp(38px, 4.6vw, 58px); line-height: 1.08; letter-spacing: -.055em; }
.contact-section h2 span { color: #bb620d; }
.contact-section > div:first-child > p { color: #b6b6ba; font-size: 13px; margin-top: 18px; }
.contact-phone { display: inline-block; margin-top: 10px; color: #fff; font-family: "Space Grotesk", sans-serif; font-size: 18px; letter-spacing: -.02em; }
.contact-section > .contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-choices { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-top: 12px; padding: 10px; width: fit-content; max-width: 100%; border: 1px solid #e4e0d9; border-radius: 14px; background: rgba(255,255,255,.8); box-shadow: 0 12px 30px rgba(35,28,20,.06); }
.hero-choices-label { width: 100%; color: #77767b; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-choices a { padding: 8px 10px; border: 1px solid #e4e0d9; border-radius: 999px; background: #fff; color: var(--ink); font-size: 11px; transition: border-color .2s, color .2s, transform .2s; }
.hero-choices a:hover { border-color: var(--orange); color: #a9540a; transform: translateY(-1px); }
.contact-section .btn:focus-visible,
.hero-choices a:focus-visible { outline: 3px solid rgba(245,138,31,.55); outline-offset: 3px; }
.service-card:focus-visible,
.location-card a:focus-visible { outline: 3px solid rgba(245,138,31,.55); outline-offset: 4px; }
.contract-choice { transition: transform .3s var(--ease), border-color .3s, background .3s; }
.contract-choice:hover { transform: translateY(-3px); border-color: #6b5542; background: #242424; }
.location-card:hover .location-photo img { transform: scale(1.04); }
.location-card .location-actions a:last-of-type { color: #9b561d; }

@media (max-width: 620px) {
  .hero-choices { width: 100%; }
  .hero-choices a { flex: 1 1 auto; text-align: center; }
  .hero-copy > p,
  .section-heading > p,
  .contract-choice p,
  .location-address,
  .faq-list details p { font-size: 13px; }
  .service-copy p { font-size: 12px; line-height: 1.65; }
  .service-link { font-size: 13px; }
  .location-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .location-card { flex: 0 0 87%; scroll-snap-align: start; }
.location-card:last-child { grid-column: auto; }
}

/* Internet & Mobilfunk: separate light section with provider overview */
.contract-section {
  position: relative;
  overflow: hidden;
  background: #f3f1ec;
  color: var(--ink);
  border-top: 1px solid #e7e3dc;
  border-bottom: 1px solid #e7e3dc;
}
.contract-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,138,31,.12), transparent 68%);
  pointer-events: none;
}
.contract-section > .wrap { position: relative; z-index: 1; }
.contract-section .kicker-light { color: #a9580c; }
.contract-section .contract-head { gap: 42px; }
.contract-section .contract-head h2 {
  margin-top: 8px;
  font-size: clamp(33px, 3.8vw, 47px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.contract-section .contract-head > p { font-size: 14px; line-height: 1.65; }
.contract-section .contract-head h2 span { color: #bb620d; }
.contract-section .contract-head > p { color: #6f6e73; }
.contract-section .contract-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.contract-section .contract-choice {
  min-height: 250px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 14px;
  border-color: #dfdcd5;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(35,29,22,.04);
}
.contract-section .contract-choice-copy { position: relative; z-index: 1; }
.contract-section .contract-choice-art { align-self: end; justify-self: end; width: 145px; height: 170px; object-fit: contain; }
.contract-section .contract-choice-icon { margin-bottom: 27px; }
.contract-section .contract-choice h3 { font-size: 30px; }
.contract-section .contract-choice:hover { background: #fffaf4; border-color: #efc18f; }
.contract-section .contract-choice-icon { background: #f4eee7; color: #a9580c; }
.contract-section .contract-label { color: #a9580c; }
.contract-section .contract-choice p { color: #6f6e73; }
.contract-section .provider-row-new {
  display: grid;
  grid-template-columns: 160px repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #ddd9d1;
}
.contract-section .provider-row-new .provider-label {
  height: 72px;
  align-self: center;
  border: 0;
  background: transparent;
  color: #77767b;
  font-size: 11px;
}
.contract-section .provider-row-new .provider {
  height: 72px;
  border-color: #dfdcd5;
  background: #fff;
}
.contract-section .provider-row-new .provider-1und1 { background: #0a2c78; }
.contract-section .provider-row-new .provider-o2 { background: #143a9b; }
.contract-section .provider-row-new img { max-width: 88px; max-height: 42px; object-fit: contain; }
.contract-section .provider-row-new .provider-o2 img { width: 54px; height: 42px; }
.contract-section .provider-note { margin-top: 12px; color: #77767b; }
.contract-section .contract-cta { border-top: 0; }

@media (max-width: 900px) {
  .contract-section .provider-row-new { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contract-section .provider-row-new .provider-label { grid-column: 1 / -1; height: auto; justify-content: flex-start; }
}
@media (max-width: 620px) {
  .contract-section .contract-head h2 { font-size: clamp(32px, 9vw, 42px); }
  .contract-section .contract-choice-grid { grid-template-columns: 1fr; }
  .contract-section .contract-choice { grid-template-columns: minmax(0, 1fr) 112px; min-height: 225px; padding: 21px; }
  .contract-section .contract-choice-art { width: 112px; height: 138px; }
  .contract-section .provider-row-new { grid-template-columns: 1fr 1fr; gap: 8px; }
  .contract-section .provider-row-new .provider-label { grid-column: 1 / -1; }
  .contract-section .provider-row-new .provider { height: 68px; }
}

/* Main service order */
#inhalt { display: flex; flex-direction: column; }
#inhalt > .hero { order: 0; }
#inhalt > .services { order: 1; }
#inhalt > .brand-band { order: 2; }
#inhalt > .repair-section { order: 3; }
#inhalt > .accessories-section { order: 4; }
#inhalt > .resale-section { order: 5; }
#inhalt > .data-section { order: 6; }
#inhalt > .contract-section { order: 7; }
#inhalt > .energy-section { order: 8; }
#inhalt > .reviews-section { order: 9; }
#inhalt > .locations-section { order: 10; }
#inhalt > .faq-section { order: 11; }
#inhalt > .contact-section { order: 12; }

/* Reihenfolge der Leistungskarten */
.service-grid .service-repair { order: 1; }
.service-grid .service-data { order: 2; }
.service-grid .service-accessory { order: 3; }
.service-grid .service-contract { order: 4; }
.service-grid .service-resale { order: 5; }
.service-grid .service-energy { order: 6; }

/* Service grid after reordering: varied card widths like the original layout */
.service-grid .service-repair { grid-column: span 7; }
.service-grid .service-data { grid-column: span 5; }
.service-grid .service-accessory { grid-column: span 4; }
.service-grid .service-contract { grid-column: span 8; }
.service-grid .service-resale { grid-column: span 7; }
.service-grid .service-energy { grid-column: span 5; }

@media (max-width: 900px) {
  .service-grid .service-card,
  .service-grid .service-repair,
  .service-grid .service-accessory,
  .service-grid .service-resale,
  .service-grid .service-data,
  .service-grid .service-contract,
  .service-grid .service-energy {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .service-grid .service-card,
  .service-grid .service-repair,
  .service-grid .service-accessory,
  .service-grid .service-resale,
  .service-grid .service-data,
  .service-grid .service-contract,
  .service-grid .service-energy {
    grid-column: 1;
  }
}

/* Final service-card polish */
.service-card {
  min-height: 350px;
  border-radius: 22px;
}
.service-copy {
  padding: 28px 26px;
}
.service-copy h3 {
  max-width: 290px;
  margin-top: 13px;
  font-size: clamp(25px, 2.25vw, 32px);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.service-copy p {
  max-width: 300px;
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.65;
}
.service-link {
  margin-top: 20px;
  font-size: 13px;
}
.service-repair,
.service-data { min-height: 390px; }
.service-accessory > img { width: 62%; right: -10%; bottom: -15%; }
.service-data > img { width: 65%; right: -11%; bottom: -7%; }
.service-energy > img { width: 66%; right: -16%; bottom: -12%; }

@media (max-width: 900px) {
  .service-card { min-height: 320px; }
  .service-repair,
  .service-data { min-height: 350px; }
  .service-copy { padding: 24px 22px; }
  .service-copy h3 { font-size: clamp(22px, 3vw, 28px); }
  .service-copy p { font-size: 12px; }
}

@media (max-width: 620px) {
  .service-card,
  .service-repair,
  .service-data { min-height: 310px; }
  .service-copy { padding: 22px; }
  .service-copy h3 { font-size: 24px; }
  .service-copy p { font-size: 11px; }
}

/* Site-wide typography scale */
:root {
  --body-text-size: 16px;
  --section-heading-size: clamp(38px, 4vw, 48px);
  --card-heading-size: clamp(24px, 2.4vw, 30px);
}
body { font-size: var(--body-text-size); }

/* Consistent section headings */
.section-heading h2,
.section-heading-left h2,
.contract-head h2,
.data-copy h2,
.energy-copy h2,
.brand-band h2,
.reviews-section h2,
.locations-section h2,
.faq-side h2,
.contact-section h2 {
  font-size: var(--section-heading-size);
  line-height: 1.08;
  letter-spacing: -.045em;
}

/* Main content copy: 16px everywhere */
.hero-copy > p,
.section-heading > p,
.repair-intro p,
.service-copy p,
.accessories-section .section-heading > p,
.contract-head > p,
.contract-choice p,
.data-copy > p,
.resale-section .section-heading > p,
.resale-copy p,
.energy-copy > p,
.location-card p,
.faq-side > p,
.faq-list details p,
.contact-section > div:first-child > p,
.footer-brand-block > p {
  font-size: 16px;
  line-height: 1.65;
}

/* Consistent card and content headings */
.service-copy h3,
.contract-choice h3,
.resale-card h3,
.location-card h3,
.accessory-item strong {
  font-size: var(--card-heading-size);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.accessory-item small,
.trust-row small,
.hero-photo-badge small,
.use-cases small,
.location-card dt,
.location-card dd,
.review-person small {
  font-size: 13px;
  line-height: 1.45;
}
.service-copy p { max-width: 340px; }
.contract-choice p,
.resale-copy p { max-width: 420px; }
.review-card blockquote { font-size: 17px; line-height: 1.55; }

@media (max-width: 620px) {
  .section-heading h2,
  .section-heading-left h2,
  .contract-head h2,
  .data-copy h2,
  .energy-copy h2,
  .brand-band h2,
  .reviews-section h2,
  .locations-section h2,
  .faq-side h2,
  .contact-section h2 { font-size: clamp(32px, 9vw, 42px); }
  .hero-copy > p,
  .section-heading > p,
  .repair-intro p,
  .service-copy p,
  .contract-head > p,
  .contract-choice p,
  .data-copy > p,
  .resale-section .section-heading > p,
  .resale-copy p,
  .energy-copy > p,
  .location-card p,
  .faq-side > p,
  .faq-list details p,
  .contact-section > div:first-child > p,
  .footer-brand-block > p { font-size: 16px; }
  .service-copy h3,
  .contract-choice h3,
  .resale-card h3,
  .location-card h3 { font-size: 25px; }
}

.hero { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px; }
.hero h1 { max-width: 620px; font-size: clamp(48px, 5.2vw, 68px); }
.hero-copy > p { max-width: 590px; font-size: 16px; line-height: 1.72; }
.hero-proof-card { position: absolute; z-index: 3; top: 24px; right: 22px; display: grid; gap: 6px; max-width: 210px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.65); border-radius: 16px; background: rgba(26,26,26,.76); color: #fff; box-shadow: 0 14px 30px rgba(20,15,10,.2); backdrop-filter: blur(12px); }
.hero-proof-kicker { color: #ffbd7f; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.hero-proof-card strong { font-family: "Space Grotesk", sans-serif; font-size: 18px; line-height: 1.1; font-weight: 400; letter-spacing: -.035em; }
.hero-proof-line { display: flex; align-items: center; gap: 7px; color: #c7c7ca; font-size: 10px; }
.hero-proof-line .status-dot { width: 6px; height: 6px; box-shadow: none; }
.hero-photo::after { background: radial-gradient(circle 190px at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.12), transparent 72%), linear-gradient(180deg, rgba(18,18,18,0) 55%, rgba(18,18,18,.24) 100%); }
.trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero .eyebrow { font-size: 12px; margin-bottom: 22px; }
.hero-copy > p { font-size: 18px; line-height: 1.65; }
.hero .btn { min-height: 54px; padding-inline: 20px; font-size: 14px; }
.hero .trust-row { margin-top: 34px; }
.hero .trust-row strong { font-size: 14px; }
.hero .trust-row small { font-size: 12px; line-height: 1.35; white-space: normal; }
.hero-photo-badge { padding: 13px 15px; }
.hero-photo-badge strong { font-size: 14px; }
.hero-photo-badge small { font-size: 11px; line-height: 1.35; }
.repair-builder { grid-template-columns: 1fr; max-width: 860px; margin-inline: auto; border-radius: 28px; box-shadow: 0 18px 50px rgba(30,25,20,.06); }
.repair-stage { display: none; }
.repair-form { max-width: 760px; width: 100%; margin-inline: auto; padding: clamp(28px, 5vw, 54px); }
.repair-form:not(.is-ready) .form-grid,
.repair-form:not(.is-ready) .repair-problem-step,
.repair-form:not(.is-ready) #defect-grid,
.repair-form:not(.is-ready) .repair-submit,
.repair-form:not(.is-ready) .micro-note,
.repair-form:not(.is-ready) #repair-error,
.repair-form:not(.is-ready) #repair-success { display: none; }
.repair-form.is-ready .form-grid { animation: repairStepIn .38s var(--motion-ease) both; }
.repair-form:not(.has-details) .repair-problem-step,
.repair-form:not(.has-details) #defect-grid,
.repair-form:not(.has-details) .repair-submit,
.repair-form:not(.has-details) .micro-note,
.repair-form:not(.has-details) #repair-error,
.repair-form:not(.has-details) #repair-success { display: none; }
.repair-form:not(.has-defect) .form-grid label:nth-child(3) { display: none; }
.repair-form.has-details .repair-problem-step,
.repair-form.has-details #defect-grid { animation: repairStepIn .38s var(--motion-ease) both; }
.repair-form.has-defect .form-grid label:nth-child(3),
.repair-form.has-defect .repair-submit,
.repair-form.has-defect .micro-note { animation: repairStepIn .38s var(--motion-ease) both; }
.repair-summary { display: grid; gap: 4px; margin: 0 0 28px; padding: 14px 16px; border: 1px solid #e7e3dd; border-radius: 16px; background: #fbfaf7; }
.repair-summary-kicker { color: #9b5b1c; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.repair-summary strong { font-family: "Space Grotesk", sans-serif; font-size: 17px; font-weight: 400; letter-spacing: -.02em; }
.repair-form.is-ready .repair-summary:not([hidden]) { animation: repairStepIn .35s var(--motion-ease) both; }
.segment { min-height: 68px; font-size: 15px; border-radius: 16px; }
.defect-grid { gap: 10px; }
.defect-grid button { min-height: 76px; flex-direction: column; font-size: 13px; border-radius: 16px; }
.repair-submit { min-height: 56px; font-size: 14px; border-radius: 15px; }
@keyframes repairStepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-block: 42px 30px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-copy > p { font-size: 16px; line-height: 1.65; }
  .hero .eyebrow { font-size: 11px; }
  .hero .btn { min-height: 52px; font-size: 14px; }
  .hero-proof-card { top: 14px; right: 14px; max-width: 178px; padding: 11px 12px; }
  .hero-proof-card strong { font-size: 15px; }
  .trust-row { grid-template-columns: 1fr; gap: 8px; margin-top: 28px; }
  .trust-row > div { padding-top: 11px; }
  .hero .trust-row strong { font-size: 13px; }
  .hero .trust-row small { font-size: 11px; }
  .repair-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .defect-grid { grid-template-columns: repeat(2, 1fr); }
  .defect-grid button { min-height: 70px; }
}

@media (max-width: 1080px) {
  .contact-section { padding-inline: 22px; }
}

@media (max-width: 620px) {
  .contact-section { min-height: 390px; padding: 30px 22px; }
  .contact-section > .contact-actions { display: grid; }
  .contact-section > .contact-actions .btn { width: 100%; }
}
.repair-form:not(.is-ready) .repair-problem-step,
.repair-form:not(.is-ready) #defect-grid {
  display: none;
}
.repair-form.is-ready .repair-problem-step,
.repair-form.is-ready #defect-grid {
  animation: formReveal .24s ease-out both;
}
@keyframes formReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.brand-set button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-set button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.brand-fallback-mark {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.accessory-layout {
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
}
.accessory-visual {
  height: 350px;
}
.accessory-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
}
.accessory-card {
  min-height: 158px;
  padding: 20px;
}
.accessory-card h3 { font-size: 17px; }
.accessory-card p { font-size: 14px; line-height: 1.45; }

/* Leistungsseiten: dieselbe Design Language wie die Startseite */
.service-page .service-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
  padding-block: 58px 46px;
}
.service-page .service-eyebrow,
.service-page .service-kicker {
  display: inline-block;
  color: #ad5f17;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-page .service-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 5vw, 61px);
  line-height: 1.04;
  letter-spacing: -.065em;
}
.service-page .service-hero h1 span,
.service-page .service-section-head h2 span { color: #be620b; }
.service-page .service-hero p {
  max-width: 545px;
  margin-top: 24px;
  color: #66666c;
  font-size: 15px;
  line-height: 1.8;
}
.service-page .service-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.service-page .service-art {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff1df, #f9d6a9);
  box-shadow: var(--shadow);
}
.service-page .service-art img { width: 82%; height: 82%; object-fit: contain; }
.service-page .service-main { padding: 108px 0; }
.service-page .service-section-head { max-width: 680px; margin-bottom: 30px; }
.service-page .service-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(33px, 3.8vw, 47px);
  line-height: 1.08;
}
.service-page .service-section-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.service-page .service-grid,
.service-page .service-article-grid,
.service-page .service-detail-grid {
  display: grid;
  gap: 14px;
}
.service-page .service-grid { grid-template-columns: repeat(3, 1fr); }
.service-page .service-article-grid { grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.service-page .service-detail-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
.service-page .service-tile,
.service-page .service-article,
.service-page .service-detail {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
}
.service-page .service-tile { min-height: 205px; }
.service-page .service-tile strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.04em;
}
.service-page .service-tile p,
.service-page .service-article p,
.service-page .service-detail p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.service-page .service-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: #80470f;
  font-size: 15px;
}
.service-page .service-note strong { font-family: "Space Grotesk", sans-serif; }
.service-page .service-article time {
  color: #ad5f17;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-page .service-article h3,
.service-page .service-detail h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.04em;
}
.service-page .service-article a {
  display: inline-flex;
  margin-top: 18px;
  color: #ad5f17;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-page .service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.service-page .service-cta h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}
.service-page .service-cta p { margin-top: 8px; color: #c6c6c6; font-size: 15px; }
.service-page .service-cta .btn { background: var(--orange); color: #20160c; }

@media (max-width: 860px) {
  .service-page .service-hero { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding: 50px 0 42px; }
  .service-page .service-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .service-page .service-art { min-height: 320px; }
  .service-page .service-main { padding: 76px 0; }
  .service-page .service-grid,
  .service-page .service-article-grid,
  .service-page .service-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .service-page .service-hero p { font-size: 15px; }
  .service-page .service-art { min-height: 260px; }
  .service-page .service-main { padding: 58px 0; }
  .service-page .service-section-head h2 { font-size: clamp(32px, 9vw, 42px); }
  .service-page .service-tile,
  .service-page .service-article,
  .service-page .service-detail { padding: 22px; }
  .service-page .service-cta { display: block; padding: 24px; }
  .service-page .service-cta .btn { margin-top: 20px; }
}

/* Zubehör kompakter halten, besonders auf kleineren Screens */
.accessories-section .section-heading h2 {
  font-size: clamp(32px, 3.6vw, 42px) !important;
}
.accessories-section .section-heading > p {
  max-width: 430px;
  font-size: 14px;
  line-height: 1.55;
}
.accessories-section .accessory-item strong {
  font-size: 14px;
}
.accessories-section .accessory-item small {
  font-size: 10px;
}
@media (max-width: 760px) {
  .accessories-section .section-heading h2 {
    font-size: clamp(28px, 8vw, 34px) !important;
  }
  .accessories-section .section-heading > p {
    font-size: 14px;
  }
  .accessories-section .accessory-item strong {
    font-size: 13px;
  }
  .accessories-section .accessory-item small {
    font-size: 10px;
  }
}
.accessory-finder {
  grid-template-columns: 1.2fr .8fr .8fr auto;
  padding: 18px 20px;
  gap: 10px;
}
@media (max-width: 760px) {
  .accessory-layout { grid-template-columns: 1fr; }
  .accessory-finder { grid-template-columns: 1fr; }
  .accessory-finder > div,
  .accessory-finder .btn { grid-column: 1; }
  .accessory-finder .btn { width: 100%; }
}
@media (max-width: 620px) {
  .section-space { padding-block: 56px; }
  .hero-product { height: 300px; }
  .accessory-visual { height: 220px; }
  .data-visual { height: 240px; }
  .energy-visual { min-height: 240px; }
  .service-card { min-height: 275px; }
  .mobile-contact-bar a,
  .mobile-contact-bar button { font-size: 13px; }
}
.desktop-nav{gap:24px}.desktop-nav>a,.nav-dropdown-button{font-size:15px;font-weight:500;white-space:nowrap}.header-contact{font-size:14px;padding:11px 16px}.nav-dropdown-menu a{font-size:14px}.mobile-nav a{font-size:19px;padding:15px 0}.mobile-nav-cta{font-size:16px!important}
.header-menu-bars,.header-menu-bars:before,.header-menu-bars:after{display:block;width:17px;height:1.5px;background:currentColor;transition:transform .2s,opacity .2s}.header-menu-bars{position:relative}.header-menu-bars:before,.header-menu-bars:after{content:"";position:absolute;left:0}.header-menu-bars:before{top:-5px}.header-menu-bars:after{top:5px}

.reviews-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.reviews-rating strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.04em;
}
.reviews-rating .review-stars {
  font-size: 13px;
  letter-spacing: .08em;
}
.reviews-rating small {
  color: #77767b;
  font-size: 12px;
}
.reviews-foot > a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (min-width: 761px) {
  .reviews-head .slider-controls { display: none; }
  .review-viewport { overflow: hidden; }
  .review-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .review-card { min-width: 0; width: auto; }
}
@media (max-width: 760px) {
  .reviews-rating { margin-top: 14px; gap: 6px; }
  .reviews-rating strong { font-size: 26px; }
  .reviews-rating small { flex-basis: 100%; font-size: 11px; }
  .reviews-foot > a { font-size: 13px; }
}

/* Datenrettung kompakter */
.data-section { gap: 48px; }
.data-visual { height: 410px; }
.data-copy h2 { font-size: clamp(36px, 3.7vw, 42px) !important; }
.data-copy > p { max-width: 520px; margin-top: 16px; font-size: 14px !important; line-height: 1.65; }
.use-cases { gap: 7px; margin: 20px 0; }
.use-cases > div { padding: 11px 13px; border-radius: 13px; }
.use-cases .icon { width: 31px; height: 31px; }
.use-cases strong { font-size: 14px; line-height: 1.25; }
.use-cases small { font-size: 11px; line-height: 1.35; }
@media (max-width: 760px) {
  .data-section { gap: 28px; }
  .data-visual { height: 280px; }
  .data-copy h2 { font-size: clamp(29px, 8vw, 34px) !important; }
  .data-copy > p { font-size: 14px !important; }
  .use-cases { margin: 16px 0; }
  .use-cases > div { padding: 10px 12px; }
}

/* Hero: ruhige, präzise Editorial-Variante */
.hero {
  min-height: 650px;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 76px;
  padding-block: 54px 54px;
}
.hero-copy { max-width: 560px; }
.hero .eyebrow {
  gap: 0;
  margin-bottom: 28px;
  color: #6d6d72;
  font-size: 12px;
  letter-spacing: .01em;
}
.hero .eyebrow .status-dot { display: none; }
.hero h1 {
  max-width: 620px;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: .98;
  letter-spacing: -.075em;
}
.hero h1 span { color: #b8610d; }
.hero-copy > p {
  max-width: 510px;
  margin-top: 28px;
  color: #6f6f74;
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { margin-top: 32px; }
.hero .btn { min-height: 50px; padding-inline: 18px; font-size: 14px; }
.hero .trust-row { display: none; }
.hero-photo {
  height: 500px;
  border: 0;
  border-radius: 20px;
  background: #e9e5dc;
  box-shadow: none;
}
.hero-photo::after { display: none; }
.hero-photo > img {
  object-position: center;
  animation: none;
}
.hero-photo-badge { display: none; }
@media (max-width: 760px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 34px;
    padding-block: 42px 36px;
  }
  .hero-copy {
    width: 100%;
    order: 1;
  }
  .hero .eyebrow { margin-bottom: 22px; font-size: 11px; }
  .hero h1 { font-size: clamp(40px, 11vw, 54px); }
  .hero-copy > p { margin-top: 22px; font-size: 15px; line-height: 1.65; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }
  .hero .btn {
    width: 100%;
    white-space: nowrap;
  }
  .hero-photo {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    order: 2;
  }
}

/* Marken direkt in der grauen Reparatursektion */
.repair-section > .wrap > .brand-band {
  width: 100%;
  margin: 24px 0 0;
  padding: 28px 0 12px;
  background: transparent;
  border-top: 1px solid rgba(205, 201, 193, .9);
  border-bottom: 0;
}
.repair-section > .wrap > .brand-band .wrap {
  width: 100%;
}
.repair-section > .wrap > .brand-band .brand-band-head {
  align-items: baseline;
  margin-bottom: 16px;
}
.repair-section > .wrap > .brand-band .brand-band-head h2 {
  font-size: 24px;
}
.repair-section > .wrap > .brand-band .brand-band-head p {
  font-size: 12px;
}
.repair-builder.reveal { opacity: 1; transform: none; }

/* Zubehörkarten sauber zentrieren und typografisch beruhigen */
.accessory-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.accessory-item .accessory-icon {
  flex: 0 0 auto;
  margin-inline: auto;
}
.accessory-item strong {
  margin-top: 0;
  font-size: 14px !important;
  line-height: 1.2;
}
.accessory-item small {
  font-size: 10px !important;
  line-height: 1.35;
}
.accessory-card {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.accessory-card > .icon {
  margin: 0 0 12px;
}
.accessory-card h3 {
  font-size: 17px !important;
  line-height: 1.2;
}
.accessory-card p {
  max-width: 22ch;
  font-size: 13px !important;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .repair-section > .wrap > .brand-band {
    margin-top: 20px;
    padding: 24px 0 8px;
  }
  .repair-section > .wrap > .brand-band .brand-band-head {
    display: block;
  }
  .repair-section > .wrap > .brand-band .brand-band-head h2 {
    font-size: 21px;
  }
  .repair-section > .wrap > .brand-band .brand-band-head p {
    margin-top: 6px;
    font-size: 11px;
  }
  .accessory-item {
    justify-content: flex-start;
  }
  .accessory-item strong {
    font-size: 13px !important;
  }
}

/* Keep the new service explainer above the older generic service-note defaults. */
.service-page .service-makeover-note {
  margin-top: 0;
  color: inherit;
  font-size: inherit;
}

.service-page .service-makeover-note strong {
  font-family: "Space Grotesk", sans-serif;
}

.service-page .service-makeover-note span {
  color: #665e56;
}
