/* ==========================================================================
   POWERNET – Modern static website styles
   ========================================================================== */

/* CSS Variables – POWERNET brand palette */
:root {
  --pn-navy-dark: #07182F;
  --pn-navy: #0B1E36;
  --pn-navy-soft: #102B4A;
  --pn-card-dark: #10233D;

  --pn-blue-main: #2EA7FF;
  --pn-blue-bright: #2EBBFF;
  --pn-cyan-soft: #69D8FF;

  --pn-bg-light: #F5F8FC;
  --pn-bg-soft-blue: #EEF7FF;
  --pn-white: #FFFFFF;

  --pn-text-dark: #101828;
  --pn-text-muted: #5B667A;
  --pn-text-light: #FFFFFF;
  --pn-text-light-muted: #B8C7D9;

  /* Legacy aliases (kompatibilita) */
  --color-bg-dark: var(--pn-navy-dark);
  --color-card: var(--pn-card-dark);
  --color-card-light: var(--pn-navy-soft);
  --color-card-hover: #153052;
  --color-blue: var(--pn-blue-main);
  --color-cyan: var(--pn-blue-bright);
  --color-white: var(--pn-white);
  --color-text-secondary: var(--pn-text-light-muted);
  --color-text-muted-light: var(--pn-text-muted);
  --color-light-bg: var(--pn-bg-light);
  --color-soft-bg: var(--pn-bg-soft-blue);
  --color-text-dark: var(--pn-text-dark);
  --color-border: rgba(184, 199, 217, 0.18);
  --color-border-light: #E2E8F0;

  --gradient-primary: linear-gradient(135deg, var(--pn-blue-main), var(--pn-blue-bright));
  --gradient-hero: radial-gradient(ellipse at 25% 15%, rgba(46, 167, 255, 0.22) 0%, transparent 55%),
                   radial-gradient(ellipse at 75% 85%, rgba(46, 187, 255, 0.14) 0%, transparent 50%),
                   radial-gradient(ellipse at 50% 50%, rgba(105, 216, 255, 0.06) 0%, transparent 70%);

  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(7, 24, 47, 0.05);
  --shadow-md: 0 4px 20px rgba(7, 24, 47, 0.07);
  --shadow-lg: 0 8px 28px rgba(7, 24, 47, 0.09);
  --shadow-glow: 0 0 0 1px rgba(46, 167, 255, 0.35), 0 8px 32px rgba(46, 167, 255, 0.2);

  --header-height: 56px;
  --transition: 0.25s ease;
  --container-max: 1200px;
  --container-padding: 24px;
}

/* Modern Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pn-text-dark);
  background-color: var(--pn-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

fieldset {
  border: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.is-hidden {
  display: none !important;
}

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

.label-optional {
  font-weight: 400;
  color: var(--pn-text-muted);
  font-size: 0.8125rem;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* Typography */
.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-top: 12px;
}

.section--light .section__subtitle {
  color: var(--color-text-muted-light);
}

.section--soft .section__subtitle {
  color: var(--color-text-muted-light);
}

.section--soft .section__title {
  color: var(--color-text-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__header .section__subtitle {
  margin-inline: auto;
}

.section--light .section__title {
  color: var(--color-text-dark);
}

/* Sections */
.section {
  padding-block: 72px;
  scroll-margin-top: var(--header-height);
}

.section--dark {
  background-color: var(--pn-navy);
  color: var(--pn-text-light);
}

.section--dark .section__subtitle {
  color: var(--pn-text-light-muted);
}

.section--light {
  background-color: var(--pn-bg-light);
  color: var(--pn-text-dark);
}

.section--soft-blue {
  background-color: var(--pn-bg-soft-blue);
  color: var(--pn-text-dark);
}

.section--soft-blue .section__title {
  color: var(--pn-text-dark);
}

.section--soft-blue .section__subtitle {
  color: var(--pn-text-muted);
}

.section--soft {
  background: var(--pn-bg-soft-blue);
  color: var(--pn-text-dark);
}

.section--pricing {
  background-color: var(--pn-navy-dark);
  padding-top: 48px;
  padding-bottom: 40px;
  color: var(--pn-text-light);
}

.section--pricing .section__header {
  margin-bottom: 24px;
}

.section--pricing .section__title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
}

.section--pricing .section__subtitle {
  font-size: 0.9375rem;
  margin-top: 8px;
}

.section--pricing .pricing-toggle {
  margin-bottom: 24px;
}

.section--pricing .section__title {
  color: var(--pn-text-light);
}

.section--pricing .section__subtitle {
  color: var(--pn-text-light-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--pn-text-light);
  box-shadow: 0 4px 18px rgba(46, 167, 255, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(46, 187, 255, 0.45);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pn-text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--pn-cyan-soft);
  color: var(--pn-text-light);
}

.btn--dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--dark:hover {
  background: var(--color-card);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--pn-blue-bright);
  color: var(--pn-blue-bright);
}

