/* Mrs. Ani landing page — self-contained styles (no Tailwind dependency) */

.landing {
  --brand-navy: #2a3d52;
  --brand-pink: #e6156f;
  --brand-yellow: #f5d547;
  --brand-green: #3d9a6a;
  --landing-background: #fdfbf7;
  --landing-muted: #5c6b7a;
  --landing-border: #e2e8f0;
  --landing-primary: var(--brand-pink);
  --landing-primary-foreground: #fff;
  color-scheme: light;
  background-color: var(--landing-background);
  color: var(--brand-navy);
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.landing-main {
  min-height: 100vh;
}

.landing a:not(.landing-btn) {
  color: inherit;
  text-decoration: none;
}

.landing a.landing-btn {
  text-decoration: none;
}

.landing a.landing-btn--primary {
  background-color: var(--landing-primary);
  color: var(--landing-primary-foreground);
}

.landing a.landing-btn--secondary {
  background-color: var(--brand-yellow);
  color: var(--brand-navy);
}

.landing a.landing-btn--outline {
  background: #fff;
  color: var(--brand-navy);
}

.landing h1,
.landing h2,
.landing h3,
.landing p {
  margin: 0;
}

.landing .font-display {
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
}

/* Header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--landing-border) 70%, transparent);
  background: color-mix(in srgb, var(--landing-background) 85%, transparent);
  backdrop-filter: blur(12px);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding: 0.75rem 1rem;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.landing-logo {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  overflow: hidden;
  border-radius: 9999px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--brand-yellow);
}

.landing-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.landing-brand-name {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-navy);
}

.landing-brand-tagline {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--landing-muted);
}

.landing-nav-desktop,
.landing-actions-desktop {
  display: none;
  align-items: center;
}

.landing-nav-desktop {
  flex: 1;
  justify-content: center;
  gap: 2rem;
}

.landing-nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--brand-navy) 80%, transparent);
  transition: color 0.15s;
}

.landing-nav-link:hover {
  color: var(--landing-primary);
}

.landing-actions-desktop {
  gap: 0.75rem;
  flex-shrink: 0;
}

.landing-text-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--brand-navy) 70%, transparent);
  transition: color 0.15s;
}

.landing-text-link:hover {
  color: var(--landing-primary);
}

.landing-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
  transition: color 0.15s;
}

.landing-phone-link:hover {
  color: var(--landing-primary);
}

.landing-phone-link .icon {
  color: var(--brand-green);
}

.landing-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--landing-border);
  border-radius: 9999px;
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
  font-size: 1.125rem;
}

.landing-nav-mobile {
  display: none;
  border-top: 1px solid var(--landing-border);
  background: var(--landing-background);
}

.landing [data-landing-nav-target="menu"].is-open {
  display: block;
}

.landing-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 1rem;
}

.landing-mobile-nav a {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.landing-mobile-nav a:hover {
  background: #f1f5f9;
}

/* Buttons */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, background-color 0.15s;
}

.landing-btn:hover {
  opacity: 0.92;
}

.landing-btn--primary {
  background-color: var(--landing-primary);
  color: var(--landing-primary-foreground);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--landing-primary) 35%, transparent);
}

.landing-btn--primary-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.landing-btn--primary-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.landing-btn--secondary {
  background-color: var(--brand-yellow);
  color: var(--brand-navy);
}

.landing-btn--secondary-block {
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}

.landing-btn--outline {
  background: #fff;
  color: var(--brand-navy);
  border: 2px solid color-mix(in srgb, var(--brand-navy) 15%, transparent);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.landing-btn--outline:hover {
  background: #f8fafc;
  opacity: 1;
}

.landing-btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Hero */
.landing-hero {
  position: relative;
  overflow: hidden;
}

.landing-hero-blob-left,
.landing-hero-blob-right {
  pointer-events: none;
  position: absolute;
  border-radius: 9999px;
  filter: blur(40px);
}

.landing-hero-blob-left {
  top: -6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: color-mix(in srgb, var(--brand-yellow) 25%, transparent);
}

.landing-hero-blob-right {
  top: 33%;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: color-mix(in srgb, var(--landing-primary) 15%, transparent);
}

.landing-hero-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 3.5rem 1rem;
  align-items: center;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--brand-green) 30%, transparent);
  background: color-mix(in srgb, var(--brand-green) 10%, transparent);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-green);
}

.landing-hero-title {
  margin-top: 1.25rem;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--brand-navy);
}

.landing-hero-title .accent {
  color: var(--landing-primary);
}

.landing-hero-lead {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--landing-muted);
}

