/* Weekeda marketing — navy + teal, mobile-first, dark/light */

:root {
  color-scheme: dark;
  --navy-950: #07111f;
  --navy-900: #0b1a2e;
  --navy-800: #12263f;
  --navy-700: #1a3554;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-glow: rgba(45, 212, 191, 0.35);
  --sand: #e8eef6;
  --text: #e7eef8;
  --text-muted: #9fb0c7;
  --text-heading: #f4f8ff;
  --text-soft: #7f93ad;
  --surface: rgba(18, 38, 63, 0.72);
  --surface-strong: rgba(12, 24, 40, 0.72);
  --surface-soft: rgba(8, 18, 32, 0.55);
  --border: rgba(159, 176, 199, 0.22);
  --header-bg: rgba(7, 17, 31, 0.82);
  --footer-bg: rgba(4, 10, 18, 0.85);
  --footer-copy: #6f829a;
  --body-bg:
    radial-gradient(120% 80% at 10% -10%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(90% 60% at 100% 0%, rgba(26, 53, 84, 0.9), transparent 50%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 42%, #0a1626 100%);
  --phone-bg: linear-gradient(160deg, #102038, #0a1524 70%);
  --phone-screen-bg:
    linear-gradient(180deg, rgba(20, 184, 166, 0.08), transparent 40%),
    #0e1c30;
  --phone-border: rgba(148, 163, 184, 0.35);
  --bubble-bg: #16324f;
  --btn-ghost-bg: rgba(255, 255, 255, 0.04);
  --btn-primary-fg: #042f2e;
  --plan-featured-bg:
    linear-gradient(165deg, rgba(20, 184, 166, 0.14), transparent 42%),
    rgba(14, 30, 50, 0.92);
  --legal-disclaimer-bg: rgba(251, 191, 36, 0.08);
  --legal-disclaimer-border: rgba(251, 191, 36, 0.35);
  --legal-disclaimer-fg: #fde68a;
  --radius: 1rem;
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 68rem;
  --header-h: 4rem;
}

html[data-theme="light"] {
  color-scheme: light;
  --navy-950: #f4f7fb;
  --navy-900: #eef3f9;
  --navy-800: #e2eaf4;
  --navy-700: #d0dbea;
  --teal-400: #0f766e;
  --teal-500: #0d9488;
  --teal-600: #0f766e;
  --teal-glow: rgba(13, 148, 136, 0.22);
  --sand: #1a2b3d;
  --text: #1a2b3d;
  --text-muted: #5a6f88;
  --text-heading: #0b1a2e;
  --text-soft: #6b7f97;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --border: rgba(26, 53, 84, 0.14);
  --header-bg: rgba(255, 255, 255, 0.86);
  --footer-bg: #e8eef6;
  --footer-copy: #6b7f97;
  --body-bg:
    radial-gradient(120% 80% at 10% -10%, rgba(20, 184, 166, 0.14), transparent 55%),
    radial-gradient(90% 60% at 100% 0%, rgba(148, 183, 220, 0.35), transparent 50%),
    linear-gradient(180deg, #f7fafc 0%, #eef3f9 45%, #e6eef7 100%);
  --phone-bg: linear-gradient(160deg, #ffffff, #eef3f9 70%);
  --phone-screen-bg:
    linear-gradient(180deg, rgba(20, 184, 166, 0.08), transparent 40%),
    #f4f8fc;
  --phone-border: rgba(26, 53, 84, 0.16);
  --bubble-bg: #e5f4f2;
  --btn-ghost-bg: rgba(11, 26, 46, 0.04);
  --btn-primary-fg: #042f2e;
  --plan-featured-bg:
    linear-gradient(165deg, rgba(20, 184, 166, 0.12), transparent 42%),
    #ffffff;
  --legal-disclaimer-bg: rgba(251, 191, 36, 0.12);
  --legal-disclaimer-border: rgba(180, 130, 20, 0.35);
  --legal-disclaimer-fg: #92400e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  background: var(--body-bg);
  /* scroll on mobile — fixed gradients repaint on every scroll and jank on phones */
  background-attachment: scroll;
}

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

a {
  color: var(--teal-400);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal-500);
}

html[data-theme="light"] a:hover {
  color: var(--teal-600);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--teal-500);
  color: var(--btn-primary-fg);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 2rem;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-on-light,
.mark-on-light {
  display: none;
}

html[data-theme="light"] .brand-logo-on-dark,
html[data-theme="light"] .mark-on-dark {
  display: none;
}

html[data-theme="light"] .brand-logo-on-light,
html[data-theme="light"] .mark-on-light {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.header-nav a:hover {
  color: var(--text);
}

.header-nav .btn {
  margin-left: 0.25rem;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--btn-ghost-bg);
  color: var(--text);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.theme-toggle:hover {
  border-color: rgba(45, 212, 191, 0.45);
  color: var(--teal-400);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

/* Escuro: sol (vai para claro). Claro: lua (vai para escuro). */
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
}

html:not([data-theme="light"]) .theme-toggle .icon-sun {
  display: block;
}

html[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.btn-sm {
  min-height: 2.25rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--btn-primary-fg);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  color: var(--btn-primary-fg);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(45, 212, 191, 0.45);
  color: var(--teal-400);
}

.btn-secondary:hover {
  border-color: var(--teal-400);
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal-400);
}

html[data-theme="light"] .btn-secondary {
  border-color: rgba(15, 118, 110, 0.4);
}

.btn-ghost {
  background: var(--btn-ghost-bg);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(45, 212, 191, 0.35);
  color: var(--teal-400);
}

.hero {
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3.5rem;
}

.hero-copy {
  max-width: 36rem;
}

.brand-word {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--teal-400);
  animation: rise 700ms ease both;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text-heading);
  animation: rise 700ms ease 80ms both;
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 32rem;
  animation: rise 700ms ease 140ms both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 700ms ease 200ms both;
}

.cta-note {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  animation: rise 700ms ease 260ms both;
}

.hero-visual {
  position: relative;
  min-height: 18rem;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  inset: 10% 5% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow), transparent 68%);
  filter: blur(8px);
  animation: pulse 5.5s ease-in-out infinite;
}