.section--light .btn--outline:hover,
.section--soft-blue .btn--outline:hover,
.section--soft .btn--outline:hover {
  border-color: var(--pn-blue-main);
  color: var(--pn-blue-main);
}

.btn--ghost {
  background: transparent;
  color: var(--pn-text-light-muted);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
}

.btn--ghost:hover {
  color: var(--pn-text-light);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.header .btn--ghost {
  color: var(--pn-text-light-muted);
  border-color: rgba(255, 255, 255, 0.14);
}

.header .btn--ghost:hover {
  color: var(--pn-text-light);
  background: rgba(255, 255, 255, 0.08);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.9;
}

.logo__img {
  display: block;
  width: auto;
  height: 40px;
}

.logo--footer .logo__img {
  height: 36px;
}

.section--light .btn--outline,
.section--soft-blue .btn--outline,
.section--soft .btn--outline {
  color: var(--pn-text-dark);
  border-color: var(--color-border-light);
}

/* Header – tmavý navy s blur */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(11, 30, 54, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(105, 216, 255, 0.12);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
  background: rgba(7, 24, 47, 0.94);
  box-shadow: 0 4px 20px rgba(7, 24, 47, 0.25);
}

.header.is-nav-open {
  z-index: 10051;
}

/* Nav – desktop: centrované v headeri */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1001;
  pointer-events: none;
}

.nav__panel {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.nav__close {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.header .logo__img {
  height: 32px;
}

.header .btn--sm {
  padding: 6px 14px;
  font-size: 0.8125rem;
}

.nav__list {
  display: flex;
  gap: 24px;
}

.nav__extras {
  display: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pn-text-light-muted);
  transition: color var(--transition);
}

.nav__icon {
  display: none;
}

.nav__link:hover {
  color: var(--pn-blue-bright);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pn-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--pn-text-light);
}

/* Section waves – jeden jemný oblúk na celú šírku obrazovky */
.section-wave {
  position: relative;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.section-wave::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  width: 108%;
  height: 100%;
  bottom: 0;
  border-radius: 50% 50% 0 0 / 280% 280% 0 0;
}

.section + .section-wave,
.section-wave + .section {
  margin-top: -1px;
}

.section-wave--to-light {
  background-color: var(--pn-navy-dark);
}

.section-wave--to-light::after {
  background-color: var(--pn-bg-light);
}

.section-wave--to-dark {
  background-color: var(--pn-bg-light);
}

.section-wave--to-dark::after {
  background-color: var(--pn-navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, var(--pn-navy) 0%, var(--pn-navy-dark) 55%, var(--pn-navy-dark) 100%);
  background-image: var(--gradient-hero), linear-gradient(165deg, var(--pn-navy) 0%, var(--pn-navy-dark) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(46, 167, 255, 0.2);
  top: 8%;
  right: 8%;
}

.hero__orb--2 {
  width: 320px;
  height: 320px;
  background: rgba(46, 187, 255, 0.14);
  bottom: 18%;
  left: 4%;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 220px;
  height: 220px;
  background: rgba(105, 216, 255, 0.1);
  top: 48%;
  left: 38%;
  animation-delay: -5s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 167, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 167, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 72%);
  opacity: 0.7;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-block: 48px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pn-cyan-soft);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--pn-text-light);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--pn-text-light-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__slider {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 24px;
}

.hero__slides {
  width: 100%;
}

.hero__slide {
  display: none;
}

.hero__slide.is-active {
  display: block;
  animation: heroSlideIn 0.45s ease;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__promo {
  width: 100%;
  max-width: 380px;
  background: rgba(16, 35, 61, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(105, 216, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-glow);
}

.hero__promo--tv {
  border-color: rgba(255, 138, 0, 0.35);
  background: linear-gradient(160deg, rgba(16, 35, 61, 0.88) 0%, rgba(30, 45, 80, 0.82) 100%);
}

.hero__promo--zone {
  border-color: rgba(46, 187, 255, 0.35);
}

.hero__promo-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pn-cyan-soft);
  margin-bottom: 20px;
}

.hero__promo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__promo-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(105, 216, 255, 0.12);
}

.hero__promo-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero__promo-list strong {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__promo-list span {
  font-size: 0.875rem;
  color: var(--pn-text-light-muted);
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.hero__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pn-text-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(105, 216, 255, 0.35);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  padding: 0;
  transition: transform var(--transition), background var(--transition), width var(--transition);
}

.hero__dot.is-active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--pn-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 167, 255, 0.35);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pn-bg-soft-blue);
  border-radius: var(--radius-md);
  color: var(--pn-blue-main);
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.service-card__text {
  color: var(--color-text-muted-light);
  margin-bottom: 20px;
}

