:root {
  --navy: #08224a;
  --blue: #1d5fd0;
  --blue-dark: #123d86;
  --green: #33a047;
  --green-dark: #167233;
  --yellow: #f2b72c;
  --red: #d71920;
  --ink: #14213d;
  --muted: #637083;
  --line: #dfe6ef;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --soft-green: #edf7f0;
  --shadow: 0 18px 50px rgba(8, 34, 74, 0.13);
  --code: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Fira Sans", system-ui, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(29, 95, 208, 0.22);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(8, 34, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 214px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.78;
}

.nav a:hover {
  opacity: 1;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(51, 160, 71, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  padding: 112px 0 56px;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 95, 208, 0.13), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(51, 160, 71, 0.15), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 52%, #f4fbf3 100%);
}

.hero-pattern,
.hero-gridline {
  position: absolute;
  inset: 0;
}

.hero-pattern {
  background-image:
    linear-gradient(rgba(29, 95, 208, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 95, 208, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}

.hero-gridline {
  background:
    linear-gradient(130deg, transparent 0 18%, rgba(29, 95, 208, 0.16) 18.1%, transparent 18.5% 42%, rgba(51, 160, 71, 0.16) 42.1%, transparent 42.5%),
    linear-gradient(28deg, transparent 0 58%, rgba(242, 183, 44, 0.18) 58.1%, transparent 58.5%);
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(51, 160, 71, 0.22);
  border-radius: 999px;
  background: rgba(237, 247, 240, 0.86);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
.impact-slide h2 {
  width: min(760px, 100%);
  margin: 0;
  font-size: 3.72rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.impact-carousel {
  position: relative;
  min-height: 304px;
}

.carousel-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--code);
  font-size: 0.82rem;
  font-weight: 700;
}

.carousel-meta span:first-child {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.impact-track {
  display: grid;
  align-items: start;
}

.impact-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
  visibility: hidden;
}

.impact-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.text-blue {
  color: var(--blue);
}

.text-green {
  color: var(--green);
}

.text-yellow {
  color: var(--yellow);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
}

.carousel-controls button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease;
}

.carousel-controls button span {
  display: block;
  width: 30px;
  height: 7px;
  border-radius: 999px;
  background: #c7d4e5;
  transition: width 220ms ease, background 220ms ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  background: rgba(29, 95, 208, 0.08);
}

.carousel-controls button.is-active span {
  width: 38px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.hero-subtitle {
  width: min(680px, 100%);
  margin: 20px 0 0;
  color: #44546a;
  font-size: 1.12rem;
  line-height: 1.58;
}

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

.button {
  min-width: 210px;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(29, 95, 208, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(29, 95, 208, 0.14);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
  justify-self: end;
  width: min(100%, 400px);
}

.visual-caption {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin: 0 0 12px;
  padding: 0 13px;
  border: 1px solid rgba(8, 34, 74, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(8, 34, 74, 0.08);
  font-family: var(--code);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-caption span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(51, 160, 71, 0.16);
}

.platform-window {
  overflow: hidden;
  border: 1px solid rgba(29, 95, 208, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(8, 34, 74, 0.16);
}

.window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.window-bar span:nth-child(2) {
  background: var(--yellow);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.platform-shell {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 320px;
}

.platform-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: var(--navy);
}

.platform-sidebar img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  padding: 7px;
  border-radius: 8px;
  background: #fff;
}

.platform-sidebar span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.23);
}

.platform-sidebar span:nth-of-type(1) {
  width: 86%;
  margin-top: 14px;
}

.platform-sidebar span:nth-of-type(2) {
  width: 72%;
}

.platform-sidebar span:nth-of-type(3) {
  width: 62%;
}

.platform-main {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.platform-title p {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-title strong {
  display: block;
  color: var(--navy);
  font-size: 1.34rem;
  line-height: 1.15;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-row div,
.chart-panel,
.status-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric-row div {
  padding: 13px;
}

.metric-row span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--code);
  font-size: 1.3rem;
  line-height: 1;
}

.chart-panel {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 128px;
  padding: 18px;
  background:
    linear-gradient(rgba(223, 230, 239, 0.65) 1px, transparent 1px),
    #fff;
  background-size: 100% 34px;
}

.chart-panel span {
  flex: 1;
  min-width: 14px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.status-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.status-row span {
  position: relative;
  padding: 12px 12px 12px 32px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-row span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.hero-badge {
  position: absolute;
  right: 28px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 34, 74, 0.16);
}

.hero-badge img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  object-position: top center;
}

.hero-badge span {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.contact-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-layout > div > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-section {
  background: var(--soft);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 74, 0.08);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  font-weight: 800;
}

.card:nth-child(2) .card-icon {
    background: var(--green);
}

.card:nth-child(3) .card-icon {
    background: var(--yellow);
}

.card h3,
.feature h3,
.benefit h3,
.timeline h3,
.contact-form h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.25;
}

.card p,
.feature p,
.benefit p,
.timeline p,
.contact-notes p,
.check-list p,
.form-note {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
  padding: 24px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-mark {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  background: var(--yellow);
}

.benefits-section {
  background: linear-gradient(180deg, #fff 0%, #f3f8ff 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit {
  min-height: 210px;
  padding: 26px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 16px 32px rgba(8, 34, 74, 0.14);
}

.benefit:nth-child(2) {
  background: var(--blue-dark);
}

.benefit:nth-child(3) {
  background: var(--green-dark);
}

.benefit:nth-child(4) {
  background: #294466;
}

.benefit h3 {
  color: #fff;
}

.benefit p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(29, 95, 208, 0.08), rgba(51, 160, 71, 0.12)),
    #fff;
}

.ifro-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ifro-panel img {
  width: min(320px, 100%);
  margin: 0 auto 22px;
}

.ifro-panel p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.check-list p {
  padding: 18px 18px 18px 22px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.funding-section {
  background: var(--soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  position: relative;
  min-height: 220px;
  padding: 30px 26px 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 34, 74, 0.08);
}

.timeline span {
  display: block;
  width: 56px;
  height: 6px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow));
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.contact-notes {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-notes p {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.footer-ifro {
  width: min(420px, 100%);
  margin-top: 36px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(29, 95, 208, 0.14);
}

.contact-form button {
  width: 100%;
  margin-top: 4px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  font-size: 1rem;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-state="info"] {
  color: var(--blue-dark);
  background: #eaf2ff;
}

.form-status[data-state="success"] {
  color: var(--green-dark);
  background: #eaf8ef;
}

.form-status[data-state="error"] {
  color: #9f1239;
  background: #fff1f2;
}

.form-note {
  font-size: 0.86rem;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-content img {
  width: 230px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
}

.footer-content p {
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    max-width: 680px;
    justify-self: start;
  }

  h1,
  .impact-slide h2 {
    font-size: 3.08rem;
  }

  .impact-carousel {
    min-height: 304px;
  }

  .grid.three,
  .benefit-grid,
  .timeline,
  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 180px;
  }
}

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

  .site-header {
    position: fixed;
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 138px;
    height: 46px;
  }

  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
    order: 4;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
    margin-left: auto;
    white-space: nowrap;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    order: initial;
    display: grid;
    width: auto;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 46px rgba(8, 34, 74, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
    font-size: 0.92rem;
    overflow: visible;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    opacity: 1;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--soft);
  }

  .hero {
    padding: 146px 0 52px;
  }

  .impact-carousel {
    min-height: 332px;
  }

  h1,
  .impact-slide h2 {
    font-size: 2.38rem;
    line-height: 1.04;
  }

  .carousel-controls {
    margin-top: 18px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-trust span {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions,
  .footer-content {
    align-items: stretch;
    flex-direction: column;
  }

  .platform-shell {
    grid-template-columns: 1fr;
  }

  .platform-sidebar {
    grid-template-columns: 110px 1fr 0.75fr 0.55fr;
    align-items: center;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-sidebar span:nth-of-type(1) {
    margin-top: 0;
  }

  .platform-main {
    padding: 18px;
  }

  .metric-row,
  .status-row {
    grid-template-columns: 1fr;
  }

  .chart-panel {
    min-height: 138px;
    gap: 8px;
    padding: 16px;
  }

  .hero-badge {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .card,
  .feature,
  .benefit,
  .ifro-panel,
  .contact-form {
    padding: 22px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-content p {
    text-align: left;
  }
}
