:root{
  --bg: #f7f8f4;
  --paper: #ffffff;
  --paper-soft: #fbfbf7;
  --ink: #16212b;
  --ink-soft: #2f3f4e;
  --muted: #61707f;
  --line: rgba(22, 33, 43, .1);
  --line-strong: rgba(22, 33, 43, .18);

  --sky: #8ae5ff;
  --sky-soft: #dff8ff;
  --gold: #ffce63;
  --gold-soft: #fff2c9;
  --coral: #c1b3ff;
  --coral-soft: #ece7ff;
  --green: #80ffbd;
  --green-soft: #dcffe9;
  --red: #e86c5d;
  --red-soft: #f8c5be;
  --navy: #1c2d3d;
  --navy-soft: #edf2f6;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 32px rgba(22, 33, 43, .08);
  --shadow-md: 0 24px 60px rgba(22, 33, 43, .12);
  --shadow-lg: 0 40px 90px rgba(22, 33, 43, .16);

  --container: min(1280px, calc(100% - 64px));
  --font-sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(138,229,255,.24), transparent 28%),
    radial-gradient(circle at top right, rgba(255,206,99,.2), transparent 22%),
    linear-gradient(180deg, #fbfcf8 0%, #f6f7f2 100%);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea{
  font: inherit;
}

.container{
  width: var(--container);
  margin: 0 auto;
}

.section{
  padding: 68px 0;
}

.section-divider{
  width: var(--container);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(22,33,43,0), rgba(22,33,43,.16), rgba(22,33,43,0));
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before{
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(22,33,43,.24);
}

.sectionTitle,
.hero__title,
.display{
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--ink);
}

.hero__title{
  font-size: clamp(32px, 4.5vw, 54px);
}

.sectionTitle{
  font-size: clamp(27px, 3.3vw, 40px);
}

.lead,
.hero__sub,
.copy{
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.muted{
  color: var(--muted);
}

.topbar{
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(22, 33, 43, .95);
  color: rgba(255,255,255,.86);
}

.topbar__inner{
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  font-size: 14px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__link{
  margin-left: auto;
  color: #fff;
  font-weight: 600;
}

.header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 248, 244, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 33, 43, .08);
}

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

.brand{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img{
  width: 188px;
  height: auto;
}

.brand__name{
  display: none;
}

.nav{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(22,33,43,.08);
}

.nav a,
.mobileMenu a{
  position: relative;
}

.nav a{
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.nav a:hover,
.nav a.is-active{
  background: rgba(22,33,43,.06);
  color: var(--ink);
}

.header__actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta{
  text-align: center;
}

.header__cta-full{
  display: inline;
}

.header__cta-short{
  display: none;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn--primary{
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  box-shadow: 0 14px 28px rgba(255, 206, 99, .38);
}

.btn--secondary{
  color: var(--ink);
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--coral) 100%);
  box-shadow: 0 14px 28px rgba(193, 179, 255, .34);
}

.btn--ghost{
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(22,33,43,.18);
}

.btn--green{
  color: var(--ink);
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--green) 100%);
  box-shadow: 0 14px 28px rgba(128, 255, 189, .3);
}

.btn--sky{
  color: var(--ink);
  background: linear-gradient(135deg, var(--sky-soft) 0%, var(--sky) 100%);
  box-shadow: 0 14px 28px rgba(138, 229, 255, .3);
}

.menuBtn{
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(22,33,43,.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,247,242,.92));
  box-shadow: 0 14px 28px rgba(22,33,43,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.menuBtn span{
  display: block;
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff2b8 0%, #e0aa1a 46%, #9d6800 100%);
  box-shadow:
    0 0 0 3px rgba(186, 132, 18, .16),
    0 0 10px rgba(224, 170, 26, .35),
    0 0 18px rgba(157, 104, 0, .18);
}

.menuBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(22,33,43,.12);
}

.menuBtn[aria-expanded="true"]{
  border-color: rgba(22,33,43,.18);
  box-shadow: 0 18px 36px rgba(255,206,99,.26);
}

.mobileMenu{
  display: none;
  border-top: 1px solid rgba(22,33,43,.08);
  background: rgba(247,248,244,.96);
}

.mobileMenu.isOpen{
  display: block;
}

.mobileMenu__inner{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0 24px;
}

.mobileMenu a{
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,255,255,.7);
}

.heroShell{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22,33,43,.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(138,229,255,.25), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255,206,99,.2), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.92));
  box-shadow: var(--shadow-md);
}