.service-card__link {
  font-weight: 600;
  color: var(--color-blue);
  transition: color var(--transition);
}

.service-card__link:hover {
  color: var(--color-cyan);
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-pill);
  padding: 6px;
  max-width: 480px;
  margin: 0 auto 32px;
  border: 1px solid rgba(105, 216, 255, 0.15);
}

.pricing-toggle__btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.pricing-toggle__btn.is-active {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(19, 158, 242, 0.3);
}

.pricing-toggle__btn:hover:not(.is-active) {
  color: var(--color-white);
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 880px;
  margin-inline: auto;
  gap: 16px;
}

.section--pricing .pricing-card {
  padding: 18px 20px;
}

.section--pricing .pricing-card__badge {
  margin-bottom: 8px;
  font-size: 0.6875rem;
  padding: 3px 10px;
}

.section--pricing .pricing-card__name {
  font-size: 1rem;
  margin-bottom: 4px;
}

.section--pricing .pricing-card__speed {
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.section--pricing .pricing-card__speed strong {
  font-size: 1.5rem;
}

.section--pricing .pricing-card__price {
  margin-bottom: 8px;
}

.section--pricing .pricing-card__amount {
  font-size: 1.75rem;
}

.section--pricing .pricing-card__desc {
  font-size: 0.8125rem;
  margin-bottom: 12px;
  line-height: 1.45;
}

.section--pricing .pricing-card__features {
  margin-bottom: 16px;
}

.section--pricing .pricing-card__features li {
  padding: 4px 0 4px 16px;
  font-size: 0.8125rem;
}

.section--pricing .pricing-card .btn {
  padding: 10px 16px;
  font-size: 0.8125rem;
}

.pricing-grid:not(.is-hidden) + .pricing-note.is-hidden {
  display: none;
}

.pricing-card {
  background: var(--pn-card-dark);
  border: 1px solid rgba(105, 216, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 167, 255, 0.4);
  box-shadow: 0 8px 28px rgba(46, 167, 255, 0.12);
}

.pricing-card--featured {
  border-color: var(--pn-blue-main);
  background: linear-gradient(180deg, var(--pn-navy-soft) 0%, var(--pn-card-dark) 100%);
  box-shadow: var(--shadow-glow);
  position: relative;
}

.pricing-card--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
}

.pricing-card__badge--accent {
  background: rgba(46, 167, 255, 0.18);
  color: var(--pn-cyan-soft);
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__speed {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.pricing-card__speed strong {
  font-size: 1.75rem;
  color: var(--color-white);
  font-weight: 800;
}

.pricing-card__price {
  margin-bottom: 12px;
}

.pricing-card__amount {
  font-size: 2rem;
  font-weight: 800;
}

.pricing-card__period {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  flex-grow: 0;
}

.pricing-card__features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-card__features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: 32px;
  max-width: 700px;
  margin-inline: auto;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Package carousel – mobile swipe */
.package-carousel__footer {
  display: none;
}

.package-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.package-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(105, 216, 255, 0.25);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.package-carousel__dot.is-active {
  background: var(--pn-cyan-soft);
  transform: scale(1.2);
}

.package-carousel__status {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.section--light .package-carousel__dot {
  background: rgba(46, 167, 255, 0.2);
}

.section--light .package-carousel__dot.is-active {
  background: var(--pn-blue-main);
}

.section--light .package-carousel__status {
  color: var(--pn-text-muted);
}

/* Calculator */
.calculator {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.calculator__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.calc-group {
  margin-bottom: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.calc-group__label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-options--stack {
  flex-direction: column;
}

.calc-option {
  cursor: pointer;
}

.calc-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-option__box {
  display: block;
  padding: 12px 18px;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.calc-option input:checked + .calc-option__box {
  border-color: var(--color-blue);
  background: rgba(19, 158, 242, 0.08);
  color: var(--color-blue);
}

.calc-option:hover .calc-option__box {
  border-color: var(--color-blue);
}

.calc-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.calc-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-checkbox__box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-text-dark);
  background: var(--color-white);
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
}

.calc-checkbox__box::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border-light);
  border-radius: 4px;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.calc-checkbox input:checked + .calc-checkbox__box {
  border-color: var(--color-blue);
  background: rgba(19, 158, 242, 0.05);
}

.calc-checkbox input:checked + .calc-checkbox__box::before {
  background: var(--color-blue);
  border-color: var(--color-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.calculator__summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-md);
}

.calculator__summary-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.calculator__items {
  margin-bottom: 20px;
}

.calculator__items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  padding-block: 8px;
  border-bottom: 1px solid var(--color-border-light);
}

.calculator__items li span:last-child {
  color: var(--color-text-dark);
  font-weight: 600;
  white-space: nowrap;
}

.calculator__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 16px;
  margin-bottom: 20px;
  border-top: 2px solid var(--color-border-light);
}

.calculator__total span {
  font-size: 0.9375rem;
  color: var(--color-text-muted-light);
}

.calculator__total strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pn-blue-main);
  background: none;
  -webkit-text-fill-color: currentColor;
  background-clip: unset;
}