.landing-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.landing-avatars {
  display: flex;
}

.landing-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: -0.5rem;
  border: 2px solid var(--landing-background);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.landing-avatar:first-child {
  margin-left: 0;
}

.landing-stars {
  color: var(--brand-yellow);
  letter-spacing: 0.05em;
}

.landing-social-proof p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.landing-hero-visual {
  position: relative;
}

.landing-hero-shadow {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translate(1rem, 1rem);
  border-radius: 2.5rem;
  background: color-mix(in srgb, var(--brand-yellow) 40%, transparent);
}

.landing-hero-image-frame {
  overflow: hidden;
  border-radius: 2.5rem;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.12);
}

.landing-hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.landing-satisfaction-badge {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--landing-border);
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.1);
}

.landing-satisfaction-badge .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--brand-green) 15%, transparent);
  color: var(--brand-green);
  font-size: 1.125rem;
}

.landing-satisfaction-badge strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand-navy);
}

.landing-satisfaction-badge span {
  font-size: 0.75rem;
  color: var(--landing-muted);
}

/* Sections */
.landing-section {
  max-width: 72rem;
  margin-inline: auto;
  padding: 4rem 1rem;
}

.landing-section-intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.landing-pill {
  display: inline-block;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--brand-yellow) 25%, transparent);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.landing-pill--on-dark {
  color: var(--brand-yellow);
}

.landing-section-title {
  margin-top: 1rem;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-navy);
}

.landing-section-title--light {
  color: #fff;
}

.landing-section-lead {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--landing-muted);
}

.landing-section-lead--light {
  color: color-mix(in srgb, #fff 70%, transparent);
}

.landing-section-body {
  margin-top: 3rem;
}

/* Service cards */
.landing-services-grid {
  display: grid;
  gap: 1.5rem;
}

.landing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--landing-border);
  background: #fff;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.06);
  transition: box-shadow 0.2s;
}

.landing-card:hover {
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.1);
}

.landing-card-image {
  height: 10rem;
  overflow: hidden;
}

.landing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--landing-border);
  padding: 1.5rem;
}

.landing-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  font-size: 1.5rem;
}

.landing-card-icon--pink {
  background: color-mix(in srgb, var(--landing-primary) 12%, transparent);
  color: var(--landing-primary);
}

.landing-card-icon--green {
  background: color-mix(in srgb, var(--brand-green) 15%, transparent);
  color: var(--brand-green);
}

.landing-card h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.landing-card-sub {
  font-size: 0.875rem;
  color: var(--landing-muted);
}

.landing-checklist {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.landing-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--brand-navy);
}

.landing-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--brand-green) 15%, transparent);
  color: var(--brand-green);
  font-size: 0.75rem;
  font-weight: 700;
}

.landing-card-footer {
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
}

/* Why us */
.landing-why {
  background: var(--brand-navy);
  padding-block: 4rem;
}

.landing-why-inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.landing-why-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.landing-feature {
  border-radius: 1.5rem;
  background: color-mix(in srgb, #fff 5%, transparent);
  padding: 1.5rem;
  border: 1px solid color-mix(in srgb, #fff 10%, transparent);
  transition: background-color 0.15s;
}

.landing-feature:hover {
  background: color-mix(in srgb, #fff 10%, transparent);
}

.landing-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 1.25rem;
}

.landing-feature h3 {
  margin-top: 1rem;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.landing-feature p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: color-mix(in srgb, #fff 70%, transparent);
}

/* Testimonials */
.landing-testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.landing-quote-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid var(--landing-border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.06);
}

.landing-quote-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-yellow);
}

.landing-quote-stars {
  margin-top: 0.75rem;
  color: var(--brand-yellow);
  letter-spacing: 0.05em;
}

.landing-quote-card blockquote {
  flex: 1;
  margin: 0.75rem 0 0;
  line-height: 1.625;
  color: color-mix(in srgb, var(--brand-navy) 90%, transparent);
}

.landing-quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--landing-border);
}

.landing-quote-author .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.landing-quote-author strong {
  display: block;
  font-weight: 700;
  color: var(--brand-navy);
}

.landing-quote-author span {
  font-size: 0.875rem;
  color: var(--landing-muted);
}

.landing-testimonials-carousel {
  position: relative;
}

.landing-testimonials-track {
  position: relative;
  min-height: 16rem;
}

.landing-testimonials-carousel .landing-quote-card {
  display: none;
}

.landing-testimonials-carousel .landing-quote-card.is-active {
  display: flex;
}

