:root {
  --ap-pink: #fc0;
  --ap-pink-dark: #fbb900;
  --ap-red: #ff1d25;
  --ap-ink: #00001e;
  --ap-muted: #3c3c3c;
  --ap-line: #e7e8ec;
  --ap-soft: #fff6dd;
  --ap-mint: #b7cac8;
  --ap-violet: #fff6dd;
  --ap-blue: #833ca3;
  --ap-shadow: 0 16px 40px rgba(0, 0, 30, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ap-ink);
  font-family: "Trebuchet MS", Arial, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.ap-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  box-shadow: 0 2px 18px rgba(29, 31, 36, 0.12);
}

.ap-topbar,
.ap-mainnav,
.ap-breadcrumbs,
.ap-customer-card,
.ap-shop-layout,
.ap-form-section,
.ap-page-layout,
.ap-footer {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.ap-topbar {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 42px;
}

.ap-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.ap-logo-mark {
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--ap-pink);
  color: var(--ap-ink);
  font-size: 30px;
  font-weight: 900;
}

.ap-logo-text {
  font-size: 22px;
}

.ap-customer-switch {
  display: flex;
  gap: 28px;
  align-items: center;
}

.ap-customer-switch a,
.ap-header-links a {
  color: var(--ap-muted);
  font-size: 15px;
}

.ap-customer-switch .is-active {
  color: var(--ap-pink);
  font-weight: 800;
}

.ap-header-links {
  display: flex;
  gap: 24px;
}

.ap-mainnav {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 0 42px;
  border-top: 1px solid var(--ap-line);
}

.ap-nav-list {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 3vw, 54px);
  min-width: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ap-nav-list a {
  display: grid;
  align-items: center;
  min-height: 76px;
  color: var(--ap-ink);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 4px solid transparent;
}

.ap-nav-list .is-active a,
.ap-nav-list a:hover {
  color: var(--ap-pink);
  border-bottom-color: var(--ap-pink);
}

.ap-nav-actions {
  display: flex;
  gap: 16px;
  font-size: 28px;
}

.ap-nav-actions a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.ap-breadcrumbs {
  display: flex;
  gap: 16px;
  padding: 20px 42px;
  color: var(--ap-muted);
  font-size: 15px;
}

.ap-breadcrumbs strong {
  color: var(--ap-ink);
}

.ap-hero {
  width: min(100%, 1680px);
  min-height: 620px;
  margin: 0 auto;
  position: relative;
  background: #f8f2e5 url("../images/senioren/hero-senioren-telefon.png") center right / cover no-repeat;
  overflow: hidden;
}

.ap-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255, 246, 221, 0.96) 0%, rgba(255, 246, 221, 0.9) 40%, rgba(255, 246, 221, 0.28) 62%, rgba(255, 246, 221, 0) 100%),
    radial-gradient(circle at 12% 52%, rgba(255, 204, 0, 0.24) 0 24%, transparent 25%);
}

.ap-hero-slider {
  position: relative;
  min-height: 620px;
}

.ap-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.ap-hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.ap-hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 48%);
  padding: 88px 0 94px 58px;
  color: var(--ap-ink);
}

.ap-badge {
  display: inline-flex;
  padding: 8px 13px;
  background: #ffffff;
  color: var(--ap-ink);
  font-weight: 800;
  border-radius: 7px;
}

.ap-hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 4.1vw, 64px);
  line-height: 1.07;
}

.ap-hero p {
  max-width: 600px;
  margin: 0 0 26px;
  font-size: 21px;
  line-height: 1.42;
}

.ap-button {
  border: 0;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 7px;
  background: var(--ap-pink);
  color: var(--ap-ink);
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
}

.ap-button-outline {
  border: 2px solid var(--ap-ink);
  background: #ffffff;
}

.ap-button-light {
  border: 2px solid var(--ap-pink);
  background: #ffffff;
  color: var(--ap-pink);
}

