:root {
  --radius: 1rem;
  --navy: #032757;
  --navy-deep: #011b3c;
  --navy-bar: #123f6d;
  --orange: #a9762f;
  --orange-light: #c08f42;
  --orange-band: #8b5f23;
  --skyblue: #eff4fa;
  --slateblue: #eef2f7;
  --mint: #f8f3ea;
  --green: #8b5f23;
  --green-band: #032757;
  --body-text: #3a3f47;
  --cream: #fbf7f0;
  --border: #e6e9ee;
  --white: #ffffff;
  --font-display: "Figtree", "Inter", sans-serif;
  --font-sans: "Inter", sans-serif;
  --font-hand: "Gochi Hand", "Caveat", cursive;
  --max: 1180px;
  --max-wide: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ipp-wrap {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: var(--white);
}

.ipp-main {
  flex: 1;
}

.hand {
  font-family: var(--font-hand);
  font-weight: 400;
}

.phone-pill {
  border: 1.5px dashed var(--navy-bar);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  display: inline-block;
}

.dotted-rule {
  flex: 1;
  height: 3px;
  background-image: radial-gradient(currentColor 1.4px, transparent 1.5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  opacity: 0.75;
}

.soft-card {
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px -18px rgba(3, 39, 87, 0.28);
}

.ipp-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ipp-container-wide {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .ipp-container-wide {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.ipp-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.ipp-icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.ipp-icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Buttons */
.ipp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 28px -14px rgba(169, 118, 47, 0.85);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.ipp-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.ipp-btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.ipp-btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.ipp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 2px solid var(--orange);
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.ipp-btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* Header */
.ipp-header {
  position: relative;
  z-index: 50;
}

.ipp-topbar {
  background: var(--navy-bar);
  color: var(--white);
}

.ipp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
}

.ipp-topbar-inner .hand {
  font-size: 1.05rem;
}

.ipp-topbar-phone {
  border-radius: 0.375rem;
  background: var(--white);
  color: var(--navy-bar);
  padding: 0.125rem 0.75rem;
  font-size: 1.05rem;
  transition: background 0.15s ease;
}

.ipp-topbar-phone:hover {
  background: rgba(255, 255, 255, 0.9);
}

.ipp-nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 6px 20px -18px rgba(3, 39, 87, 0.6);
}

.ipp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 1024px) {
  .ipp-nav-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.ipp-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ipp-logo img {
  height: 2.75rem;
  width: auto;
  flex-shrink: 0;
}

.ipp-logo-text {
  border-left: 1px solid rgba(3, 39, 87, 0.3);
  padding-left: 0.75rem;
}

.ipp-logo-text.is-white {
  border-left-color: rgba(255, 255, 255, 0.4);
}

.ipp-logo-line1 {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy-deep);
}

.ipp-logo-line2 {
  display: block;
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.ipp-logo-text.is-white .ipp-logo-line1,
.ipp-logo-text.is-white .ipp-logo-line2 {
  color: var(--white);
}

.ipp-logo-text.is-white .ipp-logo-line2 {
  color: rgba(255, 255, 255, 0.8);
}

.ipp-desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.ipp-nav-actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .ipp-desktop-nav,
  .ipp-nav-actions {
    display: flex;
  }
}

.ipp-nav-link,
.ipp-drop-toggle {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}

.ipp-nav-link:hover,
.ipp-drop-toggle:hover {
  color: var(--orange);
}

.ipp-drop {
  position: relative;
}

.ipp-drop-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ipp-drop-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.15s ease;
}

.ipp-drop.is-open .ipp-drop-toggle svg {
  transform: rotate(180deg);
}

.ipp-drop-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 320px;
  transform: translateX(-50%);
  padding-top: 1rem;
  z-index: 40;
}

.ipp-drop.is-open .ipp-drop-menu,
.ipp-drop:hover .ipp-drop-menu {
  display: block;
}

.ipp-drop-menu ul {
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0.5rem 0;
}