.landing-testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.landing-testimonials-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--landing-border);
  border-radius: 9999px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.landing-testimonials-nav:hover {
  border-color: var(--landing-primary);
  color: var(--landing-primary);
}

.landing-testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.landing-testimonials-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: none;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--brand-navy) 25%, transparent);
  cursor: pointer;
  padding: 0;
}

.landing-testimonials-dot.is-active {
  background: var(--landing-primary);
}

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

.landing-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.15rem;
  margin-top: 0.5rem;
}

.landing-rating-star {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.landing-rating-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.landing-rating-glyph {
  pointer-events: none;
}

.landing-rating-star:has(.landing-rating-input:checked),
.landing-rating-star:has(.landing-rating-input:checked) ~ .landing-rating-star,
.landing-rating-star:hover,
.landing-rating-star:hover ~ .landing-rating-star {
  color: var(--brand-yellow);
}

.landing-public {
  box-sizing: border-box;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  padding: 4rem 1rem;
}

.landing-public .landing-section-intro {
  max-width: none;
  margin: 0;
  text-align: left;
}

.landing-public .landing-form {
  margin-top: 2rem;
}

.landing-char-count {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--landing-muted);
  text-align: right;
}

.landing-form-legend {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
}

/* Contact */
.landing-contact-panel {
  overflow: hidden;
  border-radius: 2.5rem;
  border: 1px solid var(--landing-border);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.08);
}

.landing-contact-grid {
  display: grid;
}

.landing-contact-pitch {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: var(--landing-primary);
  color: var(--landing-primary-foreground);
  padding: 2rem;
}

.landing-contact-pitch .landing-pill {
  width: fit-content;
  background: color-mix(in srgb, #fff 15%, transparent);
  color: #fff;
}

.landing-contact-pitch h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
}

.landing-contact-pitch p {
  line-height: 1.625;
  color: color-mix(in srgb, #fff 85%, transparent);
}

.landing-contact-pitch a,
.landing-contact-pitch .contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.landing-contact-pitch .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: color-mix(in srgb, #fff 15%, transparent);
}

.landing-contact-form-wrap {
  padding: 2rem;
}

.landing-form {
  display: grid;
  gap: 1rem;
}

.landing-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.landing-form input:not([type="radio"]):not([type="checkbox"]),
.landing-form select,
.landing-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--landing-border);
  background: #fff;
  padding: 0.625rem 1rem;
  font: inherit;
  color: var(--brand-navy);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.landing-form input:not([type="radio"]):not([type="checkbox"]):focus,
.landing-form select:focus,
.landing-form textarea:focus {
  border-color: var(--landing-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--landing-primary) 25%, transparent);
}

.landing-form-row-2 {
  display: grid;
  gap: 1rem;
}

.landing-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 100%;
  text-align: center;
}

.landing-form-success.is-visible {
  display: flex;
}

.landing-form.is-hidden {
  display: none;
}

.landing-form-success .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--brand-green) 15%, transparent);
  color: var(--brand-green);
  font-size: 1.75rem;
}

.landing-form-success h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.landing-form-success p {
  max-width: 20rem;
  color: var(--landing-muted);
}

/* Footer */
.landing-footer {
  border-top: 1px solid var(--landing-border);
  background: var(--landing-background);
}

.landing-footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 3.5rem 1rem;
}

.landing-footer h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.landing-footer ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.landing-footer li,
.landing-footer a {
  font-size: 0.875rem;
  color: var(--landing-muted);
  transition: color 0.15s;
}

.landing-footer a:hover {
  color: var(--landing-primary);
}

.landing-footer-brand p {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--landing-muted);
}

.landing-footer-bottom {
  border-top: 1px solid var(--landing-border);
}

.landing-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--landing-muted);
  text-align: center;
}

/* Responsive */
@media (min-width: 640px) {
  .landing-header-inner,
  .landing-hero-grid,
  .landing-section,
  .landing-why-inner,
  .landing-footer-grid,
  .landing-footer-bottom-inner {
    padding-inline: 1.5rem;
  }

  .landing-btn-row {
    flex-direction: row;
  }

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

  .landing-satisfaction-badge {
    left: -1.5rem;
  }
}

@media (min-width: 768px) {
  .landing-nav-desktop,
  .landing-actions-desktop {
    display: flex;
  }

  .landing-menu-button,
  .landing-nav-mobile {
    display: none !important;
  }

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

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

  .landing-footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .landing-hero-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 5rem;
  }

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

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

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

  .landing-section,
  .landing-why {
    padding-block: 6rem;
  }

  .landing-contact-pitch,
  .landing-contact-form-wrap {
    padding: 2.5rem;
  }
}
