/* =============================================================
   REWpert Homepage  —  style.css
   Namespaced with .rwp- prefixes to avoid collisions with shell.
   Brand palette: navy #191727, ink #0f0e1a, brick #a23624,
   coral #d65943, cream #faf8f5, grey #dcdcde.
   Type: Poppins (UI + headlines), Playfair Display Italic (flourish).
   ============================================================= */

:root {
  --rwp-navy: #191727;
  --rwp-navy-alt: #192532;
  --rwp-brick: #a23624;
  --rwp-coral: #d65943;
  --rwp-grey: #abb2b6;
  --rwp-grey-lt: #dcdcde;
  --rwp-cream: #faf8f5;
  --rwp-cream-warm: #fbf9f5;
  --rwp-ink: #0f0e1a;
  --rwp-brick-10: rgba(162, 54, 36, 0.1);
  --rwp-brick-14: rgba(214, 89, 67, 0.14);
  --rwp-navy-60: rgba(25, 23, 39, 0.6);
  --rwp-navy-65: rgba(25, 23, 39, 0.65);
  --rwp-navy-68: rgba(25, 23, 39, 0.68);
  --rwp-navy-70: rgba(25, 23, 39, 0.7);
  --rwp-navy-08: rgba(25, 23, 39, 0.08);
  --rwp-navy-06: rgba(25, 23, 39, 0.06);
}

/* Reset inside the homepage sections */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--rwp-navy);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body * { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =============== Utility =============== */
.rwp-brick { color: var(--rwp-brick); }
.rwp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  background: #f4f2ee;
  color: var(--rwp-navy);
}
.rwp-chip-brick {
  background: var(--rwp-brick-10);
  color: var(--rwp-brick);
}
.rwp-chip-self { align-self: flex-start; }

/* =============== Buttons =============== */
.rwp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  line-height: 1;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.rwp-btn:hover { transform: translateY(-1px); }
.rwp-btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 6px; }
.rwp-btn-primary { background: var(--rwp-brick); color: #fff; }
.rwp-btn-primary:hover { background: #8e2e1d; }
.rwp-btn-outline { background: #fff; color: var(--rwp-navy); border-color: var(--rwp-navy); }
.rwp-btn-outline:hover { background: var(--rwp-navy); color: #fff; }
.rwp-btn-onbrick { background: #fff; color: var(--rwp-brick); padding: 18px 24px; font-size: 16px; font-weight: 700; border-radius: 8px; }
.rwp-btn-onbrick-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); padding: 18px 24px; font-size: 16px; border-radius: 8px; }
.rwp-btn-onbrick-outline:hover { background: rgba(255, 255, 255, 0.1); }

/* =============== Wordmark =============== */
.rwp-wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--rwp-navy);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.rwp-wordmark span { color: var(--rwp-brick); }
.rwp-wordmark em { color: var(--rwp-brick); font-size: 0.6em; font-style: normal; margin-left: 2px; }
.rwp-wordmark-light { color: var(--rwp-cream); }
.rwp-wordmark-light span,
.rwp-wordmark-light em { color: var(--rwp-coral); }

/* =============== Announce bar =============== */
.rwp-announce {
  background: var(--rwp-navy);
  color: var(--rwp-cream);
  padding: 10px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
}
.rwp-announce-tag {
  background: var(--rwp-coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.08em;
}

/* =============== Nav =============== */
.rwp-nav {
  padding: 18px 72px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--rwp-navy-08);
  background: #fff;
}
.rwp-nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}
.rwp-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rwp-nav-links i { font-size: 9px; opacity: 0.5; font-style: normal; }
.rwp-nav-spacer { flex: 1; }
.rwp-nav-link { font-size: 14px; }

/* ----- Nav flyout (HubSpot-style) — absolutely positioned, animated, never affects layout ----- */
.rwp-nav-item { position: relative; display: inline-flex; align-items: center; }
.rwp-nav-trigger {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.rwp-nav-trigger i { transition: transform 0.2s ease; }
.rwp-nav-item.is-open > .rwp-nav-trigger i { transform: rotate(180deg); }
.rwp-nav-trigger:focus-visible {
  outline: 2px solid var(--rwp-brick);
  outline-offset: 5px;
  border-radius: 3px;
}

.rwp-nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  width: 320px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--rwp-navy-08);
  border-radius: 14px;
  box-shadow: 0 24px 50px -18px rgba(25, 23, 39, 0.22),
              0 8px 22px -12px rgba(25, 23, 39, 0.14);
  z-index: 60;

  /* hidden state — element stays laid out (out of flow); no layout shift on open/close */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.rwp-nav-menu::before {        /* invisible bridge over the 14px gap so hover doesn't drop */
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.rwp-nav-item.is-open > .rwp-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .rwp-nav-item:hover > .rwp-nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .rwp-nav-item:hover > .rwp-nav-trigger i { transform: rotate(180deg); }
}

.rwp-nav-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  transition: background 0.14s ease;
}
.rwp-nav-menu-item + .rwp-nav-menu-item { margin-top: 2px; }
.rwp-nav-menu-item:hover,
.rwp-nav-menu-item:focus-visible {
  background: var(--rwp-cream-warm);
  outline: none;
}
.rwp-nav-menu-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rwp-brick-10);
  color: var(--rwp-brick);
  font-size: 13px;
}
.rwp-nav-menu-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.rwp-nav-menu-txt strong { font-size: 14px; font-weight: 600; color: var(--rwp-navy); line-height: 1.25; }
.rwp-nav-menu-txt small { font-size: 12px; color: var(--rwp-navy-60); line-height: 1.4; }