.heroShell::before,
.heroShell::after{
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.heroShell::before{
  width: 280px;
  height: 280px;
  top: -140px;
  right: -80px;
  background: rgba(138,229,255,.18);
}

.heroShell::after{
  width: 220px;
  height: 220px;
  bottom: -110px;
  left: -80px;
  background: rgba(255,206,99,.18);
}

.hero{
  padding: 22px 0 58px;
}

.hero--compact{
  padding: 2px 0 10px;
}

.hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 28px;
  align-items: center;
  padding: 38px;
}

.hero--compact .hero__grid{
  grid-template-columns: minmax(0, 1.28fr) minmax(140px, .72fr);
  gap: 10px;
  padding: 12px;
}

.hero__content{
  display: grid;
  gap: 22px;
}

.hero--compact .hero__content{
  gap: 8px;
}

.hero--compact .eyebrow{
  margin-bottom: 8px;
  font-size: 10px;
}

.hero--compact .hero__title{
  font-size: clamp(31px, 3.9vw, 44px);
  line-height: 1.02;
}

.hero--compact .hero__sub{
  font-size: 18px;
  line-height: 1.65;
}

.hero--compact .btn{
  padding: 10px 14px;
  font-size: 14px;
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__media,
.hero__card{
  border-radius: 28px;
  overflow: hidden;
}

.hero__media{
  position: relative;
  min-height: 520px;
  background: linear-gradient(180deg, rgba(22,33,43,.06), rgba(22,33,43,.02));
  min-height: 470px;
}

.hero--compact .hero__media{
  min-height: 60px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.18)),
    rgba(255,255,255,.36);
}

.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--compact .hero__media img{
  object-fit: contain;
}

.hero__media--contain{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.2)),
    rgba(255,255,255,.4);
}

.hero--compact .hero__media--contain{
  min-height: 60px;
}

.hero__media--contain img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__mediaCard{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-sm);
}

.hero__mediaCard strong{
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.highlightCard{
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-sm);
}

.highlightCard h3{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.highlightCard p{
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.card--sky{ background: linear-gradient(180deg, var(--sky-soft) 0%, var(--sky) 100%); }
.card--gold{ background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%); }
.card--coral{ background: linear-gradient(180deg, var(--coral-soft) 0%, var(--coral) 100%); }
.card--green{ background: linear-gradient(180deg, var(--green-soft) 0%, var(--green) 100%); }
.card--red{ background: linear-gradient(180deg, var(--red-soft) 0%, var(--red) 100%); }
.card--navy{ background: linear-gradient(180deg, #edf2f6 0%, #d8e3ec 100%); }

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

.metric{
  padding: 26px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-sm);
}

.metric__num{
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.metric__label{
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.splitPanel{
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.panel{
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-md);
}

.panel--soft{
  background:
    radial-gradient(circle at top right, rgba(138,229,255,.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.94));
}

.panel--warm{
  background:
    radial-gradient(circle at top right, rgba(255,206,99,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.96));
}

.panel__media{
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-md);
}

.panel__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel__media--bw img{
  filter: grayscale(1);
  transition: filter .7s ease;
}

.panel__media--bw.is-full-view img{
  filter: grayscale(0);
}

.list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li{
  display: flex;
  gap: 14px;
  color: var(--ink-soft);
}

.list li::before{
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--sky));
}

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

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

.step{
  padding: 26px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f1e4f9 0%, #D5B9EB 100%);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-sm);
}

.step__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(22,33,43,.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.step h3,
.impactCard h3,
.solution-card h3{
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.22;
}

.step p,
.impactCard p,
.solution-card p{
  margin: 0;
  color: var(--ink-soft);
}

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

.storyCard{
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f1f1f1 0%, #D9D9D9 100%);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-sm);
}

.storyCard h3{
  margin: 0 0 10px;
  font-size: 20px;
}

.storyCard p{
  margin: 0;
  color: var(--ink-soft);
}

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

.solution-card{
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-md);
}

.solution-card img{
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 230px;
  margin: 0 auto 18px;
  border-radius: 20px;
  object-fit: contain;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.5);
}

.solution-card-center{
  grid-column: 1 / span 2;
  max-width: 640px;
  margin: 0 auto;
}

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