.ipp-drop-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}

.ipp-drop-menu a:hover {
  background: var(--skyblue);
  color: var(--orange);
}

.ipp-call-block {
  text-align: center;
  line-height: 1.25;
}

.ipp-call-block span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.ipp-call-block a {
  font-size: 1.15rem;
  color: var(--navy-bar);
}

.ipp-call-block a:hover {
  color: var(--orange);
}

.ipp-menu-toggle {
  border-radius: 0.375rem;
  padding: 0.5rem;
  color: var(--navy);
  background: none;
  border: 0;
  cursor: pointer;
}

.ipp-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 1024px) {
  .ipp-menu-toggle {
    display: none;
  }
}

.ipp-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 1rem 1.25rem 1.5rem;
}

.ipp-mobile.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .ipp-mobile {
    display: none !important;
  }
}

.ipp-mobile-label {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.ipp-mobile-list {
  list-style: none;
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.ipp-mobile-list a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.ipp-mobile-primary {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.ipp-mobile-primary a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

/* Call card */
.ipp-call-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 2.5rem;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 20px 45px -25px rgba(3, 39, 87, 0.45);
}

@media (min-width: 640px) {
  .ipp-call-card {
    flex-direction: row;
    gap: 1.5rem;
    padding-left: 2rem;
  }
}

.ipp-call-card-copy {
  text-align: center;
}

@media (min-width: 640px) {
  .ipp-call-card-copy {
    text-align: left;
  }
}

.ipp-call-card-copy .hand {
  display: block;
  font-size: 1.15rem;
  color: var(--navy-bar);
}

.ipp-call-card-copy a {
  margin-top: 0.25rem;
  font-size: 1.3rem;
  color: var(--navy-bar);
}

.ipp-call-card-copy a:hover {
  color: var(--orange);
}

/* Eyebrows */
.ipp-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ipp-eyebrow.is-orange {
  color: var(--orange);
}

.ipp-eyebrow.is-blue,
.ipp-eyebrow.is-green {
  color: var(--navy-bar);
}

.ipp-eyebrow.is-green {
  color: var(--green);
}

.ipp-eyebrow .hand {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
}

.ipp-small-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.ipp-small-eyebrow.is-green {
  color: var(--green);
}

.ipp-small-eyebrow.is-orange {
  color: var(--orange);
}

/* Page heroes */
.ipp-page-hero {
  border-bottom-left-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  background: var(--navy);
  padding: 5rem 1.5rem;
  text-align: center;
}

.ipp-page-hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--white);
}

.ipp-page-hero p {
  margin: 1.5rem auto 0;
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.85);
}

.ipp-page-hero .hand {
  font-size: 1.3rem;
  color: var(--orange);
}

@media (min-width: 768px) {
  .ipp-page-hero h1 {
    font-size: 3.4rem;
  }
}

.ipp-page-hero.is-home {
  position: relative;
  overflow: hidden;
  padding: 7rem 1.5rem;
}

.ipp-page-hero.is-home video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ipp-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 39, 87, 0.65);
}

.ipp-page-hero-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.ipp-page-hero.is-home h1 {
  font-size: 2.5rem;
  line-height: 1.08;
}

.ipp-page-hero.is-home p {
  max-width: 680px;
  font-size: 1.1rem;
}

.ipp-page-hero .ipp-call-card {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .ipp-page-hero.is-home {
    padding: 9rem 1.5rem;
  }

  .ipp-page-hero.is-home h1 {
    font-size: 4rem;
  }

  .ipp-page-hero.is-home p {
    font-size: 1.2rem;
  }
}

/* Situations grid */
.ipp-situations {
  background: var(--skyblue);
  padding: 5rem 0 2rem;
}

.ipp-situations h2,
.ipp-section-heading {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 2.3rem;
  line-height: 1.12;
}

@media (min-width: 768px) {
  .ipp-situations h2,
  .ipp-section-heading {
    font-size: 2.9rem;
  }
}

