:root {
  --navy: #0c3b69;
  --navy-deep: #082a4d;
  --blue: #0ba5df;
  --blue-strong: #0b62c5;
  --green: #68c63f;
  --yellow: #ffd000;
  --paper: #f4f7fb;
  --white: #ffffff;
  --ink: #101828;
  --muted: #617085;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(10, 36, 68, 0.22);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.accessibility-large-text {
  --accessibility-large-text-active: 1;
}

.accessibility-readable-font body {
  font-family: Arial, Helvetica, sans-serif;
}

.accessibility-underline-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.accessibility-wide-spacing body {
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.accessibility-reduce-motion *,
.accessibility-reduce-motion *::before,
.accessibility-reduce-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}

.accessibility-high-contrast {
  --navy: #001b35;
  --navy-deep: #000f1f;
  --blue: #005fcc;
  --blue-strong: #004999;
  --paper: #ffffff;
  --ink: #000000;
  --muted: #172033;
}

.accessibility-high-contrast body {
  background: #ffffff;
  color: #000000;
}

.accessibility-high-contrast .hero,
.accessibility-high-contrast .living-section,
.accessibility-high-contrast .site-footer {
  background: #000f1f;
}

.accessibility-high-contrast .site-header,
.accessibility-high-contrast .site-header.is-scrolled {
  background: #000f1f;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(1460px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 42, 77, 0.78);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(3, 18, 38, 0.2);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition:
    width 320ms ease,
    min-height 320ms ease,
    border-radius 320ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    top 220ms ease;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  min-height: 72px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(8, 42, 77, 0.94);
  box-shadow: 0 12px 34px rgba(3, 18, 38, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  overflow: visible;
  padding: 0 12px;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.nav-more-toggle,
.download-link {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 9px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.nav-more-toggle:hover,
.download-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-1px);
}

.site-nav a.is-active,
.nav-more-toggle.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.download-link {
  background: var(--white);
  color: var(--navy-deep);
  padding-inline: 14px;
}

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

.nav-more {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-more::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-more-toggle::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-more:hover .nav-more-toggle::after,
.nav-more:focus-within .nav-more-toggle::after,
.nav-more.is-open .nav-more-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  display: grid;
  min-width: 230px;
  padding: 8px;
  border: 1px solid rgba(12, 59, 105, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-deep);
  box-shadow: 0 18px 42px rgba(3, 18, 38, 0.18);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-more:hover .nav-submenu,
.nav-more:focus-within .nav-submenu,
.nav-more.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav .nav-submenu a {
  width: 100%;
  color: var(--navy-deep);
  padding: 11px 12px;
}

.site-nav .nav-submenu a:hover {
  background: rgba(11, 165, 223, 0.1);
  color: var(--navy-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  transition: max-width 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .social-links {
  max-width: 76px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.social-links a:last-child svg path:last-child {
  fill: var(--navy-deep);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  min-height: 92vh;
  padding: clamp(112px, 13vh, 156px) clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(11, 165, 223, 0.26), transparent 24%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.hero::before {
  position: absolute;
  inset: 0 0 0 58%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), var(--paper));
  content: "";
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: 4vh;
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
  border: 1px solid rgba(11, 165, 223, 0.2);
  border-radius: 999px;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--white);
}

.hero-copy::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -110px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(11, 165, 223, 0.22);
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(11, 165, 223, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  border-left: 3px solid var(--green);
  padding: 5px 14px 5px 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 570px;
}

.phone-mockup {
  width: min(78vw, 505px);
  max-height: min(78vh, 760px);
  object-fit: contain;
  filter: drop-shadow(0 26px 58px rgba(10, 36, 68, 0.26));
  animation: phoneFloat 5.8s ease-in-out infinite;
}

.feature-pill {
  position: absolute;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(10, 36, 68, 0.18);
  backdrop-filter: blur(16px);
  animation: pillFloat 5s ease-in-out infinite;
}

.pill-one {
  top: 17%;
  left: 2%;
}

.pill-two {
  top: 34%;
  right: -1%;
  animation-delay: 0.4s;
}

.pill-three {
  top: 55%;
  left: -2%;
  animation-delay: 0.8s;
}

.pill-four {
  right: 2%;
  bottom: 22%;
  animation-delay: 1.2s;
}

.pill-five {
  left: 4%;
  bottom: 12%;
  animation-delay: 1.6s;
}

.pill-six {
  top: 5%;
  right: 6%;
  animation-delay: 2s;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 126px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 14%, rgba(11, 165, 223, 0.14), transparent 26%),
    linear-gradient(180deg, var(--white), #f5f8fc);
}

.about-section::before {
  position: absolute;
  top: 90px;
  left: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(11, 165, 223, 0.18);
  border-radius: 999px;
  content: "";
}

.about-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-kicker {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 0 0 -10px;
  border: 1px solid rgba(11, 165, 223, 0.22);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(11, 165, 223, 0.08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.about-intro h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-intro p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  line-height: 1.75;
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-card {
  grid-column: span 2;
  min-height: 292px;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(10, 36, 68, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  border-color: rgba(11, 165, 223, 0.2);
  box-shadow: 0 24px 54px rgba(10, 36, 68, 0.14);
  transform: translateY(-5px);
}

.benefit-card.featured {
  grid-column: span 2;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--white);
}

.benefit-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 22px;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-icon.green {
  background: rgba(104, 198, 63, 0.16);
  color: #4eaa2d;
}

.benefit-icon.blue {
  background: rgba(11, 98, 197, 0.12);
  color: var(--blue-strong);
}

.benefit-icon.yellow {
  background: rgba(255, 208, 0, 0.24);
  color: #9c7a00;
}

.benefit-icon.cyan {
  background: rgba(11, 165, 223, 0.14);
  color: var(--blue);
}

.benefit-icon.navy {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.benefit-card h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1.25;
}

.benefit-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.benefit-card.featured h3,
.benefit-card.featured p {
  color: var(--white);
}

.benefit-card.featured p {
  opacity: 0.78;
}

.app-screens-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 94px) clamp(20px, 5vw, 72px);
  background: #f5f8fc;
}

.app-screens-header {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.app-screens-header h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--navy-deep);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.04;
}

.app-screens-controls {
  display: flex;
  gap: 10px;
}

.app-screens-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(8, 42, 77, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(10, 36, 68, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.app-screens-button:hover {
  border-color: rgba(11, 165, 223, 0.28);
  box-shadow: 0 18px 42px rgba(10, 36, 68, 0.16);
  transform: translateY(-2px);
}

.app-screens-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.app-screens-viewport {
  max-width: 1180px;
  margin: 0 auto;
}

.app-screens-track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 8px 4px 34px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.app-screens-track::-webkit-scrollbar {
  display: none;
}

.app-screen-card {
  flex: 0 0 calc((100% - clamp(16px, 2vw, 24px) * 2) / 3);
  margin: 0;
  scroll-snap-align: start;
}

.app-screen-card img {
  display: block;
  width: 100%;
  height: min(50vh, 560px);
  object-fit: contain;
  border-radius: 26px;
  filter: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-screen-card:hover img {
  filter: drop-shadow(0 16px 24px rgba(10, 36, 68, 0.16));
  transform: translateY(-3px);
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 126px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 165, 223, 0.22), transparent 24%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.download-section::before {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  content: "";
}

.download-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.download-content .section-kicker {
  margin: 0 auto 18px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.download-content h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
}

.download-content p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.72;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  min-width: 244px;
  min-height: 76px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px 22px;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 21px;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 18px 44px rgba(3, 18, 38, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  box-shadow: 0 24px 58px rgba(3, 18, 38, 0.28);
  transform: translateY(-4px);
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.store-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: rgba(11, 165, 223, 0.12);
  color: var(--blue-strong);
}

.store-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.store-icon .apple-logo {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.numbers-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 116px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 165, 223, 0.12), transparent 24%),
    linear-gradient(180deg, #f5f8fc, var(--white));
}

.numbers-section::before {
  position: absolute;
  left: -190px;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(11, 165, 223, 0.16);
  border-radius: 999px;
  content: "";
}

.numbers-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.numbers-content .section-kicker {
  margin-bottom: 20px;
}

.numbers-content h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.number-card {
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(18px, 2vw, 26px);
  box-shadow: 0 16px 38px rgba(10, 36, 68, 0.08);
}

.number-card strong {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--navy-deep);
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

.number-card strong span:last-child:not(:first-child) {
  color: var(--blue);
  font-size: clamp(20px, 2.2vw, 30px);
}

.number-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 800;
  line-height: 1.35;
}

.living-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 16%, rgba(11, 165, 223, 0.16), transparent 25%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.living-section::before {
  position: absolute;
  right: -170px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  content: "";
}

.living-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.living-copy .section-kicker {
  margin-bottom: 20px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.living-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.living-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.72;
}

.living-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.living-visual {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  justify-items: center;
}

.living-mockup {
  width: min(70vw, 410px);
  max-height: 760px;
  border-radius: 32px;
  object-fit: contain;
  filter: drop-shadow(0 26px 60px rgba(3, 18, 38, 0.34));
  animation: phoneFloat 6s ease-in-out infinite;
}

.living-pill {
  position: absolute;
  border-radius: 8px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(3, 18, 38, 0.22);
  backdrop-filter: blur(16px);
  animation: pillFloat 5s ease-in-out infinite;
}

.living-pill-one {
  top: 8%;
  left: 0;
}

.living-pill-two {
  top: 10%;
  right: 0;
  animation-delay: 0.2s;
}

.living-pill-three {
  top: 22%;
  left: 0;
  animation-delay: 0.4s;
}

.living-pill-four {
  top: 24%;
  right: 0;
  animation-delay: 0.6s;
}

.living-pill-five {
  top: 36%;
  left: 0;
  animation-delay: 0.8s;
}

.living-pill-six {
  top: 38%;
  right: 0;
  bottom: auto;
  animation-delay: 1s;
}

.living-pill-seven {
  left: 0;
  top: 50%;
  bottom: auto;
  animation-delay: 1.2s;
}

.living-pill-eight {
  top: 52%;
  right: 0;
  bottom: auto;
  animation-delay: 1.4s;
}

.living-pill-nine {
  top: 64%;
  left: 0;
  bottom: auto;
  animation-delay: 1.6s;
}

.living-pill-ten {
  top: 66%;
  right: 0;
  animation-delay: 1.8s;
}

.living-pill-eleven {
  top: 78%;
  left: 0;
  animation-delay: 2s;
}

.living-pill-twelve {
  top: 80%;
  right: 0;
  animation-delay: 2.2s;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(104, 198, 63, 0.12), transparent 24%),
    linear-gradient(180deg, #f5f8fc, var(--white));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  max-width: 520px;
  margin: 14px 0 18px;
  color: var(--navy-deep);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.faq-intro p:not(.section-kicker) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(8, 42, 77, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(10, 36, 68, 0.08);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--navy-deep);
  cursor: pointer;
  font: inherit;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  padding: 22px 24px;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 8px;
  background: rgba(11, 165, 223, 0.1);
  color: var(--blue-strong);
  content: "+";
  font-size: 22px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.faq-item.is-open .faq-question::after {
  background: var(--blue);
  color: var(--white);
  content: "-";
}

.faq-answer {
  display: grid;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
  transition: max-height 240ms ease, padding 240ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 760px;
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--blue-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 126px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 14%, rgba(104, 198, 63, 0.14), transparent 24%),
    var(--paper);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: space-between;
  min-height: 100%;
}

.contact-copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.72;
}

.company-card {
  display: grid;
  gap: 8px;
  margin-top: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(10, 36, 68, 0.08);
}

.company-card h3 {
  margin: 0 0 8px;
  color: var(--navy-deep);
  font-size: 20px;
}

.company-card p,
.company-card a {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.company-card a {
  color: var(--blue-strong);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 24px 60px rgba(10, 36, 68, 0.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label:first-child,
.full-field {
  grid-column: 1 / -1;
}

.contact-form label > span {
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 42, 77, 0.14);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  min-height: 50px;
  padding: 14px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.trap-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(11, 165, 223, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 165, 223, 0.12);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.consent-field span {
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.55;
}

.consent-field a {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 0;
  border: 1px solid rgba(11, 165, 223, 0.18);
  border-radius: 8px;
  background: rgba(11, 165, 223, 0.08);
  color: var(--navy-deep);
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.form-status a {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status.is-error {
  border-color: rgba(220, 38, 38, 0.24);
  background: rgba(220, 38, 38, 0.08);
  color: #8a1f1f;
}

.site-footer {
  display: grid;
  place-items: center;
  padding: 26px 20px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.cookie-notice {
  position: fixed;
  z-index: 40;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  width: min(720px, calc(100% - 28px));
  border: 1px solid rgba(8, 42, 77, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(3, 18, 38, 0.24);
  padding: 22px;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(16px);
}

.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(16px);
}

.cookie-content {
  display: grid;
  gap: 8px;
}

.cookie-title {
  margin: 0;
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 800;
}

.cookie-content p:not(.cookie-title) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.cookie-content a {
  color: var(--blue-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-accept {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 0 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.cookie-accept:hover {
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.cookie-close:hover {
  background: rgba(8, 42, 77, 0.08);
  color: var(--navy-deep);
}

.cookie-close span {
  grid-area: 1 / 1;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.cookie-close span:first-child {
  transform: rotate(45deg);
}

.cookie-close span:last-child {
  transform: rotate(-45deg);
}

.accessibility-widget {
  position: fixed;
  z-index: 42;
  top: 50%;
  right: 0;
  color: var(--navy-deep);
  transform: translateY(-50%);
}

.accessibility-toggle {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px 0 0 8px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(3, 18, 38, 0.22);
  transition: background 160ms ease, transform 160ms ease;
}

.accessibility-toggle:hover {
  background: var(--blue-strong);
  transform: translateX(-2px);
}

.accessibility-toggle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accessibility-panel {
  position: absolute;
  top: 50%;
  right: 66px;
  display: grid;
  width: min(330px, calc(100vw - 92px));
  gap: 16px;
  border: 1px solid rgba(8, 42, 77, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(3, 18, 38, 0.24);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translate(14px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(16px);
}

.accessibility-widget.is-open .accessibility-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.accessibility-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accessibility-head p {
  margin: 0;
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 800;
}

.accessibility-head button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(8, 42, 77, 0.06);
  color: var(--muted);
  cursor: pointer;
}

.accessibility-head button:hover {
  background: rgba(8, 42, 77, 0.1);
  color: var(--navy-deep);
}

.accessibility-head button span {
  grid-area: 1 / 1;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.accessibility-head button span:first-child {
  transform: rotate(45deg);
}

.accessibility-head button span:last-child {
  transform: rotate(-45deg);
}

.accessibility-options {
  display: grid;
  gap: 10px;
}

.accessibility-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  padding: 12px;
}

.accessibility-options input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--blue);
}

.accessibility-reset {
  min-height: 42px;
  border: 1px solid rgba(8, 42, 77, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
}

.accessibility-reset:hover {
  background: rgba(11, 165, 223, 0.08);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(142px, 17vh, 188px) clamp(20px, 5vw, 72px) clamp(72px, 8vw, 112px);
  background:
    radial-gradient(circle at 84% 24%, rgba(11, 165, 223, 0.24), transparent 26%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.subpage-hero::after {
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  content: "";
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.subpage-hero .section-kicker {
  margin: 0 auto 20px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.subpage-hero h1 {
  max-width: none;
  font-size: clamp(42px, 5.8vw, 76px);
}

.subpage-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.72;
}

.segregation-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 14%, rgba(104, 198, 63, 0.12), transparent 24%),
    linear-gradient(180deg, var(--white), #f5f8fc);
}

.segregation-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.segregation-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.waste-tab {
  display: grid;
  min-height: 112px;
  place-items: center;
  gap: 9px;
  border: 1px solid rgba(8, 42, 77, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-deep);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 14px;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.waste-tab:hover,
.waste-tab.is-active {
  box-shadow: 0 18px 40px rgba(10, 36, 68, 0.12);
  transform: translateY(-3px);
}

.waste-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy-deep);
}

.waste-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.waste-tab.yellow.is-active,
.waste-tab.yellow .waste-icon {
  background: rgba(255, 208, 0, 0.24);
}

.waste-tab.blue.is-active,
.waste-tab.blue .waste-icon {
  background: rgba(11, 98, 197, 0.14);
}

.waste-tab.green.is-active,
.waste-tab.green .waste-icon {
  background: rgba(104, 198, 63, 0.18);
}

.waste-tab.brown.is-active,
.waste-tab.brown .waste-icon {
  background: rgba(133, 84, 36, 0.18);
}

.waste-tab.black.is-active,
.waste-tab.black .waste-icon {
  background: rgba(16, 24, 40, 0.12);
}

.waste-panel {
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(10, 36, 68, 0.1);
  padding: clamp(22px, 4vw, 38px);
}

.waste-panel header {
  border-left: 6px solid var(--blue);
  margin-bottom: 24px;
  padding-left: 16px;
}

.waste-panel.yellow header {
  border-color: var(--yellow);
}

.waste-panel.blue header {
  border-color: var(--blue-strong);
}

.waste-panel.green header {
  border-color: var(--green);
}

.waste-panel.brown header {
  border-color: #9a642f;
}

.waste-panel.black header {
  border-color: #111827;
}

.waste-panel header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.waste-panel h2 {
  margin: 4px 0 0;
  color: var(--navy-deep);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
}

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

.rules-card {
  border-radius: 8px;
  padding: 22px;
  background: #f8fafc;
}

.rules-card.allowed {
  border: 1px solid rgba(104, 198, 63, 0.22);
}

.rules-card.forbidden {
  border: 1px solid rgba(220, 38, 38, 0.16);
}

.rules-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 19px;
}

.rules-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.mixed-rule {
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: #f8fafc;
  padding: 26px;
}

.mixed-rule p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.7;
}

.legal-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 16%, rgba(11, 165, 223, 0.1), transparent 24%),
    linear-gradient(180deg, var(--white), #f5f8fc);
}

.legal-shell {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(10, 36, 68, 0.12);
  opacity: 1;
  padding: clamp(24px, 4vw, 48px);
  transform: none;
}

.legal-text {
  margin: 0;
  color: #24344d;
  font: inherit;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.8;
  white-space: pre-wrap;
}

.schedule-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 165, 223, 0.12), transparent 24%),
    linear-gradient(180deg, var(--white), #f5f8fc);
}

.schedule-shell {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(10, 36, 68, 0.12);
}

.schedule-frame-header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(8, 42, 77, 0.08);
  padding: 20px 22px;
  background: #f8fafc;
}

.schedule-frame-header p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.schedule-frame-header h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(22px, 2vw, 30px);
}

.schedule-frame-header a {
  display: none;
}

.schedule-import {
  border-radius: 8px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 14px;
  white-space: nowrap;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.schedule-import:hover:not(:disabled) {
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.schedule-import:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.schedule-app {
  padding: clamp(20px, 3vw, 32px);
}

.schedule-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.schedule-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 800;
}

.schedule-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(8, 42, 77, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 0 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.schedule-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 165, 223, 0.12);
}

.schedule-form select:disabled {
  color: #8a97aa;
  background: #f5f8fc;
}

.schedule-submit {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px;
  cursor: pointer;
  white-space: nowrap;
}

.schedule-status {
  margin-top: 20px;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  padding: 16px;
}

.schedule-status.is-error {
  border-color: rgba(213, 63, 63, 0.22);
  background: #fff5f5;
  color: #9b2c2c;
}

.schedule-results {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.schedule-results-header {
  display: grid;
  grid-template-columns: minmax(170px, 0.2fr) minmax(150px, 0.18fr) minmax(260px, 1fr) minmax(190px, 0.24fr);
  column-gap: clamp(24px, 4vw, 54px);
  row-gap: 14px;
  align-items: center;
  padding: 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-result-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.2fr) minmax(150px, 0.18fr) minmax(260px, 1fr) minmax(190px, 0.24fr);
  column-gap: clamp(24px, 4vw, 54px);
  row-gap: 14px;
  align-items: center;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(10, 36, 68, 0.08);
  padding: 16px;
}

.schedule-result-date {
  color: var(--navy-deep);
  font-size: 20px;
  font-weight: 800;
}

.schedule-result-weekday {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.schedule-result-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.schedule-result-meta strong {
  color: var(--ink);
  font-size: 17px;
}

.schedule-result-action {
  display: flex;
  justify-content: flex-end;
}

.schedule-result-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(8, 42, 77, 0.12);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.schedule-result-action a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.schedule-result-details {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
}

.schedule-result-details div {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 10px;
}

.schedule-result-details dt,
.schedule-result-details dd {
  margin: 0;
}

.schedule-result-details dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.schedule-result-details dd {
  color: var(--ink);
}

.schedule-raw {
  overflow: auto;
  max-height: 520px;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: #071f3a;
  color: #e6f7ff;
  font-size: 13px;
  line-height: 1.6;
  padding: 18px;
}

.schedule-frame {
  display: none;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: var(--white);
}

.map-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 14% 16%, rgba(104, 198, 63, 0.12), transparent 24%),
    linear-gradient(180deg, var(--white), #f5f8fc);
}

.map-shell {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(8, 42, 77, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(10, 36, 68, 0.12);
}

.map-frame-header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(8, 42, 77, 0.08);
  padding: 20px 22px;
  background: #f8fafc;
}

.map-frame-header p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-frame-header h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(22px, 2vw, 30px);
}

.map-frame-header a {
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 14px;
  white-space: nowrap;
}

.map-frame-header a {
  display: none;
}

.map-filters {
  display: flex;
  gap: 10px;
  align-items: end;
}

.map-filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.map-filters select {
  min-width: 190px;
  border: 1px solid rgba(8, 42, 77, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-deep);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 36px 11px 12px;
}

.availability-map {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
  background: #dceaf6;
  transform: none;
}

.map-crop {
  display: none;
}

.map-status {
  margin: 0;
  border-top: 1px solid rgba(8, 42, 77, 0.08);
  color: var(--muted);
  font-weight: 700;
  padding: 16px 22px;
}

.map-status.is-error {
  background: #fff5f5;
  color: #9b2c2c;
}

.availability-map .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(10, 36, 68, 0.2);
}

.availability-map .leaflet-popup-content {
  margin: 12px 14px;
}

.map-popup {
  display: grid;
  gap: 4px;
  min-width: 150px;
  font-family: inherit;
}

.map-popup strong {
  color: var(--navy-deep);
  font-size: 16px;
}

.map-popup span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card.is-visible {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    row-gap: 8px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    grid-column: 1 / -1;
    display: grid;
    justify-content: flex-start;
    width: 100%;
    max-height: min(70vh, 520px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 10px;
    background: rgba(8, 42, 77, 0.96);
    box-shadow: 0 18px 42px rgba(3, 18, 38, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 13px 12px;
  }

  .nav-more {
    display: grid;
    width: 100%;
  }

  .nav-more-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
  }

  .nav-more-toggle::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .nav-submenu a {
    color: rgba(255, 255, 255, 0.76);
    padding: 10px 12px;
  }

  .site-nav .nav-submenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .cookie-notice {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
    padding: 20px;
  }

  .cookie-accept {
    width: 100%;
  }

  .accessibility-widget {
    top: auto;
    right: 12px;
    bottom: 92px;
    transform: none;
  }

  .accessibility-toggle {
    border-radius: 8px;
  }

  .accessibility-panel {
    top: auto;
    right: 0;
    bottom: 66px;
    width: min(330px, calc(100vw - 24px));
    transform: translateY(12px);
  }

  .accessibility-widget.is-open .accessibility-panel {
    transform: translateY(0);
  }

  .download-link {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav-download-link {
    display: block;
    background: var(--white);
    color: var(--navy-deep) !important;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
  }

  .social-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    padding-top: 158px;
    background:
      radial-gradient(circle at 80% 12%, rgba(11, 165, 223, 0.22), transparent 24%),
      linear-gradient(145deg, var(--navy-deep), var(--navy));
  }

  .hero::before {
    inset: auto 0 0;
    height: 46%;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-copy::before {
    left: auto;
    right: -170px;
    width: 280px;
    height: 280px;
  }

  .phone-mockup {
    width: min(82vw, 390px);
    max-height: 660px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-kicker {
    margin-bottom: -4px;
  }

  .benefit-card,
  .benefit-card.featured {
    grid-column: span 3;
  }

  .app-screens-header {
    align-items: start;
  }

  .app-screen-card {
    flex-basis: calc((100% - clamp(16px, 2vw, 24px)) / 2);
  }

  .app-screen-card img {
    height: min(48vh, 500px);
  }

  .download-content {
    max-width: 720px;
  }

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

  .living-layout {
    grid-template-columns: 1fr;
  }

  .living-visual {
    min-height: 620px;
  }

  .living-mockup {
    width: min(80vw, 370px);
    max-height: 640px;
  }

  .living-pill-one,
  .living-pill-three,
  .living-pill-five,
  .living-pill-seven,
  .living-pill-nine,
  .living-pill-eleven {
    left: max(0px, calc(50% - 315px));
  }

  .living-pill-two,
  .living-pill-four,
  .living-pill-six,
  .living-pill-eight,
  .living-pill-ten,
  .living-pill-twelve {
    right: max(0px, calc(50% - 315px));
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

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

  .contact-copy {
    align-content: start;
  }

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

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

  .schedule-frame {
    min-height: 700px;
  }

  .availability-map {
    min-height: 620px;
  }

  .map-crop {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand {
    padding-left: 2px;
    font-size: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .download-link {
    padding-inline: 12px;
  }

  .hero {
    padding: 156px 16px 44px;
  }

  .hero-copy::before {
    right: -190px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  .lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .faq-section {
    padding: 58px 16px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.is-open .faq-answer {
    max-height: 1100px;
    padding: 0 18px 20px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .phone-mockup {
    width: min(92vw, 330px);
    max-height: 580px;
  }

  .feature-pill {
    padding: 9px 10px;
    font-size: 11px;
  }

  .pill-one {
    top: 11%;
    left: 0;
  }

  .pill-two {
    top: 34%;
    right: 0;
  }

  .pill-three {
    top: 49%;
    left: 0;
  }

  .pill-four {
    right: 0;
    bottom: 28%;
  }

  .pill-five {
    left: 0;
    bottom: 15%;
  }

  .pill-six {
    top: 3%;
    right: 4%;
  }

  .about-section {
    padding: 68px 16px;
  }

  .about-section::before {
    top: 40px;
    left: auto;
    right: -210px;
  }

  .about-intro {
    margin-bottom: 28px;
  }

  .about-intro p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.68;
  }

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

  .benefit-card,
  .benefit-card.featured {
    grid-column: auto;
    min-height: auto;
    padding: 22px;
  }

  .app-screens-section {
    padding: 58px 16px;
  }

  .app-screens-header {
    display: grid;
  }

  .app-screens-controls {
    justify-content: end;
  }

  .app-screen-card {
    flex-basis: min(82vw, 330px);
  }

  .app-screen-card img {
    height: min(62vh, 430px);
    max-height: 430px;
  }

  .download-section {
    padding: 68px 16px;
  }

  .download-content {
    text-align: left;
  }

  .download-content .section-kicker {
    margin-inline: 0;
  }

  .download-content p {
    margin-inline: 0;
    font-size: 15px;
    line-height: 1.68;
  }

  .store-actions {
    display: grid;
    justify-content: stretch;
  }

  .store-button {
    width: 100%;
  }

  .numbers-section {
    padding: 68px 16px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .number-card strong {
    font-size: clamp(46px, 16vw, 72px);
  }

  .living-section {
    padding: 68px 16px;
  }

  .living-actions {
    display: grid;
  }

  .living-visual {
    display: flex;
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .living-mockup {
    flex: 0 0 100%;
    width: min(82vw, 310px);
    max-height: 540px;
    margin: 0 auto 12px;
  }

  .living-pill {
    position: static;
    display: inline-flex;
    width: auto;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
    animation: none;
  }

  .living-pill-one,
  .living-pill-five,
  .living-pill-seven,
  .living-pill-nine,
  .living-pill-eleven {
    display: inline-flex;
  }

  .contact-section {
    padding: 68px 16px;
  }

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

  .contact-form .button {
    width: 100%;
  }

  .subpage-hero {
    padding: 142px 16px 66px;
  }

  .subpage-hero-content {
    text-align: left;
  }

  .subpage-hero .section-kicker {
    margin-inline: 0;
  }

  .segregation-section {
    padding: 58px 16px;
  }

  .segregation-tabs {
    grid-template-columns: 1fr;
  }

  .waste-tab {
    min-height: 68px;
    grid-template-columns: 42px 1fr;
    place-items: center start;
    text-align: left;
  }

  .waste-panel {
    padding: 20px;
  }

  .rules-card {
    padding: 18px;
  }

  .schedule-section {
    padding: 58px 16px;
  }

  .schedule-frame-header {
    display: grid;
    align-items: start;
  }

  .schedule-import {
    width: 100%;
    text-align: center;
  }

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

  .schedule-submit {
    width: 100%;
  }

  .schedule-result-card {
    grid-template-columns: 1fr;
  }

  .schedule-results-header {
    display: none;
  }

  .schedule-result-card > [data-label] {
    display: grid;
    gap: 4px;
  }

  .schedule-result-card > [data-label]::before {
    color: var(--muted);
    content: attr(data-label);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .schedule-result-action {
    justify-content: stretch;
  }

  .schedule-result-action a {
    width: 100%;
  }

  .schedule-frame {
    min-height: 680px;
  }

  .map-section {
    padding: 58px 16px;
  }

  .map-frame-header {
    display: grid;
    align-items: start;
  }

  .map-frame-header a {
    width: 100%;
    text-align: center;
  }

  .map-filters {
    display: grid;
    width: 100%;
  }

  .map-filters select {
    width: 100%;
    min-width: 0;
  }

  .availability-map {
    min-height: 560px;
  }

  .map-crop {
    display: none;
  }
}