/* Calculator FAB + modal */
.calc-fab {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 9999;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: #ff8a00;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(255, 138, 0, 0.4);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.calc-fab:hover {
  transform: translateY(-2px);
  background: #ff9500;
  box-shadow: 0 8px 28px rgba(255, 138, 0, 0.55);
}

.calc-fab:focus-visible {
  outline: 3px solid rgba(46, 167, 255, 0.55);
  outline-offset: 3px;
}

.calc-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.calc-modal.is-open {
  display: flex;
}

.calc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 54, 0.55);
  backdrop-filter: blur(4px);
}

.calc-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  max-height: min(94dvh, 720px);
  display: flex;
  flex-direction: column;
  background: var(--pn-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: calcModalIn 0.25s ease;
}

.calc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--pn-navy);
  color: #fff;
  flex-shrink: 0;
}

.calc-modal__header h2 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}

.calc-modal__body {
  flex: 1;
  min-height: 0;
  padding: 16px 18px;
  overflow-y: auto;
  background: var(--pn-bg-light);
}

.calc-modal .calculator {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 16px;
  align-items: start;
}

.calc-modal .calculator__form {
  gap: 0;
}

.calc-modal .calc-layout {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-modal .calc-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0 4px;
}

.calc-modal .calc-strip__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pn-text-muted);
  white-space: nowrap;
}

.calc-modal .calc-segment {
  display: inline-flex;
  background: #e8edf3;
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.calc-modal .calc-segment--sm .calc-segment__item span {
  padding: 5px 12px;
  font-size: 0.75rem;
}

.calc-modal .calc-segment__item {
  cursor: pointer;
}

.calc-modal .calc-segment__item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-modal .calc-segment__item span {
  display: block;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  color: var(--pn-text-muted);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.calc-modal .calc-segment__item input:checked + span {
  background: var(--pn-white);
  color: var(--pn-blue-main);
  box-shadow: var(--shadow-sm);
}

.calc-modal .calc-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
  user-select: none;
}

.calc-modal .calc-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-modal .calc-toggle__ui {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  background: #cbd5e1;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}

.calc-modal .calc-toggle__ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--pn-white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(7, 24, 47, 0.2);
  transition: transform var(--transition);
}

.calc-modal .calc-toggle input:checked + .calc-toggle__ui {
  background: var(--pn-blue-main);
}

.calc-modal .calc-toggle input:checked + .calc-toggle__ui::after {
  transform: translateX(20px);
}

.calc-modal .calc-toggle__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pn-text-dark);
}

.calc-modal .calc-panel[hidden] {
  display: none !important;
}

.calc-modal .calc-group {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.calc-modal .calc-group--packages,
.calc-modal .calc-group--tv,
.calc-modal .calc-group--extras {
  grid-column: auto;
}

.calc-modal .calc-group__label {
  font-size: 0.75rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pn-text-muted);
}

.calc-modal .calc-options--list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-modal .calc-options--compact {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-light);
}

.calc-modal .calc-option--list .calc-option__box,
.calc-modal .calc-checkbox--list .calc-checkbox__box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 4px;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  border-radius: 0;
  background: transparent;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.35;
}

.calc-modal .calc-option--list:last-child .calc-option__box,
.calc-modal .calc-checkbox--list:last-child .calc-checkbox__box {
  border-bottom: none;
}

.calc-modal .calc-option--list .calc-option__box::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.calc-modal .calc-option--list input:checked + .calc-option__box {
  color: var(--pn-text-dark);
  background: transparent;
}

.calc-modal .calc-option--list input:checked + .calc-option__box::before {
  border-color: var(--pn-blue-main);
  box-shadow: inset 0 0 0 4px var(--pn-blue-main);
}

.calc-modal .calc-option--list .calc-option__box strong,
.calc-modal .calc-checkbox--list .calc-checkbox__box strong {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pn-blue-main);
}

.calc-modal .calc-checkbox--list .calc-checkbox__box::before {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.calc-modal .calc-checkbox--list input:disabled + .calc-checkbox__box {
  opacity: 0.85;
  cursor: default;
}

.calc-modal .calc-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-light);
}

.calc-modal .calc-subrow--stack {
  flex-direction: column;
  align-items: stretch;
}

.calc-modal .calc-subrow__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pn-text-muted);
}

.calc-modal .calc-subrow--stack .calc-subrow__label {
  margin-bottom: 4px;
}