.ap-slider-dots {
  position: absolute;
  z-index: 2;
  left: 58px;
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.ap-slider-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.ap-slider-dots .is-active {
  background: #ffffff;
}

.ap-customer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding: 24px 42px;
  background: #ffffff;
  box-shadow: var(--ap-shadow);
}

.ap-customer-card strong,
.ap-customer-card span {
  display: block;
}

.ap-customer-card strong {
  font-size: 21px;
}

.ap-customer-card span {
  margin-top: 4px;
  color: var(--ap-muted);
}

.ap-shop-layout {
  display: block;
  padding: 28px 0 68px;
  background: #ffffff;
  overflow: visible;
}

.ap-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  gap: 28px;
  padding: 0 42px 68px;
  background: #ffffff;
}

.ap-page-content {
  min-width: 0;
}

.ap-tariff-area {
  min-width: 0;
}

.ap-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 22px;
}

.ap-kicker {
  margin: 0 0 8px;
  color: var(--ap-pink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ap-section-head h2,
.ap-form-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
}

.ap-select {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--ap-ink);
  border-radius: 7px;
  white-space: nowrap;
}

.ap-select select {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ap-ink);
  font: inherit;
  font-weight: 800;
}

.ap-tabs {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  border-bottom: 1px solid var(--ap-line);
  margin-bottom: 42px;
  -webkit-overflow-scrolling: touch;
}

.ap-tabs button {
  min-width: 180px;
  min-height: 58px;
  border: 1px solid var(--ap-line);
  border-bottom: 0;
  background: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.ap-tabs .is-muted {
  background: #eff1f4;
  color: var(--ap-muted);
}

.ap-tabs .is-active {
  border-color: var(--ap-ink);
  background: var(--ap-soft);
}

.ap-tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ap-tariff-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 640px;
  padding: 34px 24px 30px;
  border: 2px solid var(--ap-line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ap-tariff-card:hover,
.ap-tariff-card.is-selected {
  border-color: var(--ap-pink);
  box-shadow: 0 10px 28px rgba(251, 185, 0, 0.24);
  transform: translateY(-2px);
}

.ap-recommendation {
  position: absolute;
  top: -2px;
  right: -2px;
  padding: 12px 18px;
  border-radius: 0 4px 0 6px;
  background: var(--ap-pink);
  color: var(--ap-ink);
  text-transform: uppercase;
  font-weight: 900;
}

.ap-radio {
  position: absolute;
  top: 58px;
  right: 24px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ap-ink);
  border-radius: 50%;
  background: #ffffff;
}

.ap-tariff-card.is-selected .ap-radio {
  border: 8px solid var(--ap-red);
}

.ap-tariff-card h3 {
  margin: 8px 0 2px;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1;
}

.ap-download,
.ap-plan-name {
  font-size: 21px;
  font-weight: 800;
}

.ap-tariff-card p {
  color: var(--ap-muted);
  font-size: 18px;
}

.ap-plan-name {
  display: block;
  margin: 24px 48px 18px 0;
}

.ap-feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.ap-feature-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ap-muted);
  font-size: 17px;
  line-height: 1.42;
}

.ap-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ap-red);
  font-weight: 900;
}

.ap-benefits {
  display: grid;
  gap: 5px;
  margin-bottom: 56px;
}

.ap-benefits span,
.ap-summary-benefits span {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--ap-violet);
  color: var(--ap-blue);
  font-weight: 800;
}

.ap-average {
  min-height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--ap-mint);
  color: var(--ap-ink);
  font-weight: 900;
}

.ap-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.ap-price strong {
  font-size: 32px;
}

.ap-small {
  line-height: 1.45;
}

.ap-link {
  display: block;
  width: fit-content;
  margin-top: 20px;
  color: var(--ap-blue);
  font-size: 19px;
  font-weight: 900;
  text-decoration: underline;
}

.ap-order-panel {
  position: sticky;
  top: var(--ap-summary-top, 188px);
  align-self: start;
  z-index: 4;
  max-height: calc(100vh - var(--ap-summary-top, 188px) - 18px);
  margin-top: 28px;
  overflow-y: auto;
}

