@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #d8ddbf;
  --surface: #eef2de;
  --text: #0d6f5c;
  --muted: #2e5d52;
  --brand: #0b7b62;
  --brand-strong: #085e49;
  --accent: #e8f300;
  --line: #b1c0ad;
  --danger: #b42318;
  --success: #117a5f;
  --shadow: 0 10px 24px rgba(7, 57, 44, 0.14);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(180deg, #d8ddbf 0%, #d2d7b8 100%);
  color: var(--text);
}

body.mobile-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  color: #0d6f5c;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-note {
  max-width: 760px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #d5e3d2;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(137, 167, 153, 0.6);
  background: rgba(237, 241, 221, 0.95);
  backdrop-filter: blur(8px);
}

.site-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 20px, var(--brand) 20px 40px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #12382f;
}

.brand img {
  width: auto;
  height: 74px;
  border-radius: 0;
  object-fit: contain;
}

.brand img.brand-logo {
  height: 74px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  text-decoration: none;
  color: #204d42;
  font-weight: 800;
  font-size: 0.93rem;
}

.nav-links a.active {
  color: var(--brand);
}

.menu-toggle {
  border: 1px solid #90b4a5;
  background: #eef2dc;
  color: #0b6f5a;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.15rem;
  display: none;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.7rem 0 1rem;
}

.mobile-menu[data-open='true'] {
  display: block;
}

.mobile-menu a {
  display: block;
  text-decoration: none;
  padding: 0.65rem 0;
  font-weight: 800;
  color: #1c4f42;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #0b7b62, #08634d);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(8, 72, 56, 0.26);
}

.nav-links .button-primary {
  color: #ffffff;
}

.button-secondary {
  background: var(--accent);
  color: #0a6550;
  border: 1px solid #cad600;
}

.button-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid #8faf9f;
}