/* =============== Hero =============== */
.rwp-hero {
  padding: 80px 72px;
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 70%);
}
.rwp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.rwp-h1 {
  margin: 20px 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.rwp-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--rwp-navy-70);
  max-width: 520px;
  margin: 0 0 32px;
}
.rwp-hero-ctas {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.rwp-hero-checks {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--rwp-navy-60);
}
.rwp-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rwp-navy-08);
}
.rwp-hero-metrics strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rwp-brick);
}
.rwp-hero-metrics span {
  font-size: 12px;
  color: var(--rwp-navy-60);
}

/* Hero shot + floating card */
.rwp-hero-shot { position: relative; }
.rwp-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  border: 1px solid var(--rwp-grey-lt);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px -10px rgba(25, 23, 39, 0.15);
}
.rwp-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--rwp-brick-14);
  color: var(--rwp-brick);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.rwp-float-title { font-size: 12px; font-weight: 600; line-height: 1.4; }
.rwp-float-sub { font-size: 12px; color: var(--rwp-navy-60); line-height: 1.4; }

/* =============== Chat mock =============== */
.rwp-chat {
  background: #fff;
  border: 1px solid var(--rwp-navy-08);
  border-radius: 14px;
  overflow: hidden;
  color: var(--rwp-navy);
  box-shadow: 0 40px 80px -30px rgba(25, 23, 39, 0.25),
              0 10px 30px -10px rgba(25, 23, 39, 0.15);
}
.rwp-chat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rwp-navy-08);
  background: var(--rwp-cream-warm);
}
.rwp-dots { display: flex; gap: 6px; }
.rwp-dots i { width: 10px; height: 10px; border-radius: 99px; background: #e7e2d9; }
.rwp-chat-url {
  font-size: 12px;
  color: rgba(25, 23, 39, 0.55);
  letter-spacing: 0.02em;
}
.rwp-chat-spacer { flex: 1; }
.rwp-live {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--rwp-brick);
  color: #fff;
  font-weight: 600;
}
.rwp-chat-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}
.rwp-chat-side {
  background: #f6f3ee;
  padding: 18px 14px;
  border-right: 1px solid var(--rwp-navy-08);
  font-size: 12px;
}
.rwp-chat-sidelabel {
  color: rgba(25, 23, 39, 0.55);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rwp-chat-item {
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  color: var(--rwp-navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rwp-chat-item i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #c9c3b7;
  display: inline-block;
}
.rwp-chat-item-active {
  background: var(--rwp-brick-10);
  color: var(--rwp-coral);
  font-weight: 600;
}
.rwp-chat-item-active i { background: var(--rwp-coral); }
.rwp-chat-convo {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rwp-bubble { padding: 12px 16px; font-size: 13px; line-height: 1.5; }
.rwp-bubble-user {
  align-self: flex-end;
  max-width: 78%;
  background: var(--rwp-navy);
  color: var(--rwp-cream);
  border-radius: 14px 14px 2px 14px;
}
.rwp-bubble-wrap { align-self: flex-start; max-width: 86%; }
.rwp-bubble-meta {
  font-size: 10px;
  color: rgba(25, 23, 39, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rwp-bubble-avatar {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--rwp-brick);
  display: inline-block;
}
.rwp-bubble-ai {
  background: var(--rwp-cream-warm);
  color: var(--rwp-navy);
  border-radius: 2px 14px 14px 14px;
  border: 1px solid var(--rwp-navy-08);
  font-size: 13px;
  line-height: 1.55;
  padding: 14px 16px;
}
.rwp-bubble-headline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--rwp-brick);
}
.rwp-bubble-pills {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.rwp-bubble-pills span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--rwp-navy-08);
  color: rgba(25, 23, 39, 0.55);
}
.rwp-bubble-status {
  align-self: flex-start;
  font-size: 11px;
  color: rgba(25, 23, 39, 0.55);
  display: flex;
  gap: 14px;
}
.rwp-chat-input {
  border-top: 1px solid var(--rwp-navy-08);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--rwp-cream-warm);
}
.rwp-chat-field {
  flex: 1;
  font-size: 13px;
  color: rgba(25, 23, 39, 0.55);
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--rwp-navy-08);
}

/* =============== Logos =============== */
.rwp-logos {
  padding: 28px 72px;
  border-top: 1px solid var(--rwp-navy-08);
  border-bottom: 1px solid var(--rwp-navy-08);
  background: var(--rwp-cream-warm);
}
.rwp-logos-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(25, 23, 39, 0.55);
  font-weight: 600;
  margin-bottom: 18px;
}
.rwp-logos-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: center;
}
.rwp-logos-row span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(25, 23, 39, 0.45);
  text-align: center;
}