@media (min-width: 1201px) {
  .ap-summary-slick {
    margin-top: 18px;
  }

  .ap-page-content .ap-info-section,
  .ap-page-content .ap-device-section,
  .ap-page-content .ap-faq-section,
  .ap-page-content .ap-form-section {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .ap-page-content .ap-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ap-stepper,
.ap-summary-slick {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--ap-line);
}

.ap-summary-slick {
  margin-top: var(--ap-summary-panel-offset, 18px);
  overflow: hidden;
}

.ap-stepper {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 16px;
  padding: 24px;
  align-items: center;
}

.ap-stepper span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ap-soft);
  color: var(--ap-muted);
  font-weight: 900;
}

.ap-stepper .is-active {
  background: var(--ap-pink);
  color: var(--ap-ink);
}

.ap-stepper strong {
  min-height: 66px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-muted);
}

.ap-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
  padding: 28px 24px;
  background: transparent;
}

.ap-summary span,
.ap-summary small {
  display: block;
  color: var(--ap-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ap-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}

.ap-summary small {
  margin-top: 12px;
  text-transform: none;
}

.ap-summary .ap-button {
  grid-column: 1 / -1;
}

.ap-summary-benefits {
  display: none;
  gap: 12px;
  margin-top: 28px;
}

.ap-form-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  padding: 76px 42px;
  background: var(--ap-ink);
  color: #ffffff;
}

.ap-form-copy p:not(.ap-kicker) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.6;
}

.ap-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #ffffff;
  color: var(--ap-ink);
  border-radius: 8px;
}

.ap-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ap-form label {
  display: grid;
  gap: 7px;
  color: var(--ap-muted);
  font-weight: 800;
}

.ap-form input,
.ap-form textarea {
  width: 100%;
  border: 1px solid var(--ap-line);
  border-radius: 6px;
  padding: 15px 14px;
  color: var(--ap-ink);
  font: inherit;
}

.ap-form input:focus,
.ap-form textarea:focus {
  outline: 2px solid var(--ap-pink);
  outline-offset: 1px;
}

.ap-success {
  margin: 0;
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--ap-mint);
  color: #007b4d;
  font-weight: 900;
}

.ap-info-section,
.ap-device-section,
.ap-faq-section {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 72px 42px;
}

.ap-info-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  background: #ffffff;
}

.ap-info-section h2,
.ap-device-section h2,
.ap-faq-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
}

.ap-info-copy p {
  margin: 0;
  color: var(--ap-muted);
  font-size: 20px;
  line-height: 1.55;
}

.ap-device-section {
  background: var(--ap-soft);
}

.ap-device-grid {
  display: grid;
  gap: 22px;
}

.ap-device-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 2px solid rgba(0, 0, 30, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--ap-shadow);
}

.ap-device-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
}

.ap-device-card h3,
.ap-faq-grid h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
}

.ap-device-card strong {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 10px 14px;
  background: var(--ap-pink);
  color: var(--ap-ink);
  border-radius: 4px;
}

.ap-faq-section {
  background: #ffffff;
}

.ap-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.ap-faq-grid article {
  padding: 26px;
  border: 2px solid var(--ap-line);
  border-radius: 8px;
  background: #ffffff;
}

.ap-faq-grid p {
  margin: 0;
  color: var(--ap-muted);
  font-size: 18px;
  line-height: 1.5;
}

.ap-order-hero,
.ap-order-form-section {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 58px 42px;
}

.ap-order-hero {
  background: linear-gradient(135deg, var(--ap-pink) 0%, var(--ap-pink-dark) 100%);
  color: var(--ap-ink);
}

.ap-order-hero h1 {
  max-width: 850px;
  margin: 0 0 14px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

.ap-order-hero p:not(.ap-kicker) {
  max-width: 760px;
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
}

.ap-order-form-section {
  background: #ffffff;
}

.ap-order-message {
  margin-bottom: 24px;
}

.ap-error {
  padding: 14px 16px;
  border-radius: 6px;
  background: #ffe2e4;
  color: #9c1118;
  font-weight: 900;
}

.ap-order-form,
.ap-form-block {
  display: grid;
  gap: 22px;
}

.ap-form-block {
  padding: 28px;
  border: 2px solid var(--ap-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 30, 0.07);
}

.ap-form-block h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
}