.calc-modal .calculator__summary {
  position: sticky;
  top: 0;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.calc-modal .calculator__summary-title {
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.calc-modal .calculator__items {
  margin-bottom: 10px;
  max-height: 180px;
  overflow-y: auto;
}

.calc-modal .calculator__items li {
  font-size: 0.75rem;
  padding-block: 5px;
}

.calc-modal .calculator__total {
  padding-block: 10px;
  margin-bottom: 12px;
}

.calc-modal .calculator__total span {
  font-size: 0.8125rem;
}

.calc-modal .calculator__total strong {
  font-size: 1.375rem;
}

.calc-modal .calculator__summary .btn {
  padding: 10px 14px;
  font-size: 0.8125rem;
}

@keyframes calcModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.calc-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.calc-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 768px) {
  .calc-fab {
    left: 8px;
    bottom: 8px;
    padding: 9px 16px;
    font-size: 0.8125rem;
  }

  .calc-modal {
    padding: 0;
    align-items: flex-end;
  }

  .calc-modal__dialog {
    max-width: none;
    max-height: min(96dvh, 100%);
    height: min(92dvh, 680px);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .calc-modal__header {
    padding: 12px 16px;
  }

  .calc-modal__header h2 {
    font-size: 0.9375rem;
  }

  .calc-modal__body {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .calc-modal .calculator {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 0;
    flex: 1;
    min-height: 0;
    height: 100%;
  }

  .calc-modal .calculator__form {
    overflow-y: auto;
    padding: 12px 14px;
  }

  .calc-modal .calc-layout {
    gap: 6px;
  }

  .calc-modal .calc-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .calc-modal .calc-segment {
    width: 100%;
    justify-content: center;
  }

  .calc-modal .calc-subrow {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .calc-modal .calc-segment--sm {
    width: 100%;
    justify-content: center;
  }

  .calc-modal .calculator__summary {
    position: static;
    margin: 0;
    padding: 12px 14px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 -4px 16px rgba(7, 24, 47, 0.08);
  }

  .calc-modal .calculator__items {
    max-height: 56px;
  }

  .calc-modal .calculator__summary-title {
    display: none;
  }

  .calc-modal .calculator__total strong {
    font-size: 1.25rem;
  }
}

/* Feature spotlight – astronaut */
.feature-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 46%);
  gap: 48px;
  align-items: center;
}

.feature-spotlight__content .section__subtitle {
  margin-bottom: 28px;
}

.feature-spotlight__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-spotlight__astronaut {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 900px) {
  .feature-spotlight__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .feature-spotlight__content .section__subtitle {
    margin-inline: auto;
  }

  .feature-spotlight__astronaut {
    max-width: 320px;
    margin-inline: auto;
  }
}

/* Brand chips */
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pn-blue-main);
  background: var(--pn-white);
  border: 1px solid rgba(46, 167, 255, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.brand-chip--astronaut::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pn-blue-bright);
  box-shadow: 0 0 8px rgba(46, 187, 255, 0.6);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pn-text-muted);
  background: var(--pn-white);
  border: 1px solid var(--color-border-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.google-badge::before {
  content: "G";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

/* TV Cards */
.tv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin-inline: auto;
}

.tv-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tv-card--featured {
  border-color: rgba(19, 158, 242, 0.35);
  box-shadow: var(--shadow-md);
}

.tv-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-blue);
  background: rgba(19, 158, 242, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.tv-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.tv-card__price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.tv-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted-light);
}

.tv-card__features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  margin-bottom: 8px;
}

.tv-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

.tv-card__features {
  margin-bottom: 24px;
}

/* Why Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pn-bg-soft-blue);
  border-radius: var(--radius-md);
  color: var(--pn-blue-main);
  margin-bottom: 16px;
}

.why-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.why-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
}

/* Moja zóna */
.zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.zone__content .section__subtitle {
  margin-bottom: 28px;
  color: var(--color-text-muted-light);
}

.zone__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.zone-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.zone-card:hover {
  border-color: rgba(19, 158, 242, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.zone-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text-dark);
}

.zone-card__text {
  font-size: 0.8125rem;
  color: var(--color-text-muted-light);
}

/* Reviews Slider */
.reviews-carousel {
  position: relative;
}

.reviews-arrow {
  display: none;
}

.reviews-slider {
  overflow: hidden;
  margin-bottom: 0;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.reviews-slider.is-desktop {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
}

.reviews-slider.is-desktop::-webkit-scrollbar {
  display: none;
}

.reviews-slider.is-desktop .reviews-track {
  animation: none;
}

.reviews-slider.is-manual {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  cursor: grab;
  touch-action: pan-x;
}

.reviews-slider.is-manual.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reviews-slider.is-manual::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-reviews 55s linear infinite;
}