.phone-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 18rem);
  animation: float-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.phone {
  border-radius: 1.6rem;
  border: 1px solid var(--phone-border);
  background: var(--phone-bg);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0.7rem;
}

html[data-theme="light"] .phone {
  box-shadow:
    0 18px 40px rgba(11, 26, 46, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.phone-notch {
  width: 34%;
  height: 0.35rem;
  margin: 0.2rem auto 0.8rem;
  border-radius: 999px;
  background: var(--phone-border);
}

.phone-screen {
  min-height: 18rem;
  border-radius: 1.1rem;
  padding: 1rem;
  background: var(--phone-screen-bg);
}

.phone-label {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bubble {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem 0.9rem 0.9rem 0.25rem;
  background: var(--bubble-bg);
  border: 1px solid rgba(45, 212, 191, 0.18);
  color: var(--sand);
  font-size: 0.92rem;
}

.bubble-message p {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--sand);
}

.bubble strong {
  color: var(--teal-400);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.bubble-meta {
  margin-top: 0.65rem;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  border-color: transparent;
  color: var(--teal-400);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-mark {
  position: absolute;
  right: -0.4rem;
  bottom: -0.6rem;
  width: 4.5rem;
  height: auto;
  aspect-ratio: 256 / 173;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
}

.section {
  padding: 3.25rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-heading);
}

.section p,
.section-lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 42rem;
}

.section-problem {
  border-block: 1px solid var(--border);
  background: var(--surface-soft);
}

.section-problem p {
  font-size: 1.08rem;
}

.steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  counter-reset: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-num {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background: rgba(20, 184, 166, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: var(--teal-400);
  font-family: var(--font-display);
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-heading);
}

.steps p {
  margin: 0;
}

.section-plans .section-lead {
  margin-bottom: 0;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.plans {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem 1.2rem 1.4rem;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.plan-card-featured {
  border-color: rgba(45, 212, 191, 0.55);
  background: var(--plan-featured-bg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .plan-card-featured {
  box-shadow: 0 14px 32px rgba(11, 26, 46, 0.1);
}

.plan-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--teal-500);
  color: var(--btn-primary-fg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan-card-top {
  display: grid;
  gap: 0.55rem;
  padding-right: 0.5rem;
}

.plan-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.plan-tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: none;
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.4rem;
  margin: 0.35rem 0 0.15rem;
}

.plan-price-value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-heading);
}

.plan-price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.plan-cta {
  width: 100%;
  margin-top: 0.25rem;
}

.plan-audience {
  margin: 0.15rem 0 0 !important;
  color: var(--text-soft) !important;
  font-size: 0.88rem !important;
  max-width: none !important;
}

.plan-quotas-label {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-quotas dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.plan-quotas dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
}

.plan-quotas dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.plan-quotas dt {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan-quotas dd {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
  text-align: right;
}

.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.plan-features li {
  position: relative;
  padding: 0 0 0 1.4rem;
  border: 0;
  color: var(--sand);
  font-size: 0.92rem;
  line-height: 1.4;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-400);
  font-size: 0.95rem;
  font-weight: 700;
}

.plans-included {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.plans-included h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-heading);
}

.plans-included > p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.included-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.included-features li {
  position: relative;
  padding: 0 0 0 1.4rem;
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.4;
}

.included-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-400);
  font-weight: 700;
}