.ap-form-block p {
  margin: 0;
  color: var(--ap-muted);
  font-size: 17px;
  line-height: 1.5;
}

.ap-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ap-choice-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 2px solid var(--ap-line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.ap-choice-card:has(input:checked) {
  border-color: var(--ap-red);
  box-shadow: 0 8px 24px rgba(255, 29, 37, 0.12);
}

.ap-choice-card input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: var(--ap-red);
}

.ap-choice-title {
  font-size: 24px;
  font-weight: 900;
}

.ap-choice-card strong {
  font-size: 20px;
}

.ap-choice-card ul {
  display: grid;
  gap: 8px;
  padding-left: 19px;
  margin: 0;
  color: var(--ap-muted);
}

.ap-device-choice img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.ap-sim-icon {
  width: 100%;
  height: 130px;
  display: grid;
  place-items: center;
  border: 2px dashed var(--ap-pink-dark);
  border-radius: 8px;
  color: var(--ap-ink);
  font-size: 28px;
  font-weight: 900;
}

.ap-radio-row,
.ap-checkline {
  display: grid;
  gap: 12px;
}

.ap-radio-row label,
.ap-checkline {
  color: var(--ap-muted);
  font-weight: 800;
  line-height: 1.4;
}

.ap-radio-row input,
.ap-checkline input {
  margin-right: 8px;
  accent-color: var(--ap-red);
}

.ap-form-block label {
  display: grid;
  gap: 7px;
  color: var(--ap-muted);
  font-weight: 800;
}

.ap-form-block input,
.ap-form-block select,
.ap-form-block textarea {
  width: 100%;
  border: 1px solid var(--ap-line);
  border-radius: 6px;
  padding: 15px 14px;
  color: var(--ap-ink);
  font: inherit;
}

.ap-form-block input:focus,
.ap-form-block select:focus,
.ap-form-block textarea:focus {
  outline: 2px solid var(--ap-pink);
  outline-offset: 1px;
}

.ap-honeypot {
  position: absolute;
  left: -9999px;
}

.ap-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 42px;
  background: #ffffff;
  border-top: 1px solid var(--ap-line);
}

.ap-footer strong,
.ap-footer span {
  display: block;
}

.ap-footer span {
  color: var(--ap-muted);
  margin-top: 5px;
}

.ap-footer a {
  color: var(--ap-pink);
  font-weight: 900;
}