.reviews-slider.is-manual .reviews-track {
  animation: none;
  padding-inline: var(--container-padding);
}

.reviews-slider:hover .reviews-track,
.reviews-slider.is-paused .reviews-track {
  animation-play-state: paused;
}

.reviews-slider.is-manual .review-card {
  scroll-snap-align: start;
}

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--pn-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 1px 3px rgba(60, 64, 67, 0.06);
}

.review-card--google {
  font-family: var(--font-family);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--pn-white);
}

.review-card__avatar--pb { background: #1a73e8; }
.review-card__avatar--lk { background: #ea4335; }
.review-card__avatar--pa { background: #34a853; }
.review-card__avatar--ki { background: #9334e6; }
.review-card__avatar--pc { background: #ff6d01; }
.review-card__avatar--vp { background: #4285f4; }
.review-card__avatar--ms { background: #0f9d58; }
.review-card__avatar--mh { background: #ab47bc; }
.review-card__avatar--bm { background: #e8710a; }
.review-card__avatar--ps { background: #1a73e8; }

.review-card__author-block {
  min-width: 0;
}

.review-card__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #202124;
  line-height: 1.3;
}

.review-card__stats {
  display: block;
  font-size: 0.75rem;
  color: #5f6368;
  margin-top: 2px;
  line-height: 1.3;
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.review-stars {
  color: #fbbc04;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card__time {
  font-size: 0.75rem;
  color: #5f6368;
}

.review-card__text {
  font-size: 0.875rem;
  color: #3c4043;
  line-height: 1.55;
  margin-bottom: 0;
  font-style: normal;
}

@media (min-width: 769px) {
  .reviews-carousel {
    padding-inline: 56px;
  }

  .reviews-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border-light);
    background: var(--pn-white);
    box-shadow: var(--shadow-md);
    color: var(--pn-text-dark);
    z-index: 2;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
  }

  .reviews-arrow--prev {
    left: 12px;
  }

  .reviews-arrow--next {
    right: 12px;
  }

  .reviews-arrow:hover {
    border-color: rgba(46, 167, 255, 0.45);
    color: var(--pn-blue-main);
    box-shadow: var(--shadow-lg);
  }
}

/* Availability Form */
.availability-form {
  max-width: 720px;
  margin-inline: auto;
}

.availability-form--card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--color-light-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(91, 102, 122, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(19, 158, 242, 0.12);
}

.form-group select option {
  background: var(--color-white);
  color: var(--color-text-dark);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
}

.form-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-blue);
  flex-shrink: 0;
}

.form-message {
  margin-top: 16px;
  font-size: 0.875rem;
  min-height: 1.4em;
}

.form-message.is-success {
  color: #22c55e;
}

.form-message.is-error {
  color: #ef4444;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: color var(--transition), background var(--transition);
}

.faq-item__question:hover {
  color: var(--pn-blue-main);
  background: var(--pn-bg-soft-blue);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--pn-blue-main);
  border-radius: 2px;
  transition: transform var(--transition);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}

.faq-item.is-open .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--color-text-muted-light);
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--pn-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  border-color: rgba(46, 167, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pn-text-muted);
  margin-bottom: 10px;
}

.contact-card__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--pn-blue-main);
  transition: color var(--transition);
}

.contact-card__value:hover {
  color: var(--pn-blue-bright);
}

/* Footer */
.footer {
  background: var(--pn-navy-dark);
  border-top: 1px solid rgba(105, 216, 255, 0.1);
  padding-block: 56px 36px;
  color: var(--pn-text-light);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--pn-text-light-muted);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--pn-blue-bright);
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(105, 216, 255, 0.1);
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--pn-text-light-muted);
}

/* Feedback modal */
.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.feedback-modal.is-open {
  display: flex;
}

.feedback-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 47, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.feedback-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  background: var(--pn-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(7, 24, 47, 0.35);
  animation: feedback-in 0.3s ease;
}

@keyframes feedback-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feedback-modal__intro {
  padding: 22px 20px;
  background: linear-gradient(145deg, var(--pn-blue-main) 0%, #1a8ee8 45%, var(--pn-navy-soft) 100%);
  color: var(--pn-text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 0.75rem;
}

.feedback-modal__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 30% 20%, black, transparent 70%);
}

.feedback-modal__eyebrow {
  position: relative;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.feedback-modal__title {
  position: relative;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.feedback-modal__text {
  position: relative;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.feedback-modal__body {
  position: relative;
  padding: 18px 18px 16px;
  overflow-y: auto;
  font-size: 0.8125rem;
}

.feedback-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pn-text-muted);
  background: var(--pn-bg-light);
  transition: background var(--transition), color var(--transition);
  z-index: 2;
}

.feedback-modal__close:hover {
  background: var(--pn-bg-soft-blue);
  color: var(--pn-text-dark);
}

.feedback-form__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pn-text-dark);
  margin-bottom: 10px;
  padding-right: 28px;
}