.hero {
  padding: 5rem 0 4.5rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.hero-content {
  padding: clamp(1.2rem, 4vw, 2.7rem);
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  color: #0b775f;
  margin-top: 1rem;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.hero-content p {
  color: #2b5e51;
  margin-top: 1rem;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-actions .button-primary {
  width: min(590px, 100%);
  max-width: 100%;
  min-width: 0;
  min-height: 84px;
  font-size: clamp(1.2rem, 2.2vw, 2.1rem);
}

.hero-actions .button-secondary {
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-points {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.hero-points span {
  color: #246455;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-visual {
  display: none;
}

.grid {
  display: grid;
  gap: 1.05rem;
}

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

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

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

.card {
  background: linear-gradient(180deg, #0b7b62 0%, #086952 100%);
  border: 1px solid #0a6a54;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 9px 20px rgba(9, 68, 53, 0.16);
}

.card h3,
.card h2 {
  color: var(--accent);
}

.card p,
.card li {
  color: #d8eee4;
}

.card .button-ghost {
  color: var(--accent);
  border-color: var(--accent);
}

.card .button-ghost:hover {
  background: rgba(232, 243, 0, 0.1);
}

.js-validate-form {
  background: #eef2de;
  border: 1px solid #b6c4af;
  box-shadow: 0 7px 18px rgba(16, 35, 53, 0.06);
}

.js-validate-form label,
.js-validate-form p {
  color: #1c4f43;
}

.js-validate-form .button-ghost {
  color: #0b6f5a;
  border-color: #8faf9f;
  background: transparent;
}

.js-validate-form .button-ghost:hover {
  background: rgba(11, 111, 90, 0.08);
}

.icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 66, 52, 0.45);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.timeline {
  counter-reset: flow;
  display: grid;
  gap: 0.9rem;
}

.timeline .step {
  counter-increment: flow;
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  border: 1px solid #b7c4af;
  border-radius: 14px;
  background: #edf1dc;
}

.timeline .step::before {
  content: counter(flow);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--brand);
  font-weight: 700;
  font-size: 0.84rem;
}

.stat-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  background: #0a6953;
  color: #f3fbe7;
  border-radius: 14px;
  padding: 1rem;
}

.stat strong {
  font-size: 1.5rem;
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent);
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #b5c2ad;
  background: #edf2de;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial {
  min-width: 100%;
  padding: 1.35rem;
}

.testimonial p {
  color: #28584c;
  font-size: 1.03rem;
  margin-bottom: 0.8rem;
}

.testimonial small {
  color: #3f6358;
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.carousel-controls button {
  border: 1px solid #8caea0;
  background: #f0f4de;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
  cursor: pointer;
  color: #0a6b56;
}

.blog-preview {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}

.blog-preview img {
  border-radius: 12px;
  width: 140px;
  height: 95px;
  object-fit: cover;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #afbeac;
  border-radius: var(--radius);
  background: #eef2de;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  border-bottom: 1px solid #afbeac;
  padding: 0.9rem;
  text-align: left;
  color: #234f45;
  font-size: 0.95rem;
}

th {
  background: #d7e2d3;
  font-family: 'Space Grotesk', sans-serif;
  color: #153f35;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  border: 1px solid #b3c2ad;
  border-radius: var(--radius);
  background: #eef2de;
  padding: 1.2rem;
  box-shadow: 0 7px 18px rgba(16, 35, 53, 0.06);
}

.price-card.featured {
  border-color: #0f6d89;
  box-shadow: 0 12px 25px rgba(9, 81, 102, 0.18);
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: #0e3d58;
  margin: 0.65rem 0;
}

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

.package-card {
  border: 1px solid #b6c4af;
  border-radius: var(--radius);
  background: #eef2de;
  padding: 1.2rem;
  box-shadow: 0 7px 18px rgba(16, 35, 53, 0.06);
  display: grid;
  gap: 0.75rem;
}

.package-card-featured {
  border-color: #cf5a50;
  box-shadow: 0 12px 24px rgba(157, 47, 38, 0.17);
}

.package-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.28rem;
  color: #133d33;
}

.tier-dot {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.tier-blue {
  background: #2f80ed;
}

.tier-green {
  background: #1f9d61;
}

.tier-yellow {
  background: #eab308;
}

.tier-red {
  background: #d63b33;
}

.package-subtext {
  min-height: 3.2rem;
}

.package-card-extended .package-subtext {
  min-height: 0;
}

.package-card-extended .list {
  font-size: 0.96rem;
}

.package-card-extended .list li {
  margin: 0.3rem 0;
  line-height: 1.45;
}

.package-hours {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: #0e3d58;
}

.package-target {
  color: #2e4b63;
}

.package-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  color: #0e3d58;
}

.list {
  margin: 0;
  padding-left: 1.2rem;
  color: #365b52;
}

.list li {
  margin: 0.45rem 0;
}

.article {
  max-width: 820px;
}

.article header {
  margin-bottom: 1.5rem;
}

.article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.8rem 0;
}

.article h2 {
  font-size: 1.45rem;
  margin: 1.7rem 0 0.7rem;
}

.article p,
.article li {
  color: #28584c;
  line-height: 1.75;
}

.article ul {
  padding-left: 1.2rem;
}

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

.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #9db8aa;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #2e5d52;
  background: #f2f6e5;
}

.step-pill.is-active {
  border-color: #0d7560;
  color: #0d7560;
  background: #dcead5;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.step-heading {
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #174b40;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.problem-card {
  border: 1px solid #9db8aa;
  border-radius: 16px;
  background: #0b775f;
  padding: 0.95rem;
  display: grid;
  gap: 0.35rem;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(8, 72, 56, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-1px);
  border-color: #d2df00;
}

.problem-card.is-selected {
  border-color: #e8f300;
  box-shadow: 0 0 0 2px rgba(232, 243, 0, 0.35);
}

.problem-kicker {
  color: #d6eee4;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.problem-card strong {
  color: #e8f300;
  font-size: 1.05rem;
}

.problem-card span {
  color: #d6eee4;
  font-size: 0.9rem;
  line-height: 1.45;
}

.step-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.step-actions [data-step-next] {
  margin-left: auto;
}

.step-actions [data-step-submit] {
  margin-left: auto;
}

.step-error {
  display: none;
  margin-top: 0.6rem;
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 700;
}

.step-error.is-visible {
  display: block;
}

.hourly-pill {
  margin: 0.95rem auto 1.7rem;
  max-width: 560px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b7b62, #08634d);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(8, 72, 56, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.15rem;
}

.hourly-pill-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.hourly-pill-badge {
  min-width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #184d42;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.74rem 0.86rem;
  border-radius: 12px;
  border: 1px solid #9db8aa;
  background: #f7f9ef;
  color: #224f45;
  font: inherit;
}

#storeUrl {
  padding-left: 1.05rem;
}

#name,
#email {
  padding-left: 1.05rem;
}

#issue {
  padding: 0.95rem 1.05rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(16, 108, 136, 0.2);
  border-color: #0f6d89;
}