.impact-card{
  padding: 26px 22px;
  min-height: 190px;
  border-radius: 28px;
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-card p{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

.impact-card--green{ background: linear-gradient(180deg, var(--green-soft), var(--green)); }
.impact-card--violet{ background: linear-gradient(180deg, var(--coral-soft), var(--coral)); }
.impact-card--gold{ background: linear-gradient(180deg, var(--gold-soft), var(--gold)); }
.impact-card--blue{ background: linear-gradient(180deg, var(--sky-soft), var(--sky)); }
.impact-card--red{ background: linear-gradient(180deg, var(--red-soft), var(--red)); }

.insight{
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(138,229,255,.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,206,99,.16), transparent 24%),
    rgba(255,255,255,.92);
  border: 1px solid rgba(22,33,43,.08);
  box-shadow: var(--shadow-md);
}

.insight__grid{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.insight__body{
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  border-left: 4px solid rgba(22,33,43,.14);
}

.insight__body p{
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.insight__body p:last-child{
  margin-bottom: 0;
}

.contactLayout{
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: 28px;
  align-items: start;
}

.docList{
  display: grid;
  gap: 14px;
}

.docCard{
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(22,33,43,.08);
}

.docCard strong{
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.docCard a{
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contactForm{
  display: grid;
  gap: 14px;
}

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

.field,
.contactForm select,
.contactForm textarea{
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(22,33,43,.12);
  background: rgba(255,255,255,.82);
  color: var(--ink);
}

.contactForm textarea{
  min-height: 140px;
  resize: vertical;
}

.contactForm select{
  appearance: none;
}

.checkboxLine{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.checkboxLine input{
  margin-top: 4px;
}

.note{
  font-size: 14px;
  color: var(--muted);
}

body.modalOpen{
  overflow: hidden;
}

body.modalOpen::before{
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(22,33,43,.42);
  backdrop-filter: blur(3px);
  z-index: 1190;
}

.modalOverlay{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 1200;
}

.modalOverlay[hidden]{
  display: none !important;
}

.modalCard{
  width: min(100%, 560px);
  padding: 32px 28px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #FFFDF4 0%, #FFF4CC 100%);
  border: 1px solid rgba(22,33,43,.1);
  box-shadow: 0 24px 70px rgba(22,33,43,.18);
  text-align: center;
}

.modalTitle{
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 38px);
}

.modalText{
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.modalCard .btn{
  min-width: 150px;
  justify-content: center;
}

.footer{
  background: linear-gradient(135deg, #FFF6D1 0%, #FFE066 100%);
  color: var(--ink);
  padding: 56px 0 34px;
  margin-top: 24px;
  position: relative;
  border-top: 1px solid rgba(33,49,63,.12);
}

.footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(33,49,63,0), rgba(33,49,63,.2), rgba(33,49,63,0));
}

.footer__grid{
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, .8fr));
  gap: 28px 44px;
  align-items: start;
}

.footer .brand{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer .brand img{
  width: 200px;
}

.footer__meta{
  margin-top: 14px;
  max-width: 280px;
  color: rgba(22,33,43,.7);
  font-size: 13px;
  line-height: 1.7;
}

.footer__col{
  display: grid;
  gap: 10px;
}

.footer__head{
  position: relative;
  margin: 0 0 10px;
  color: rgba(22,33,43,.6);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer__head::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 22px;
  height: 1px;
  background: rgba(22,33,43,.24);
}

.footer a,
.footer span{
  color: rgba(22,33,43,.86);
  font-size: 15px;
  line-height: 1.6;
}

.footer a:hover{
  opacity: .74;
}

[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px){
  .hero__grid,
  .splitPanel,
  .contactLayout,
  .insight__grid{
    grid-template-columns: 1fr;
  }

  .hero__media{
    min-height: 420px;
  }

  .highlightRow,
  .steps,
  .metrics,
  .impact-metrics__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 30px;
  }
}

@media (max-width: 560px){
  .nav{
    display: none;
  }

  .header__cta{
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header__cta-full{
    display: none;
  }

  .header__cta-short{
    display: inline;
  }

  .menuBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .hero{
    padding: 24px 0 64px;
  }

  .hero__grid{
    padding: 30px;
    gap: 28px;
  }

  .section{
    padding: 70px 0;
  }

  .storyGrid,
  .solutions-grid,
  .formGrid{
    grid-template-columns: 1fr;
  }

  .solution-card-center{
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 560px){
  :root{
    --container: min(100% - 32px, 100%);
  }

  .header__inner{
    min-height: 78px;
  }

  .brand img{
    width: 156px;
  }

  .hero__grid,
  .panel,
  .insight,
  .solution-card,
  .step,
  .metric,
  .highlightCard{
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero__grid{
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .highlightRow,
  .steps,
  .metrics,
  .impact-metrics__grid,
  .footer__grid{
    grid-template-columns: 1fr;
  }

  .hero__media,
  .panel__media{
    min-height: 300px;
  }

  .hero__mediaCard{
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .footer{
    padding: 40px 0 22px;
  }

  .modalCard{
    padding: 24px 20px 20px;
  }

  .modalOverlay{
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }
}