.feedback-form__group {
  margin-bottom: 10px;
  border: none;
  padding: 0;
}

.feedback-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback-option {
  cursor: pointer;
}

.feedback-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.feedback-option__box {
  display: block;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pn-text-dark);
  background: var(--pn-white);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  text-align: left;
  line-height: 1.3;
}

.feedback-option input:checked + .feedback-option__box {
  border-color: var(--pn-blue-main);
  background: var(--pn-bg-soft-blue);
  color: var(--pn-blue-main);
}

.feedback-option:hover .feedback-option__box {
  border-color: rgba(46, 167, 255, 0.45);
}

.feedback-form .form-group--compact {
  margin-bottom: 8px;
}

.feedback-form textarea,
.feedback-form input[type="email"] {
  width: 100%;
  padding: 8px 10px;
  background: var(--pn-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--pn-text-dark);
  font-size: 0.8125rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.feedback-form textarea {
  min-height: 56px;
  max-height: 80px;
  resize: vertical;
}

.feedback-form__submit {
  margin-top: 4px;
  padding: 10px 16px;
  font-size: 0.8125rem;
}

.feedback-form .form-message {
  margin-top: 8px;
  font-size: 0.75rem;
  min-height: 0;
}

.feedback-form textarea:focus,
.feedback-form input[type="email"]:focus {
  outline: none;
  border-color: var(--pn-blue-main);
  background: var(--pn-white);
  box-shadow: 0 0 0 3px rgba(46, 167, 255, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .package-carousel {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .package-carousel:not(.is-hidden) .package-carousel__footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 12px;
    flex-shrink: 0;
  }

  .package-carousel__scroll {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .package-carousel__scroll::-webkit-scrollbar {
    display: none;
  }

  .package-carousel__track {
    display: flex;
    gap: 0;
    grid-template-columns: unset;
    max-width: none;
    margin-inline: 0;
    padding: 0;
  }

  .package-carousel__track > .pricing-card,
  .package-carousel__track > .tv-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
  }

  .package-carousel__track .pricing-card:hover,
  .package-carousel__track .tv-card:hover {
    transform: none;
  }

  .package-carousel__status {
    margin: 0;
    white-space: nowrap;
  }

  .pricing-grid:not(.package-carousel__track) {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid--3:not(.package-carousel__track) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    max-width: 420px;
    margin-inline: auto;
    min-height: auto;
  }

  .hero__promo {
    max-width: 100%;
  }

  .hero__nav {
    margin-top: 16px;
  }

  .calculator {
    grid-template-columns: 1fr;
  }

  .calculator__summary {
    position: static;
  }

  .zone {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zone__content .section__subtitle {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 52px;
    --container-padding: 16px;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
  }

  .hero__slider {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: clamp(8px, 1.5vh, 14px);
  }

  .hero__slides {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero__slide.is-active {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero__inner {
    padding-block: clamp(10px, 2.5vh, 22px);
    gap: clamp(10px, 2vh, 16px);
    width: 100%;
  }

  .hero__eyebrow {
    font-size: clamp(0.625rem, 1.6vh, 0.75rem);
    margin-bottom: clamp(4px, 1vh, 8px);
  }

  .hero__title {
    font-size: clamp(1.375rem, 5.2vh, 1.875rem);
    margin-bottom: clamp(6px, 1.2vh, 10px);
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: clamp(0.8125rem, 2vh, 0.9375rem);
    margin-bottom: clamp(10px, 2vh, 16px);
    line-height: 1.45;
    max-width: none;
  }

  .hero__cta {
    gap: clamp(6px, 1.2vh, 10px);
  }

  .hero__cta .btn--lg {
    padding: clamp(9px, 1.8vh, 12px) clamp(14px, 3vw, 18px);
    font-size: clamp(0.8125rem, 1.8vh, 0.875rem);
  }

  .hero__visual {
    min-height: auto;
    max-width: 100%;
  }

  .hero__promo {
    padding: clamp(10px, 2vh, 14px) clamp(12px, 2.5vw, 16px);
    border-radius: var(--radius-md);
  }

  .hero__promo-label {
    font-size: clamp(0.5625rem, 1.4vh, 0.6875rem);
    margin-bottom: clamp(6px, 1.2vh, 10px);
  }

  .hero__promo-list {
    flex-direction: row;
    gap: 0;
  }

  .hero__promo-list li {
    flex: 1;
    align-items: center;
    text-align: center;
    padding: 0 6px 0;
    border-bottom: none;
    border-right: 1px solid rgba(105, 216, 255, 0.12);
  }

  .hero__promo-list li:last-child {
    border-right: none;
  }

  .hero__promo-list strong {
    font-size: clamp(0.875rem, 2.4vh, 1.0625rem);
  }

  .hero__promo-list span {
    font-size: clamp(0.5625rem, 1.4vh, 0.6875rem);
    line-height: 1.25;
  }

  .hero__nav {
    flex-shrink: 0;
    margin-top: 0;
    gap: 12px;
  }

  .hero__arrow {
    width: clamp(32px, 8vw, 38px);
    height: clamp(32px, 8vw, 38px);
  }

  .section {
    padding-block: 56px;
  }

  .section--pricing {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .section--pricing .section__header {
    margin-bottom: 14px;
  }

  .section--pricing .section__subtitle {
    font-size: 0.8125rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .section--pricing .pricing-toggle {
    margin-bottom: 14px;
    padding: 4px;
  }

  .section--pricing .pricing-toggle__btn {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .section--pricing .package-carousel .pricing-card {
    padding: 14px 16px;
  }

  .section--pricing .package-carousel .pricing-card__badge {
    margin-bottom: 6px;
    font-size: 0.625rem;
    padding: 2px 8px;
  }

  .section--pricing .package-carousel .pricing-card__name {
    font-size: 0.9375rem;
    margin-bottom: 2px;
  }

  .section--pricing .package-carousel .pricing-card__speed {
    margin-bottom: 4px;
    font-size: 0.8125rem;
  }

  .section--pricing .package-carousel .pricing-card__speed strong {
    font-size: 1.25rem;
  }

  .section--pricing .package-carousel .pricing-card__price {
    margin-bottom: 6px;
  }

  .section--pricing .package-carousel .pricing-card__amount {
    font-size: 1.5rem;
  }

  .section--pricing .package-carousel .pricing-card__desc {
    display: none;
  }

  .section--pricing .package-carousel .pricing-card__features {
    margin-bottom: 10px;
  }

  .section--pricing .package-carousel .pricing-card__features li {
    padding: 2px 0 2px 14px;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .section--pricing .package-carousel .pricing-card .btn {
    padding: 9px 14px;
    font-size: 0.8125rem;
  }

  .package-carousel .tv-card {
    padding: 20px 18px;
  }

  .package-carousel .tv-card__name {
    font-size: 1.0625rem;
    margin-bottom: 6px;
  }

  .package-carousel .tv-card__price {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }

  .package-carousel .tv-card__features li {
    padding: 3px 0 3px 16px;
    font-size: 0.8125rem;
  }

  .nav {
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: auto;
    transform: none;
    z-index: 10050;
    display: block;
    background: rgba(7, 24, 47, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
    overflow: hidden;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: calc(var(--header-height) + 16px) var(--container-padding) 32px;
    pointer-events: auto;
  }

  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 6px;
    right: var(--container-padding);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pn-text-light);
    cursor: pointer;
    z-index: 10052;
    transition: background var(--transition), border-color var(--transition);
  }

  .nav__close:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(105, 216, 255, 0.35);
  }

  .nav:not(.is-open) .nav__panel,
  .nav:not(.is-open) .nav__close {
    pointer-events: none;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 15px 0;
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--pn-text-light);
    border-bottom: 1px solid rgba(105, 216, 255, 0.12);
  }

  .nav__link:hover {
    color: var(--pn-cyan-soft);
  }

  .nav__extras .nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(46, 167, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--pn-cyan-soft);
  }

  .nav__extras .nav__icon svg {
    width: 16px;
    height: 16px;
  }

  .nav__extras {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(105, 216, 255, 0.12);
  }

  .nav__extra-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pn-text-light);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    text-align: left;
    transition: background var(--transition), border-color var(--transition);
  }

  .nav__extra-link:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(105, 216, 255, 0.2);
  }

  .nav__extra-link--primary {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--pn-text-light);
    box-shadow: 0 2px 10px rgba(46, 167, 255, 0.25);
  }

  .nav-toggle {
    display: flex;
  }

  .header__action-desktop {
    display: none !important;
  }

  .availability-form--card {
    padding: 24px;
  }

  .feedback-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .feedback-modal__dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .feedback-modal__intro {
    padding: 20px 18px;
  }

  .feedback-modal__title {
    font-size: 1.125rem;
  }

  .feedback-modal__text {
    font-size: 0.8125rem;
  }

  .feedback-modal__body {
    padding: 20px 18px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .zone__cards {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    width: 320px;
  }

  .reviews-slider.is-manual {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .pricing-toggle {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .pricing-toggle__btn {
    border-radius: var(--radius-md);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.375rem;
  }

  .hero__subtitle {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .header__actions .btn--primary.btn--sm {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reviews-slider.is-manual .reviews-track,
  .reviews-track {
    animation: none;
  }

  .hero__slide.is-active {
    animation: none;
  }
}
