* {
  box-sizing: border-box;
}

:root {
  --navy: #17375e;
  --navy-dark: #0f2845;
  --green: #2f5d50;
  --green-dark: #23483e;
  --cream: #f7f5f0;
  --gold: #c8a45a;
  --ink: #1f2933;
  --muted: #66727f;
  --white: #ffffff;
  --line: #dce2e7;
  --shadow: 0 18px 50px rgba(15, 40, 69, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 55, 94, 0.08);
  backdrop-filter: blur(12px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: "Merriweather", serif;
  font-size: 22px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-family: "Merriweather", serif;
  font-size: 18px;
}

.brand small {
  margin-top: -3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--green);
}

.main-nav .nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 164, 90, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 62%, var(--green-dark));
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  align-items: center;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #d8e7e2;
}

.hero h1,
.section-heading h2,
.proposal-grid h2,
.story-copy h2,
.join-grid h2 {
  margin: 0;
  font-family: "Merriweather", serif;
  line-height: 1.15;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 76px);
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 30px;
  color: rgba(255,255,255,0.85);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--navy-dark);
  background: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-note span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-panel-inner {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}

.panel-kicker {
  margin: 0 0 12px;
  color: #d8e7e2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0 0 18px;
  font-family: "Merriweather", serif;
  font-size: 29px;
  line-height: 1.3;
}

.hero-panel p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--navy-dark);
}

.section-accent {
  background: #e8f0ed;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.proposal-grid h2,
.story-copy h2,
.join-grid h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.issue-grid,
.pillar-grid,
.funding-grid {
  display: grid;
  gap: 22px;
}

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

.issue-card,
.pillar-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.issue-card {
  box-shadow: var(--shadow);
}

.issue-number {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.issue-card h3,
.pillar-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-family: "Merriweather", serif;
  font-size: 22px;
}

.issue-card p,
.pillar-card p {
  margin: 0;
  color: var(--muted);
}

.proposal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.proposal-grid h2 {
  color: var(--white);
}

.proposal-copy {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
}

.proposal-list {
  border-top: 1px solid rgba(255,255,255,0.14);
}

.proposal-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.proposal-item strong {
  color: #d8e7e2;
}

.proposal-item span {
  color: rgba(255,255,255,0.72);
}

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

.pillar-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.photo-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(23,55,94,0.28);
  border-radius: 18px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.4)),
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(23,55,94,0.04) 18px, rgba(23,55,94,0.04) 36px);
  font-weight: 700;
}

.story-copy p {
  color: #42505c;
  font-size: 18px;
}

.story-copy blockquote {
  margin: 30px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-family: "Merriweather", serif;
  font-size: 25px;
}

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

.funding-grid div {
  padding: 24px;
  border-left: 4px solid var(--green);
  background: var(--cream);
}

.funding-grid strong,
.funding-grid span {
  display: block;
}

.funding-grid strong {
  color: var(--navy);
  font-family: "Merriweather", serif;
  font-size: 18px;
}

.funding-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.join-section {
  color: var(--white);
  background: var(--green-dark);
}

.join-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.join-grid h2 {
  color: var(--white);
}