.ipp-situations-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ipp-situations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ipp-situations-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.ipp-sit-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1rem;
  transition: transform 0.15s ease;
}

.ipp-sit-card:hover {
  transform: translateY(-4px);
}

.ipp-sit-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

.ipp-sit-card h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 700;
  color: var(--navy-deep);
}

.ipp-sit-card:hover h3 {
  color: var(--orange);
}

.ipp-sit-card p {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-sit-card span {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

/* Trust */
.ipp-trust {
  background: var(--skyblue);
  padding: 1rem 0 6rem;
}

.ipp-trust-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .ipp-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ipp-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ipp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}

.ipp-trust-num {
  margin-top: 0.125rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(3, 39, 87, 0.05);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
}

.ipp-trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.ipp-trust-item p {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.625;
  color: var(--body-text);
}

/* Guidance */
.ipp-guidance {
  position: relative;
  overflow: hidden;
  background: var(--skyblue);
  padding: 2rem 0 0;
}

.ipp-clouds {
  pointer-events: none;
  position: absolute;
  inset: 5rem 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  opacity: 0.9;
}

.ipp-clouds img:nth-child(1) {
  width: 10rem;
}

.ipp-clouds img:nth-child(2) {
  margin-top: 2.5rem;
  width: 8rem;
}

.ipp-clouds img:nth-child(3) {
  width: 9rem;
}

@media (min-width: 768px) {
  .ipp-clouds img:nth-child(1) {
    width: 14rem;
  }
  .ipp-clouds img:nth-child(2) {
    width: 11rem;
  }
  .ipp-clouds img:nth-child(3) {
    width: 13rem;
  }
}

.ipp-guidance-copy {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.ipp-guidance-copy h2 {
  font-size: 2.4rem;
  line-height: 1.1;
}

.ipp-guidance-copy p {
  margin: 1.5rem auto 0;
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.625;
  color: rgba(3, 39, 87, 0.8);
}

@media (min-width: 768px) {
  .ipp-guidance-copy h2 {
    font-size: 3.1rem;
  }
}

.ipp-guidance-houses {
  position: relative;
  margin: 2.5rem auto -0.5rem;
  width: 100%;
  max-width: 760px;
  padding: 0 1.5rem;
}

/* Marquee */
.ipp-marquee {
  position: relative;
  overflow: hidden;
  background: var(--green-band);
  padding: 1rem 0;
}

.ipp-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.ipp-marquee-item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
  font-size: 1.3rem;
  color: var(--white);
}

.ipp-marquee-check {
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--white);
  font-size: 0.7rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Process */
.ipp-process {
  background: var(--white);
  padding: 6rem 0;
}

.ipp-process h2 {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 2.3rem;
  line-height: 1.12;
}

.ipp-process-lead {
  margin: 1.5rem auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-process .ipp-eyebrow {
  margin-top: 3.5rem;
}

.ipp-process-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .ipp-process h2 {
    font-size: 2.9rem;
  }

  .ipp-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ipp-process-card {
  border-radius: 1.25rem;
  background: #fef6f1;
  padding: 1.75rem;
}

.ipp-process-card .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}

.ipp-process-card h3 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.ipp-process-card p {
  margin-top: 0.5rem;
  font-size: 0.97rem;
  line-height: 1.625;
  color: var(--body-text);
}

/* Testimonials */
.ipp-testimonials {
  background: var(--slateblue);
  padding: 6rem 0;
}

.ipp-testimonials h2 {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 2.3rem;
  line-height: 1.12;
}

.ipp-testimonials-lead {
  margin: 1.5rem auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-t-row {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ipp-t-nav {
  display: none;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.ipp-t-nav:hover {
  transform: scale(1.05);
}

.ipp-t-nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .ipp-testimonials h2 {
    font-size: 2.9rem;
  }

  .ipp-t-nav {
    display: flex;
  }
}

.ipp-t-grid {
  display: grid;
  flex: 1;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ipp-t-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ipp-t-grid.is-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
}

.ipp-t-card {
  position: relative;
  margin-top: 2rem;
  border-radius: 1.5rem;
  background: var(--white);
  padding: 3.5rem 1.75rem 2rem;
  text-align: center;
  box-shadow: 0 18px 40px -28px rgba(3, 39, 87, 0.5);
}

.ipp-t-card img {
  position: absolute;
  top: -2rem;
  left: 50%;
  height: 4rem;
  width: 4rem;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 4px solid var(--white);
  object-fit: cover;
}

.ipp-t-card .quote-icon {
  margin: 0 auto 1rem;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--orange);
}

.ipp-t-card blockquote {
  margin: 0;
  white-space: pre-line;
  font-size: 0.98rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-t-card figcaption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.ipp-t-mobile-nav {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .ipp-t-mobile-nav {
    display: none;
  }
}

.ipp-t-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Resources */
.ipp-resources {
  background: var(--white);
  padding: 2rem 0 6rem;
}

.ipp-resources.is-index {
  padding: 5rem 0;
}

.ipp-resources h2.ipp-section-heading {
  margin-top: 1.25rem;
}

.ipp-resources-lead {
  margin: 1.5rem auto 0;
  max-width: 660px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-resources-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ipp-resources-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ipp-res-card {
  overflow: hidden;
  padding: 1.25rem;
}

.ipp-res-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

.ipp-res-card h3,
.ipp-res-card h2 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.375;
  font-weight: 700;
}

.ipp-res-card h3 a:hover,
.ipp-res-card h2 a:hover {
  color: var(--orange);
}

.ipp-res-date {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
}

.ipp-res-card p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-res-card .line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ipp-resources-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Disclaimer */
.ipp-disclaimer {
  position: relative;
  background: var(--orange-band);
  color: var(--white);
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.ipp-disclaimer-icon {
  position: absolute;
  top: -2rem;
  left: 50%;
  display: flex;
  height: 4rem;
  width: 4rem;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 4px solid var(--white);
  background: var(--orange-band);
  color: var(--white);
}

.ipp-disclaimer-copy {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ipp-disclaimer-copy p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.625;
  font-weight: 700;
  color: var(--white);
}

.ipp-disclaimer-copy p + p {
  margin-top: 1.25rem;
}

/* Get started */
.ipp-started {
  overflow: hidden;
  background: var(--mint);
  padding: 5rem 0 0;
  text-align: center;
}

.ipp-started h2 {
  margin-top: 1.25rem;
  font-size: 2.3rem;
  line-height: 1.12;
}

.ipp-started-lead {
  margin: 1.5rem auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-started .ipp-call-card {
  margin-top: 2.5rem;
}

.ipp-started-house {
  margin: 3rem auto 0;
  width: 100%;
  max-width: 560px;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .ipp-started h2 {
    font-size: 2.9rem;
  }
}

/* About two col */
.ipp-about-split {
  background: var(--white);
  padding: 5rem 0;
}

.ipp-about-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .ipp-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ipp-about-grid h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.ipp-about-grid p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-about-grid p + p {
  margin-top: 1rem;
}

/* Situation single */
.ipp-sit-intro {
  background: var(--skyblue);
  padding: 5rem 0;
}

.ipp-sit-intro-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .ipp-sit-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ipp-sit-intro h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.ipp-sit-intro p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-sit-intro img {
  margin-top: 2rem;
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .ipp-sit-intro h2 {
    font-size: 2.5rem;
  }
}

.ipp-timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
  border-left: 2px dashed rgba(169, 118, 47, 0.4);
  padding-left: 2rem;
  list-style: none;
}

.ipp-timeline li {
  position: relative;
}

.ipp-timeline-num {
  position: absolute;
  left: -2.85rem;
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.ipp-timeline .soft-card {
  padding: 1.25rem 1.5rem;
}

.ipp-timeline h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.ipp-timeline p {
  margin-top: 0.375rem;
  font-size: 0.95rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-options-band {
  background: var(--skyblue);
  padding-bottom: 1rem;
}

/* Legal / article */
.ipp-legal {
  background: var(--white);
  padding: 4rem 0;
}

.ipp-legal-inner,
.ipp-article-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ipp-legal-inner {
  font-size: 1.02rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-legal-inner h2 {
  padding-top: 1rem;
  font-size: 1.4rem;
}

.ipp-legal-inner p + h2,
.ipp-legal-inner p + p {
  margin-top: 1.25rem;
}

.ipp-article {
  background: var(--white);
  padding: 4rem 0;
}

.ipp-article-inner img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}

.ipp-article-body {
  margin-top: 2.5rem;
}

.ipp-article-body h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.375;
}

.ipp-article-body p,
.ipp-article-body ul {
  margin-top: 1.25rem;
  font-size: 1.03rem;
  line-height: 1.625;
  color: var(--body-text);
}

.ipp-article-body ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.25rem;
}

.ipp-article-body li {
  list-style: disc;
}

.ipp-back-link {
  display: inline-block;
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.ipp-article-date {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.ipp-article-hero h1 {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .ipp-article-hero h1 {
    font-size: 3rem;
  }
}

/* Form */
.ipp-form-section {
  background: var(--skyblue);
  padding: 5rem 0;
}

.ipp-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ipp-form-card {
  margin-top: 2rem;
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .ipp-form-card {
    padding: 2.5rem;
  }
}

.ipp-form {
  display: grid;
  gap: 1.25rem;
}

.ipp-form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ipp-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ipp-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.ipp-form input,
.ipp-form select,
.ipp-form textarea {
  margin-top: 0.375rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.98rem;
  color: var(--navy-deep);
  outline: none;
  transition: border-color 0.15s ease;
}

.ipp-form input:focus,
.ipp-form select:focus,
.ipp-form textarea:focus {
  border-color: var(--orange);
}

.ipp-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(58, 63, 71, 0.7);
}

.ipp-form-success {
  padding: 2.5rem 0;
  text-align: center;
}

.ipp-form-success svg {
  margin: 0 auto;
  width: 3rem;
  height: 3rem;
  color: var(--green);
}

.ipp-form-success h2 {
  margin-top: 1.25rem;
  font-size: 1.6rem;
}

.ipp-form-success p {
  margin-top: 0.75rem;
  font-size: 1.02rem;
  color: var(--body-text);
}

.ipp-form-error {
  color: #b42318;
  font-size: 0.9rem;
}

.ipp-hero-phone {
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: underline;
}

/* Footer */
.ipp-footer {
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  background: var(--navy);
  padding: 4rem 0 2rem;
  color: var(--white);
}

.ipp-footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .ipp-footer-grid {
    grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  }
}

.ipp-footer-about p,
.ipp-footer address {
  margin-top: 1.5rem;
  max-width: 20rem;
  font-size: 0.95rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
}

.ipp-footer address {
  margin-top: 1.25rem;
}

.ipp-footer address a:hover {
  color: var(--orange);
}

.ipp-socials {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ipp-socials a {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.15s ease;
}

.ipp-socials a:hover {
  background: var(--orange);
}

.ipp-socials svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ipp-footer h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.ipp-footer ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
}

.ipp-footer ul a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}

.ipp-footer ul a:hover {
  color: var(--orange);
}

.ipp-copyright {
  margin: 3.5rem auto 0;
  max-width: var(--max-wide);
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1024px) {
  .ipp-copyright {
    padding: 0 2rem;
  }
}

/* 404 */
.ipp-404 {
  display: flex;
  min-height: 60vh;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  text-align: center;
}

.ipp-404 h1 {
  font-size: 4.5rem;
}

.ipp-404 h2 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.ipp-404 p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--body-text);
}

.ipp-404 .ipp-btn {
  margin-top: 1.5rem;
}

.admin-bar .ipp-nav-bar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .ipp-nav-bar {
    top: 46px;
  }
}
.ipp-request-hero p a {
  color: var(--white);
}