/* =============== Features =============== */
.rwp-features { padding: 96px 72px; }
.rwp-features-intro { text-align: center; margin-bottom: 60px; }
.rwp-h2 {
  margin: 16px 0 14px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.rwp-lead-center {
  font-size: 16px;
  color: var(--rwp-navy-65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.rwp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rwp-feature {
  background: var(--rwp-cream-warm);
  border: 1px solid var(--rwp-navy-06);
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.rwp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--rwp-navy);
  color: var(--rwp-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.rwp-feature-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rwp-brick);
  font-weight: 700;
}
.rwp-feature h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.rwp-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--rwp-navy-68);
}
.rwp-feature-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--rwp-brick);
}

.rwp-also {
  margin-top: 24px;
  background: var(--rwp-navy);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  color: var(--rwp-cream);
}
.rwp-also-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rwp-coral);
  font-weight: 700;
  margin-bottom: 8px;
}
.rwp-also-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}
.rwp-also-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  font-size: 13px;
}
.rwp-also-grid span { color: var(--rwp-cream); }
.rwp-also-grid span:first-letter { color: var(--rwp-coral); }

/* =============== Testimonials =============== */
.rwp-testimonials {
  padding: 80px 72px;
  background: var(--rwp-cream-warm);
}
.rwp-testimonials-intro {
  text-align: center;
  margin-bottom: 48px;
}
.rwp-testimonials-intro h2 {
  margin: 16px 0 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.rwp-testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}
.rwp-testimonial {
  background: #fff;
  border: 1px solid var(--rwp-grey-lt);
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rwp-testimonial-featured { padding: 32px; gap: 20px; }
.rwp-testimonial-quote {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.rwp-testimonial-quote em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--rwp-brick);
  font-weight: 400;
}
.rwp-testimonial-quote-sm {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.rwp-stat {
  font-size: 11px;
  font-weight: 700;
  color: var(--rwp-brick);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}
.rwp-testimonial-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.rwp-avatar {
  width: 52px;
  height: 52px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(25, 23, 39, 0.45);
  background:
    repeating-linear-gradient(135deg, #eee5d7 0 12px, rgba(0,0,0,0.04) 12px 13px);
  flex-shrink: 0;
}
.rwp-avatar-sm { width: 40px; height: 40px; }
.rwp-testimonial-name strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.rwp-testimonial-name span {
  font-size: 13px;
  color: var(--rwp-navy-60);
}
.rwp-testimonial-featured .rwp-testimonial-foot { gap: 14px; }
.rwp-testimonial-featured .rwp-testimonial-name { flex: 1; }
.rwp-testimonial-cta {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--rwp-navy);
  color: var(--rwp-cream);
  font-weight: 500;
}

/* =============== CTA band =============== */
.rwp-cta {
  padding: 80px 72px;
  background: var(--rwp-brick);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.rwp-cta-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  margin-bottom: 14px;
}
.rwp-cta-title {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.rwp-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rwp-cta-fine {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}

/* =============== Footer =============== */
.rwp-footer {
  padding: 56px 72px 32px;
  background: var(--rwp-ink);
  color: rgba(255, 255, 255, 0.7);
}
.rwp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.rwp-footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 260px;
}
.rwp-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.rwp-socials a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.rwp-footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 14px;
}
.rwp-footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}
.rwp-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.55;
}

/* =============== Responsive: stack under 1100px =============== */
@media (max-width: 1100px) {
  .rwp-announce,
  .rwp-nav,
  .rwp-hero,
  .rwp-logos,
  .rwp-features,
  .rwp-testimonials,
  .rwp-cta,
  .rwp-footer { padding-left: 32px; padding-right: 32px; }
  .rwp-hero-inner,
  .rwp-cta,
  .rwp-feature-grid,
  .rwp-testimonial-grid,
  .rwp-footer-grid,
  .rwp-also,
  .rwp-also-grid,
  .rwp-logos-row { grid-template-columns: 1fr 1fr; }
  .rwp-nav-links { display: none; }
  .rwp-h1 { font-size: 44px; }
  .rwp-h2 { font-size: 36px; }
  .rwp-cta-title { font-size: 40px; }
}
@media (max-width: 640px) {
  .rwp-hero-inner,
  .rwp-feature-grid,
  .rwp-testimonial-grid,
  .rwp-footer-grid,
  .rwp-also,
  .rwp-also-grid,
  .rwp-logos-row,
  .rwp-hero-metrics,
  .rwp-hero-ctas,
  .rwp-hero-checks,
  .rwp-cta { grid-template-columns: 1fr; display: block; }
  .rwp-hero-ctas, .rwp-hero-checks, .rwp-hero-metrics { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .rwp-hero-metrics { grid-template-columns: repeat(3, 1fr); }
  .rwp-h1 { font-size: 36px; }
  .rwp-h2 { font-size: 28px; }
  .rwp-cta-title { font-size: 32px; }
  .rwp-float-card { left: 0; right: 0; }
  .rwp-chat-body { grid-template-columns: 1fr; }
  .rwp-chat-side { display: none; }
}