.field-full {
  grid-column: 1 / -1;
}

.error-text {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-message {
  margin-top: 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-weight: 700;
  display: none;
}

.form-message.is-success {
  display: block;
  background: #e8faf4;
  color: var(--success);
}

.form-message.is-error {
  display: block;
  background: #fceceb;
  color: var(--danger);
}

.map-box {
  border: 1px solid #b2c3ae;
  border-radius: 14px;
  overflow: hidden;
  min-height: 240px;
  background: #dee7d6;
}

.map-box iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
}

.cta-band {
  background: linear-gradient(135deg, #0c7b62, #075b47);
  color: var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: 0.7rem;
  align-items: center;
}

.cta-band p {
  color: #d6eee3;
}

.footer {
  border-top: 1px solid #8daea0;
  background: #0a6f58;
  margin-top: 4rem;
  color: #ecf7e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  padding: 2.25rem 0;
}

.footer h3 {
  color: var(--accent);
}

.footer p {
  color: #d6eee3;
}

.footer a {
  color: #ebf7e8;
  text-decoration: none;
}

.footer-bottom {
  padding-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.footer-privacy-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
}

.privacy-settings-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ebf7e8;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: min(560px, calc(100% - 2rem));
  background: #eef2de;
  border: 1px solid #aebea7;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(11, 68, 53, 0.24);
  padding: 1rem;
  display: none;
}

.consent-banner.is-visible {
  display: block;
}

.consent-banner h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.consent-banner p {
  color: #24564a;
  font-size: 0.93rem;
}

.consent-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-actions .button {
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
}

.footer::after {
  content: '';
  display: block;
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 26px, var(--brand) 26px 52px);
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}

@media (max-width: 1080px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .grid-3,
  .grid-4,
  .price-cards,
  .package-grid,
  .stat-block,
  .footer-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero-content h1 {
    max-width: 18ch;
  }

  .hero-actions .button-primary {
    min-height: 72px;
    font-size: 1.15rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .brand img,
  .brand img.brand-logo {
    height: 60px;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 92px;
    left: 0;
    width: min(82vw, 320px);
    height: calc(100vh - 92px);
    margin: 0;
    padding: 1rem 1.1rem 1.25rem;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-radius: 0 16px 16px 0;
    background: rgba(237, 241, 221, 0.98);
    box-shadow: 0 12px 28px rgba(7, 57, 44, 0.2);
    transform: translateX(-104%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.26s ease, opacity 0.26s ease;
    z-index: 80;
    overflow-y: auto;
  }

  .mobile-menu[data-open='true'] {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 0.78rem 0.12rem;
    border-bottom: 1px solid rgba(141, 174, 160, 0.45);
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .blog-preview {
    grid-template-columns: 1fr;
  }

  .blog-preview img {
    width: 100%;
    height: 180px;
  }

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

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

  .container.cta-band,
  .container.cta-band-mobile-2 {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
    text-align: left;
    justify-items: start;
  }

  .container .cta-band {
    margin-left: 2%;
    margin-right: 2%;
    text-align: left;
    justify-items: start;
  }

  .container.cta-band .section-title,
  .container.cta-band-mobile-2 .section-title,
  .container .cta-band .section-title,
  .container .cta-band p,
  .container.cta-band p,
  .container.cta-band-mobile-2 p {
    text-align: left;
    max-width: 100%;
  }

  .hourly-pill {
    max-width: 600px;
  }

  .hourly-pill-text {
    font-size: 1.8rem;
  }

  .hourly-pill-badge {
    min-width: 3.9rem;
    height: 3.9rem;
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .section {
    padding: 2.9rem 0;
  }

  .card,
  .package-card,
  .price-card {
    padding: 1.15rem;
  }

  .hero-actions .button-primary {
    min-height: 64px;
    font-size: 1.05rem;
    width: 100%;
  }

  .hero-actions .button-secondary {
    width: 100%;
  }

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

  .step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .step-actions [data-step-next] {
    margin-left: 0;
  }

  .step-actions [data-step-submit] {
    margin-left: 0;
  }

  .footer-privacy-tools {
    margin-left: 0;
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
  }

  .consent-banner {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hourly-pill {
    gap: 0.4rem;
    padding: 0.82rem 0.75rem;
  }

  .hourly-pill-text {
    font-size: 1.34rem;
  }

  .hourly-pill-badge {
    min-width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