.plans-custom {
  margin-top: 1.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(45, 212, 191, 0.4);
  background: rgba(20, 184, 166, 0.06);
}

.plans-custom h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-heading);
}

.plans-custom p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.plans-custom .btn {
  width: fit-content;
}

.plans-footnote {
  margin-top: 1.35rem !important;
  font-size: 0.92rem;
}

.section-cta {
  padding-bottom: 4rem;
}

.cta-panel {
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 212, 191, 0.28);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), transparent 55%),
    var(--surface);
}

.cta-panel p {
  margin: 0 0 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
  padding: 2rem 1.25rem 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-heading);
}

.footer-brand img {
  width: 2rem;
  height: auto;
  aspect-ratio: 256 / 173;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--teal-400);
}

.footer-copy {
  margin: 0;
  color: var(--footer-copy);
  font-size: 0.88rem;
}

.legal-page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.legal-page h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.legal-disclaimer {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--legal-disclaimer-border);
  background: var(--legal-disclaimer-bg);
  color: var(--legal-disclaimer-fg);
  font-size: 0.95rem;
}

.legal-page h2 {
  margin: 1.75rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-heading);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.legal-back:hover {
  color: var(--teal-400);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 720px) {
  body {
    background-attachment: fixed;
  }

  .header-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
    gap: 2rem;
  }

  .brand-logo {
    height: 2.25rem;
  }

  .steps {
    gap: 0;
  }

  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .plan-card {
    padding: 1.5rem 1.25rem 1.55rem;
  }

  .plan-card-featured {
    transform: translateY(-0.35rem);
  }

  @media (prefers-reduced-motion: reduce) {
    .plan-card-featured {
      transform: none;
    }
  }

  .plans-included {
    padding: 1.75rem 1.75rem;
  }

  .plans-custom {
    padding: 1.5rem 1.75rem;
  }

  .included-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
  }

  .cta-panel {
    padding: 2.25rem 2rem;
  }
}

@media (min-width: 960px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero,
  .section-inner,
  .footer-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .site-header {
    padding-inline: max(2rem, calc((100% - var(--max)) / 2));
  }
}
