
:root {
  --navy: #07124a;
  --teal: #079fa3;
  --teal-dark: #008b8f;
  --pink: #e83e8c;
  --light-teal: #eefafa;
  --light-pink: #fff2f8;
  --text: #111827;
  --muted: #5b6475;
  --border: #e5e7eb;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.announcement {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
}

.announcement span {
  background: var(--teal);
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 10px;
  font-size: 13px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 36px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
}

.brand img {
  width: 62px;
  height: 62px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #111827;
  font-size: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.submit-link {
  font-weight: 700;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 10px 24px rgba(232, 62, 140, 0.24);
}

.btn-outline {
  background: white;
  border: 1px solid #9ca3af;
  color: #111827;
}

.btn-teal {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 24px rgba(7, 159, 163, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 54px;
  padding: 50px 36px 36px;
  align-items: center;
}

.eyebrow {
  color: var(--pink);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  color: var(--navy);
  letter-spacing: -0.055em;
  margin: 0 0 26px;
}

.hero p {
  font-size: 21px;
  line-height: 1.55;
  color: #1f2937;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #111827;
  font-size: 17px;
}

.trust-row span::before {
  content: "?";
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50%;
  margin-right: 10px;
  padding: 0 4px;
}

.hero-image {
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: linear-gradient(135deg, #eafafa, #fff7fb);
  min-height: 360px;
  display: grid;
  place-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.desktop-note {
  text-align: center;
  padding: 20px 20px 45px;
}

.desktop-note h2 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 34px;
}

.feature-strip {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 36px;
  font-weight: 800;
}

.feature-strip div {
  text-align: center;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 34px 36px 46px;
}

.audience-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.audience-card.traveller {
  background: var(--light-teal);
  border-color: #c7f2ef;
}

.audience-card.host {
  background: var(--light-pink);
  border-color: #f9cce1;
}

.pill {
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.traveller .pill,
.traveller .learn {
  color: var(--teal-dark);
}

.host .pill,
.host .learn {
  color: var(--pink);
}

.audience-card h2 {
  color: var(--navy);
  font-size: 30px;
  margin: 0 0 14px;
}

.audience-card p,
.audience-card li {
  font-size: 18px;
  line-height: 1.45;
}

.learn {
  display: inline-block;
  margin-top: 18px;
  font-weight: 900;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
}

.mini-image {
  min-height: 230px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  padding: 28px 36px 58px;
}

.benefit {
  border-radius: 16px;
  padding: 26px 20px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  font-size: 34px;
  color: var(--teal);
}

.benefit strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.how {
  padding: 30px 36px 80px;
}

.how h2 {
  text-align: center;
  color: var(--navy);
  font-size: 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.step {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 22px 28px;
  position: relative;
  min-height: 150px;
  background: #fff;
}

.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.step:nth-child(even) .step-num {
  background: var(--pink);
}

.page {
  padding: 30px 36px 80px;
  max-width: 1050px;
}

.page h1 {
  color: var(--navy);
  font-size: 46px;
}

.page h2 {
  margin-top: 34px;
  color: var(--text);
}

.page p,
.page li {
  font-size: 18px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.price-card h2 {
  margin-top: 0;
  color: var(--navy);
}

.price {
  font-size: 36px;
  color: var(--teal);
  font-weight: 900;
}

.site-footer {
  background: #cc2686;
  color: #fff;
  padding: 44px 34px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 900;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.site-footer h3 {
  margin-top: 0;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.copyright {
  margin-top: 32px;
  font-size: 16px;
}

.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 74, 0.55);
  z-index: 1000;
  padding: 24px;
  overflow-y: auto;
}

.modal-backdrop.open {
  display: grid;
  place-items: center;
}

.modal {
  width: min(680px, 100%);
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.modal h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 32px;
}

.modal-close {
  border: 0;
  background: #f3f4f6;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 800;
  color: var(--navy);
}

.form-field input,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}

.form-field textarea {
  min-height: 110px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-message {
  margin-top: 16px;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .hero,
  .audience,
  .audience-card {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 20px;
    align-items: flex-start;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .hero,
  .audience,
  .how,
  .page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefits {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}


.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  color: var(--teal);
  flex: 0 0 42px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.step-icon {
  width: 42px;
  height: 42px;
  color: var(--teal);
  margin-bottom: 12px;
}

.step:nth-child(even) .step-icon {
  color: var(--pink);
}

.step-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}


/* Bootstrap icon polish */
.feature-item i {
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
}

.benefit-icon i {
  font-size: 42px;
  line-height: 1;
  color: var(--teal);
}

.benefit-icon.pink i {
  color: var(--pink);
}

.step-icon i {
  font-size: 42px;
  line-height: 1;
  color: var(--teal);
}

.step:nth-child(even) .step-icon i {
  color: var(--pink);
}



/* =========================================================
   Mates & Me final public-site overrides
   Clean replacement for earlier experimental CSS blocks
   ========================================================= */

:root {
  --bubble-pink: #e21883;
  --bubble-pink-dark: #d71978;
  --bubble-teal: #08a9a8;
  --bubble-navy: #071653;
  --bubble-ink: #101828;
  --bubble-muted: #344054;
}

/* Announcement bar */
.announcement {
  background: var(--bubble-navy) !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 9px 16px !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

.announcement span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--bubble-teal) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 3px 12px !important;
  margin-right: 12px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

.announcement .celebration-icon {
  background: transparent !important;
  padding: 0 !important;
  margin-left: 6px !important;
  margin-right: 0 !important;
  font-size: 18px !important;
}

/* Brand logo */
.brand,
.footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
}

.brand img,
.footer-brand img {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  object-fit: contain !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  padding: 6px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16) !important;
}

.brand span,
.brand strong,
.brand-name {
  color: #0f172a !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

/* Footer */
footer .footer-brand,
footer .footer-brand span,
footer .footer-brand strong,
footer .footer-brand .brand-name,
footer .copyright {
  color: #ffffff !important;
}

/* Chrome button */
.hero-actions a[href*="chromewebstore"],
a[href*="chromewebstore"],
.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 13px !important;
  min-height: 56px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  background: var(--bubble-pink) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 10px 22px rgba(226, 24, 131, 0.28) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.hero-actions a[href*="chromewebstore"]::before,
a[href*="chromewebstore"]::before {
  content: "" !important;
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at center, #ffffff 0 20%, #4285f4 21% 33%, transparent 34%),
    conic-gradient(#ea4335 0 33%, #fbbc05 0 66%, #34a853 0 100%) !important;
}

/* Trust row */
.trust-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(18px, 4vw, 54px) !important;
  flex-wrap: wrap !important;
  color: var(--bubble-ink) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.trust-row span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
}

.trust-row span::before {
  content: "✓" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  border-radius: 50% !important;
  border: 3px solid var(--bubble-teal) !important;
  color: var(--bubble-teal) !important;
  background: #ffffff !important;
  font-weight: 900 !important;
  font-size: 18px !important;
}

/* Thin navy feature strip */
.feature-strip {
  background: var(--bubble-navy) !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 24px 40px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: center !important;
}

.feature-strip > div,
.feature-strip > .feature-item {
  background: transparent !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  white-space: nowrap !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

.feature-strip > div::before,
.feature-strip > .feature-item::before {
  content: none !important;
  display: none !important;
}

.feature-strip i,
.feature-strip svg {
  display: inline-flex !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  font-size: 26px !important;
  margin: 0 !important;
}

/* How it works */
.how {
  padding: 26px 36px 76px !important;
}

.how h2 {
  text-align: center !important;
  color: var(--bubble-navy) !important;
  font-size: 34px !important;
  line-height: 1.1 !important;
  letter-spacing: 0.14em !important;
  margin: 0 0 36px !important;
}

.steps {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin-top: 0 !important;
}

.step {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  grid-template-rows: auto auto !important;
  column-gap: 14px !important;
  align-items: center !important;
  text-align: left !important;

  min-height: 132px !important;
  padding: 28px 24px 24px !important;

  background: #ffffff !important;
  border: 1px solid rgba(16, 24, 40, 0.10) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

.step-num {
  position: absolute !important;
  top: -25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--bubble-teal) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.step:nth-child(even) .step-num {
  background: var(--bubble-pink) !important;
}

.step-icon {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  border-radius: 999px !important;
  margin: 0 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.04) 34%),
    linear-gradient(135deg, rgba(8, 169, 168, 0.20), rgba(226, 24, 131, 0.14)) !important;
}

.step:nth-child(even) .step-icon {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.04) 34%),
    linear-gradient(135deg, rgba(226, 24, 131, 0.20), rgba(8, 169, 168, 0.12)) !important;
}

.step-icon i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--bubble-teal) !important;
  font-size: 26px !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.step:nth-child(even) .step-icon i {
  color: var(--bubble-pink) !important;
}

.step-icon svg {
  width: 30px !important;
  height: 30px !important;
  display: block !important;
  stroke: currentColor !important;
  fill: none !important;
}

.step h3 {
  grid-column: 2 !important;
  margin: 0 0 7px !important;
  color: var(--bubble-ink) !important;
  font-size: 17px !important;
  line-height: 1.14 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.step p {
  grid-column: 2 !important;
  margin: 0 !important;
  color: var(--bubble-ink) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
}

/* Mobile */
@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .brand img,
  .footer-brand img {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
  }

  .brand span,
  .brand strong,
  .brand-name {
    font-size: 18px !important;
  }

  .feature-strip {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
  }

  .feature-strip > div,
  .feature-strip > .feature-item {
    justify-content: flex-start !important;
    white-space: normal !important;
    font-size: 15px !important;
  }

  .steps {
    grid-template-columns: 1fr !important;
  }

  .step {
    grid-template-columns: 54px 1fr !important;
    padding: 24px 22px !important;
    min-height: 124px !important;
  }

  .step-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }

  .step h3 {
    font-size: 16px !important;
  }

  .step p {
    font-size: 14px !important;
  }
}


/* =========================================================
   How it works gradient + step number size refinement
   ========================================================= */

/* Step number bubbles: 45 x 45 */
.step-num {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px !important;
  font-size: 16px !important;
  top: -22px !important;
}

/* Icon gradient for steps 1, 3, 5 */
.step:nth-child(odd) .step-icon {
  background: radial-gradient(
    circle farthest-corner at 10% 10%,
    #b3eaed 0%,
    #ffffff 100%
  ) !important;
}

/* Icon gradient for steps 2, 4 */
.step:nth-child(even) .step-icon {
  background: radial-gradient(
    circle farthest-corner at 10% 10%,
    #fff1f8 0%,
    #ffffff 100%
  ) !important;
}

/* Keep icon colour matched to step */
.step:nth-child(odd) .step-icon,
.step:nth-child(odd) .step-icon i,
.step:nth-child(odd) .step-icon svg {
  color: #08a9a8 !important;
  stroke: #08a9a8 !important;
}

.step:nth-child(even) .step-icon,
.step:nth-child(even) .step-icon i,
.step:nth-child(even) .step-icon svg {
  color: #e21883 !important;
  stroke: #e21883 !important;
}


/* Make How it works icons larger for cards 2 and 4 */
.step:nth-child(2) .step-icon svg,
.step:nth-child(4) .step-icon svg {
  width: 38px !important;
  height: 38px !important;
}

.step:nth-child(2) .step-icon,
.step:nth-child(4) .step-icon {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
}


/* Card 2 image/search icon refinement */
.step:nth-child(2) .image-search-icon {
  width: 40px !important;
  height: 40px !important;
}

.step:nth-child(2) .image-search-icon rect,
.step:nth-child(2) .image-search-icon path,
.step:nth-child(2) .image-search-icon circle {
  stroke: #e21883 !important;
  fill: none !important;
}


/* Saved custom PNG icon for How it works card 2 */
.step:nth-child(2) .step-custom-icon {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  display: block !important;
}


/* Saved custom PNG icon for How it works card 4 */
.step:nth-child(4) .step-scale-icon {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  display: block !important;
}


/* Make public website pink button text less bold */
.btn,
.btn-primary,
.learn,
.hero-actions a[href*="chromewebstore"],
a[href*="chromewebstore"] {
  font-weight: 500 !important;
}


/* =========================================================
   Pricing page layout refinement
   Spread 3 cards across page + center card buttons
   ========================================================= */

.pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 36px auto 0 !important;
  align-items: stretch !important;
}

.price-card {
  width: 100% !important;
  max-width: none !important;
  min-height: 420px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.price-card .btn,
.price-card .btn-primary,
.price-card .learn,
.price-card a[href*="chromewebstore"],
.price-card button {
  align-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  justify-content: center !important;
}

/* Make pricing page use the available horizontal space */
.page:has(.pricing-grid) {
  max-width: none !important;
  width: 100% !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }

  .price-card {
    min-height: auto !important;
  }
}


/* =========================================================
   Legal/simple pages full-width layout
   Fix Privacy + Terms pages being too left-aligned/narrow
   ========================================================= */

.page {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.page h1,
.page h2,
.page h3,
.page p,
.page ul,
.page ol {
  max-width: none !important;
}

.page p,
.page li {
  max-width: 1100px !important;
}

.page h1 {
  max-width: 1200px !important;
}

@media (max-width: 720px) {
  .page {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