@media (max-width: 1200px) {
  .ap-page-layout {
    display: block;
    padding: 0;
  }

  .ap-shop-layout {
    padding: 28px 42px 68px;
    background: #ffffff;
  }

  .ap-order-panel {
    position: static;
  }

  .ap-tariff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-info-section,
  .ap-device-card,
  .ap-faq-grid,
  .ap-choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ap-site-header,
  .ap-site-main,
  .ap-topbar,
  .ap-mainnav,
  .ap-breadcrumbs,
  .ap-customer-card,
  .ap-shop-layout,
  .ap-page-layout,
  .ap-form-section,
  .ap-footer,
  .ap-info-section,
  .ap-device-section,
  .ap-faq-section,
  .ap-order-hero,
  .ap-order-form-section {
    width: 100%;
    max-width: 100%;
  }

  .ap-topbar,
  .ap-mainnav,
  .ap-section-head,
  .ap-customer-card,
  .ap-form-section,
  .ap-footer {
    grid-template-columns: 1fr;
  }

  .ap-topbar,
  .ap-mainnav,
  .ap-breadcrumbs,
  .ap-customer-card,
  .ap-shop-layout,
  .ap-form-section,
  .ap-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ap-shop-layout {
    display: block;
    padding-left: 14px;
    padding-right: 14px;
    overflow: hidden;
  }

  .ap-tariff-area,
  .ap-section-head,
  .ap-select,
  .ap-tabs,
  .ap-tariff-grid,
  .ap-tariff-card {
    width: 100%;
    max-width: 100%;
  }

  .ap-order-panel {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  body.has-ap-mobile-summary .ap-summary-slick {
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--ap-summary-bottom-offset, 0px);
    z-index: 45;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--ap-line);
    box-shadow: 0 -12px 30px rgba(0, 0, 30, 0.14);
  }

  .ap-order-panel .ap-stepper {
    display: none;
  }

  .ap-order-panel .ap-summary {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin: 0 auto;
    max-width: 460px;
    padding: 14px;
    box-shadow: none;
  }

  body.has-ap-mobile-summary .ap-order-panel .ap-summary {
    margin-top: 0;
  }

  body.has-ap-mobile-summary .ap-summary-benefits {
    max-width: 460px;
    margin: 8px auto 0;
    gap: 6px;
  }

  body.has-ap-mobile-summary .ap-summary-benefits span {
    min-height: 42px;
  }

  .ap-order-panel .ap-summary span,
  .ap-order-panel .ap-summary small {
    font-size: 11px;
  }

  .ap-order-panel .ap-summary strong {
    font-size: 22px;
  }

  .ap-order-panel .ap-summary small {
    display: none;
  }

  .ap-order-panel .ap-summary .ap-button {
    grid-column: 1 / -1;
    min-height: 48px;
    padding: 0 14px;
  }

  .ap-header-links,
  .ap-nav-actions {
    display: none;
  }

  .ap-topbar {
    gap: 14px;
    min-height: 74px;
  }

  .ap-logo,
  .ap-customer-switch,
  .ap-section-head,
  .ap-select,
  .ap-tabs,
  .ap-tariff-grid,
  .ap-tariff-card {
    min-width: 0;
  }

  .ap-logo-text {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .ap-customer-switch {
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ap-mainnav {
    overflow: hidden;
  }

  .ap-nav-list {
    width: 100%;
    gap: 22px;
    padding-bottom: 2px;
  }

  .ap-nav-list a {
    min-height: 58px;
    font-size: 18px;
  }

  .ap-logo-mark {
    width: 58px;
    font-size: 22px;
  }

  .ap-hero,
  .ap-hero-slider {
    min-height: 600px;
  }

  .ap-hero::before {
    width: 100%;
    background:
      linear-gradient(180deg, rgba(255, 246, 221, 0.98) 0%, rgba(255, 246, 221, 0.92) 54%, rgba(255, 246, 221, 0.08) 100%),
      radial-gradient(circle at 12% 30%, rgba(255, 204, 0, 0.22) 0 24%, transparent 25%);
  }

  .ap-hero-copy {
    width: 100%;
    padding: 42px 24px 76px;
  }

  .ap-tariff-grid,
  .ap-form-row,
  .ap-info-section,
  .ap-faq-grid {
    grid-template-columns: 1fr;
  }

  .ap-section-head {
    gap: 18px;
  }

  .ap-section-head h2,
  .ap-form-copy h2 {
    font-size: 31px;
  }

  .ap-select {
    width: 100%;
    max-width: calc(100vw - 28px);
    min-height: auto;
    flex-wrap: wrap;
    align-items: start;
    padding: 12px 14px;
    white-space: normal;
    overflow: hidden;
  }

  .ap-select select {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .ap-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
  }

  .ap-tabs button {
    min-width: 0;
    width: 100%;
    padding: 0 14px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .ap-tariff-card {
    width: 100%;
    max-width: calc(100vw - 28px);
    min-height: auto;
    padding: 28px 20px;
    overflow: hidden;
    transform: none;
  }

  .ap-tariff-card:hover,
  .ap-tariff-card.is-selected {
    transform: none;
  }

  .ap-info-section,
  .ap-device-section,
  .ap-faq-section,
  .ap-order-hero,
  .ap-order-form-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ap-form-block {
    padding: 20px;
  }

  .ap-device-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .ap-device-card img {
    height: 210px;
  }
}