.join-grid > div > p:last-child {
  color: rgba(255,255,255,0.76);
  font-size: 18px;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.signup-form label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.signup-form label span {
  color: var(--muted);
  font-weight: 500;
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.signup-form input:focus,
.signup-form textarea:focus {
  outline: 3px solid rgba(47,93,80,0.15);
  border-color: var(--green);
}

.light-button {
  color: var(--white);
  background: var(--navy);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255,255,255,0.72);
  background: #0a1b2d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255,255,255,0.52);
}

.footer-grid p {
  max-width: 360px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-contact strong {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .proposal-grid,
  .story-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-panel {
    align-self: auto;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 74px 0;
  }

  .hero-grid {
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .issue-grid,
  .pillar-grid,
  .funding-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proposal-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .photo-placeholder {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* Version 2 image-led homepage */
.hero-photo {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("images/pearl-hero.jpeg");
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-photo::after {
  display: none;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 27, 45, 0.92) 0%, rgba(15, 40, 69, 0.80) 42%, rgba(15, 40, 69, 0.30) 72%, rgba(15, 40, 69, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 27, 45, 0.45), transparent 45%);
}

.hero-photo-grid {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero-photo .hero-copy {
  max-width: 720px;
}

.hero-photo h1 {
  font-size: clamp(48px, 6vw, 78px);
}

.story-section {
  color: var(--white);
  background: #101820;
}

.story-heading h2 {
  color: var(--white);
}

.story-heading p:last-child {
  color: rgba(255,255,255,0.72);
}

.before-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 42px;
}

.before-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #17212a;
  box-shadow: 0 18px 55px rgba(0,0,0,0.32);
}

.before-card img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
}

.story-copy-wide {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.story-copy-wide p {
  color: rgba(255,255,255,0.76);
}

.story-copy-wide blockquote {
  margin: 34px auto 0;
  max-width: 700px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
}

@media (max-width: 960px) {
  .hero-photo {
    min-height: 700px;
    background-position: 58% center;
  }

  .hero-photo-overlay {
    background: linear-gradient(90deg, rgba(10,27,45,0.90) 0%, rgba(15,40,69,0.72) 58%, rgba(15,40,69,0.28) 100%);
  }

  .before-card img {
    height: 430px;
  }
}

@media (max-width: 640px) {
  .hero-photo {
    min-height: 760px;
    align-items: flex-end;
    background-position: 58% center;
  }

  .hero-photo-overlay {
    background:
      linear-gradient(0deg, rgba(10,27,45,0.96) 0%, rgba(15,40,69,0.82) 48%, rgba(15,40,69,0.20) 100%);
  }

  .hero-photo-grid {
    padding-top: 250px;
    padding-bottom: 56px;
  }

  .hero-photo h1 {
    font-size: 44px;
  }

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

  .before-card img {
    height: auto;
    max-height: 560px;
    object-position: center top;
  }
}


/* Version 3 split hero */
.hero-split {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(200, 164, 90, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfcfd 0%, #f4f7f8 100%);
}

.hero-split::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(23,55,94,0.08);
  border-radius: 50%;
}

.hero-split-grid {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding-top: 84px;
  padding-bottom: 84px;
}

.hero-split .hero-copy {
  max-width: 700px;
}

.hero-split h1 {
  color: var(--navy);
  font-size: clamp(48px, 6vw, 76px);
}

.hero-split .hero-lead {
  color: var(--muted);
}

.hero-split .eyebrow {
  color: var(--green);
}

.hero-split .button.primary {
  color: var(--white);
  background: var(--navy);
}

.hero-split .button.secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.hero-split .hero-note span {
  border-color: rgba(23,55,94,0.14);
  color: var(--navy);
  background: rgba(255,255,255,0.72);
}

.hero-portrait-wrap {
  position: relative;
}

.hero-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  border-radius: 24px;
  background: var(--green);
  opacity: 0.12;
}

.hero-portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 10px solid var(--white);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(15,40,69,0.20);
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 46%;
}

.hero-caption {
  position: relative;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 960px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 70px;
  }

  .hero-portrait-wrap {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-portrait-frame {
    aspect-ratio: 5 / 4;
  }

  .hero-portrait-frame img {
    object-position: 50% 42%;
  }
}

@media (max-width: 640px) {
  .hero-split-grid {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .hero-split h1 {
    font-size: 44px;
  }

  .hero-portrait-frame {
    aspect-ratio: 4 / 5;
    border-width: 7px;
    border-radius: 18px;
  }
}

.impact-banner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 14px;
  color: var(--white);
  background: var(--green);
}
.impact-banner strong { font-family: "Merriweather", serif; font-size: 21px; }
.impact-banner span { color: rgba(255,255,255,.82); }
.check-row {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink) !important;
  font-weight: 500 !important;
  line-height: 1.45;
}
.check-row input { width: 18px; height: 18px; margin: 3px 0 0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-note { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-note { min-height: 22px; margin: 0; font-size: 13px; font-weight: 700; }
.form-note.success { color: #1f6b4f; }
.form-note.error { color: #a12626; }
#submit-button:disabled { cursor: wait; opacity: .68; }

@media (max-width: 640px) {
  body { overflow-x: hidden; }
  .nav-wrap { min-height: 68px; }
  .brand strong { font-size: 16px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-split-grid { display: flex; flex-direction: column; gap: 30px; padding-top: 36px; padding-bottom: 52px; }
  .hero-split h1 { font-size: 40px; line-height: 1.08; }
  .hero-lead { margin-top: 20px; font-size: 17px; }
  .hero-note { gap: 8px; }
  .hero-note span { font-size: 11px; }
  .section-heading h2, .proposal-grid h2, .story-copy h2, .join-grid h2 { font-size: 36px; line-height: 1.14; }
  .section-heading p:last-child, .proposal-copy, .join-grid > div > p:last-child { font-size: 16px; }
  .issue-card, .pillar-card { padding: 22px; }
  .impact-banner { grid-template-columns: 1fr; padding: 22px; }
  .proposal-grid, .story-grid, .join-grid { gap: 38px; }
  .signup-form { padding: 22px; }
  .signup-form input, .signup-form textarea { font-size: 16px; }
}

/* Final content and layout revisions */
.numbers-section {
  background: #f7f5f0;
}

.numbers-heading {
  max-width: 900px;
}

.estimate-disclaimer {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  color: var(--navy) !important;
  background: rgba(255,255,255,.65);
  font-size: 15px !important;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.number-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.number-card .big-number {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Merriweather", serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.number-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Merriweather", serif;
  font-size: 22px;
}

.number-card p {
  color: var(--muted);
}

.estimate-label {
  margin: 0 0 14px;
  color: var(--green) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.emphasis-card {
  color: var(--white);
  background: var(--navy);
}

.emphasis-card .big-number,
.emphasis-card h3 {
  color: var(--white);
}

.emphasis-card p {
  color: rgba(255,255,255,.78);
}

.emphasis-card .estimate-label {
  color: #d8e7e2 !important;
}

.emphasis-card strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 18px;
}

.prevention-close {
  max-width: 900px;
  margin: 44px auto 0;
  padding: 34px;
  border-radius: 16px;
  text-align: center;
  color: var(--white);
  background: var(--green);
}

.prevention-close .eyebrow {
  color: #d8e7e2;
}

.prevention-close h3 {
  margin: 0 0 12px;
  font-family: "Merriweather", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.prevention-close p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,.82);
  font-size: 17px;
}

.proposal-heading {
  max-width: 900px;
}

.proposal-heading h2 {
  color: var(--white);
}

.proposal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.proposal-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.proposal-card h3 {
  margin: 0 0 10px;
  color: #d8e7e2;
  font-family: "Merriweather", serif;
  font-size: 21px;
}

.proposal-card p {
  margin: 0;
  color: rgba(255,255,255,.74);
}

.join-heading {
  max-width: 850px;
}

.join-heading h2 {
  color: var(--white);
}

.join-heading p:last-child {
  color: rgba(255,255,255,.78);
}

.google-form-wrap {
  overflow: hidden;
  max-width: 860px;
  margin: 36px auto 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.google-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 1363px;
  border: 0;
}

@media (max-width: 760px) {
  .numbers-grid,
  .proposal-card-grid {
    grid-template-columns: 1fr;
  }

  .number-card,
  .proposal-card {
    padding: 22px;
  }

  .google-form-wrap {
    margin-right: -4px;
    margin-left: -4px;
    border-radius: 12px;
  }

  .google-form-wrap iframe {
    min-height: 1500px;
  }
}
