:root {
  --navy: #061957;
  --blue: #0e43a8;
  --green: #178b1c;
  --soft-green: #eff8ed;
  --soft-blue: #eef5ff;
  --line: #cfdcf4;
  --muted: #33436d;
  --white: #ffffff;
  --shadow: 0 10px 24px rgba(6, 25, 87, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7fbff;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 10px 48px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d9e4f6;
  box-shadow: 0 4px 18px rgba(6, 25, 87, 0.05);
}

.hero-people {
  display: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.55vw, 28px);
  font-size: 12px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 26px 0 22px;
  white-space: nowrap;
}

.nav-links a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-btn::before {
  display: block;
  width: 16px;
  height: 16px;
  margin: 7px auto 0;
  border: 3px solid var(--navy);
  border-radius: 50%;
  content: "";
}

.search-btn::after {
  display: block;
  width: 9px;
  height: 3px;
  margin: -1px 0 0 24px;
  background: var(--navy);
  border-radius: 999px;
  transform: rotate(45deg);
  content: "";
}

.login-btn,
.join-btn,
.primary-btn,
.expert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.login-btn {
  min-width: 74px;
  min-height: 40px;
  border: 1px solid #b8c8ec;
  background: var(--white);
}

.join-btn {
  min-width: 132px;
  min-height: 42px;
  background: var(--navy);
  color: var(--white);
}

.hero {
  display: grid;
  position: relative;
  grid-template-columns: 27% 34% 1fr;
  gap: 18px;
  min-height: 424px;
  padding: 22px 48px 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.95) 0%, rgba(248, 252, 255, 0.62) 35%, rgba(255, 248, 236, 0.26) 100%),
    url("assets/adviserx-banner-background.png") center bottom / cover no-repeat,
    linear-gradient(180deg, #ecf6ff 0%, #fffaf2 86%);
  border-bottom: 1px solid #d5e1f4;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  background:
    linear-gradient(0deg, rgba(52, 112, 181, 0.2), rgba(52, 112, 181, 0)),
    repeating-linear-gradient(90deg, rgba(12, 67, 168, 0.16) 0 2px, transparent 2px 28px);
  opacity: 0.75;
  content: "";
}

.hero-left {
  position: relative;
  z-index: 3;
  padding-top: 8px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 3.1vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2),
.hero h1 span:nth-child(4) {
  color: var(--green);
}

.hero-left p {
  max-width: 360px;
  margin: 0;
  color: #071d55;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions-main {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.primary-btn {
  min-width: 180px;
  min-height: 44px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(6, 25, 87, 0.16);
}

.expert-btn {
  min-width: 164px;
  min-height: 44px;
  border: 1px solid #6db171;
  background: var(--white);
  color: var(--green);
}

.person-dot {
  position: relative;
  width: 15px;
  height: 15px;
  margin-left: 10px;
}

.person-dot::before,
.person-dot::after {
  position: absolute;
  left: 4px;
  background: var(--green);
  content: "";
}

.person-dot::before {
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.person-dot::after {
  top: 8px;
  width: 9px;
  height: 6px;
  border-radius: 7px 7px 2px 2px;
}

.trusted {
  position: relative;
  z-index: 5;
  min-width: 620px;
  margin-top: 22px;
  color: #071d55;
  font-size: 11px;
  font-weight: 800;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  margin-top: 14px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(6, 25, 87, 0.08);
}

.trusted-logos b {
  font-size: 17px;
}

.trusted-logos a {
  color: var(--blue);
  font-size: 11px;
}

.ecosystem-orbit {
  position: relative;
  z-index: 3;
  min-height: 330px;
}

.orbit-ring {
  position: absolute;
  top: 74px;
  left: 50%;
  width: 236px;
  height: 236px;
  border: 1px dashed #8da7cf;
  border-radius: 50%;
  transform: translateX(-50%);
}

.center-logo {
  position: absolute;
  top: 105px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(6, 25, 87, 0.14);
  transform: translateX(-50%);
}

.center-logo img {
  width: 116px;
}

.center-logo span {
  display: none;
  margin-top: -14px;
  color: #061957;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.orbit-item {
  position: absolute;
  display: grid;
  grid-template-columns: 50px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  color: #061957;
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}

.orbit-item .icon {
  grid-row: 1 / 3;
  width: 50px;
  height: 50px;
  border: 5px solid var(--white);
  box-shadow: 0 6px 15px rgba(6, 25, 87, 0.22);
}

.orbit-item span {
  font-size: 9px;
}

.opportunities {
  top: 14px;
  left: 49%;
}

.marketplace {
  top: 104px;
  right: -6px;
}

.delivery {
  right: 2px;
  bottom: 74px;
}

.collaboration {
  bottom: 15px;
  left: 50%;
}

.earnings {
  bottom: 74px;
  left: 6px;
}

.network {
  top: 104px;
  left: 8px;
  text-align: right;
}

.network .icon,
.earnings .icon {
  order: 2;
}

.hero-people {
  position: absolute;
  z-index: 2;
  right: 420px;
  bottom: 0;
  width: 170px;
  height: 250px;
}

.person {
  position: absolute;
  bottom: 0;
}

.person::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 28px;
  background: #1c2634;
  border-radius: 50% 50% 44% 44%;
  transform: translateX(-50%);
  content: "";
}

.person::after {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 50px;
  height: 122px;
  background: #0c1b2e;
  border-radius: 24px 24px 4px 4px;
  transform: translateX(-50%);
  content: "";
}

.person-man {
  left: 22px;
  width: 72px;
  height: 220px;
}

.person-man::after {
  height: 138px;
  background: linear-gradient(90deg, #081326 0 45%, #172b47 45%);
}

.person-woman {
  right: 18px;
  width: 64px;
  height: 205px;
}

.person-woman::before {
  width: 22px;
  height: 34px;
}

.person-woman::after {
  top: 34px;
  width: 42px;
  height: 118px;
  background: #131b2d;
}

.stats-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 10px 14px;
}

.stat-card,
.audience-card,
.works-card,
.why-card,
.power-card,
.connect-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(6, 25, 87, 0.06);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 94px;
  padding: 18px 26px;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: #071d55;
  font-size: 13px;
  font-weight: 700;
}

.stat-icon,
.icon,
.step-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.stat-icon.green,
.icon {
  background: var(--green);
  color: white;
}

.stat-icon.blue,
.step-icon {
  background: var(--blue);
  color: white;
}

.rupee::before {
  content: "₹";
  font-size: 34px;
  font-weight: 500;
}

.users::before {
  content: "●●";
  font-size: 25px;
  letter-spacing: -5px;
}

.users::after {
  position: absolute;
  bottom: 12px;
  left: 13px;
  width: 28px;
  height: 13px;
  background: currentColor;
  border-radius: 14px 14px 4px 4px;
  content: "";
}

.building::before {
  content: "▰";
  font-size: 30px;
}

.building::after {
  position: absolute;
  bottom: 12px;
  width: 35px;
  height: 5px;
  border-top: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  content: "";
}

.trophy::before {
  content: "★";
  font-size: 28px;
}

.india::before {
  content: "✦";
  font-size: 36px;
}

.target::before {
  content: "◎";
  font-size: 33px;
}

.rocket::before {
  content: "↗";
  font-size: 34px;
}

.chat::before {
  content: "▣";
  font-size: 30px;
}

.wallet::before {
  content: "▱";
  font-size: 32px;
}

.handshake::before {
  content: "◇";
  font-size: 30px;
}

.doc::before {
  content: "▯";
  font-size: 32px;
}

.chart::before {
  content: "▥";
  font-size: 31px;
}

.audience-row,
.middle-grid {
  display: grid;
  gap: 16px;
  padding: 18px 48px 0;
}

.audience-row {
  grid-template-columns: 1fr 0.95fr 1.65fr;
}

.audience-card {
  position: relative;
  min-height: 190px;
  padding: 20px 22px;
  overflow: hidden;
}

.audience-card h2,
.works-card h2,
.why-card h2,
.power-card h2,
.connect-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}

.organizations h2 {
  color: var(--green);
}

.audience-card ul {
  display: grid;
  gap: 13px;
  max-width: 72%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 30px;
  color: #10235e;
  font-size: 12px;
  font-weight: 700;
}

.audience-card li::before,
.solution-box p::before {
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  color: white;
  font-size: 12px;
  content: "✓";
}

.professionals li::before {
  background: var(--blue);
}

.line-art {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 100px;
  height: 100px;
  border: 3px solid currentColor;
  opacity: 0.8;
}

.building-art {
  color: var(--green);
  border-radius: 44px 44px 0 0;
}

.building-art::before {
  position: absolute;
  right: -22px;
  bottom: -3px;
  left: -22px;
  height: 36px;
  border: 3px solid currentColor;
  content: "";
}

.expert-art {
  color: #2357d6;
  width: 72px;
  height: 94px;
  border-radius: 36px 36px 8px 8px;
}

.expert-art::before {
  position: absolute;
  right: 44px;
  bottom: -12px;
  width: 72px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 4px;
  content: "";
}

.works-card {
  min-height: 190px;
  padding: 18px 22px;
}

.works-card h2,
.power-card h2 {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr 34px) 1fr;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: start;
  gap: 4px;
}

.step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step-no {
  position: absolute;
  top: -7px;
  left: calc(50% - 29px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.step-icon {
  width: 78px;
  height: 78px;
  border: 1px solid #c7d8f5;
  background: #fbfdff;
  color: var(--blue);
}

.step-icon.rupee {
  color: var(--green);
}

.step strong {
  margin-top: 8px;
  color: #071d55;
  font-size: 11px;
}

.step p {
  max-width: 104px;
  margin: 4px 0 0;
  color: #20305e;
  font-size: 10px;
  font-weight: 700;
}

.arrow {
  padding-top: 42px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.middle-grid {
  grid-template-columns: 0.88fr 0.96fr 1.08fr;
  padding-top: 16px;
}

.why-card,
.power-card,
.connect-card {
  min-height: 222px;
  padding: 18px 20px;
}

.why-columns {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.challenge-box,
.solution-box {
  min-height: 150px;
  padding: 18px 18px 14px;
  border-radius: 8px;
}

.challenge-box {
  background: #fff0ef;
}

.solution-box {
  background: #f0f7ef;
}

.challenge-box h3,
.solution-box h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.challenge-box h3 {
  color: #e60000;
}

.solution-box h3 {
  color: var(--green);
}

.challenge-box p,
.solution-box p {
  position: relative;
  margin: 9px 0;
  padding-left: 25px;
  color: #17265a;
  font-size: 11px;
  font-weight: 800;
}

.challenge-box p::before {
  position: absolute;
  left: 0;
  color: #e60000;
  font-size: 17px;
  line-height: 1;
  content: "×";
}

.solution-box p::before {
  top: -1px;
  width: 16px;
  height: 16px;
  font-size: 10px;
}

.circle-arrow {
  position: absolute;
  top: 58px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  font-weight: 800;
  transform: translateX(-50%);
}

.power-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid #d9e4f6;
}

.power-items div {
  display: grid;
  justify-items: center;
  min-height: 142px;
  padding: 16px 10px 0;
  border-right: 1px solid #d9e4f6;
  text-align: center;
}

.power-items div:last-child {
  border-right: 0;
}

.power-items .icon {
  width: 50px;
  height: 50px;
}

.power-items strong {
  margin-top: 8px;
  font-size: 13px;
}

.power-items span {
  max-width: 88px;
  color: #17265a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.connect-card {
  position: relative;
  overflow: hidden;
}

.connect-card p {
  max-width: 310px;
  margin: -10px 0 0;
  color: #17265a;
  font-size: 11px;
  font-weight: 800;
}

.social-illustration {
  position: absolute;
  top: 30px;
  right: 28px;
  width: 188px;
  height: 72px;
  opacity: 0.9;
}

.social-illustration::before {
  position: absolute;
  right: 74px;
  bottom: 0;
  width: 42px;
  height: 58px;
  background: #7199eb;
  border-radius: 24px 24px 5px 5px;
  box-shadow: 58px 13px 0 #abc4fb, -56px 18px 0 #c4d5ff;
  content: "";
}

.social-illustration::after {
  position: absolute;
  top: 14px;
  right: 24px;
  width: 48px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 32px;
}

.social-grid a {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 92px;
  padding: 7px 4px;
  border: 1px solid #d8e3f6;
  border-radius: 7px;
  background: #fbfdff;
  text-align: center;
}

.social-grid b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  border-radius: 4px;
  background: #1478b9;
  color: white;
  font-size: 18px;
}

.social-grid a:nth-child(2) b {
  background: #1d9bf0;
}

.social-grid a:nth-child(3) b {
  background: #ff0000;
}

.social-grid a:nth-child(4) b {
  background: #0aa545;
}

.social-grid a:nth-child(5) b {
  background: #8166d9;
}

.social-grid span {
  font-size: 10px;
  font-weight: 800;
}

.social-grid small {
  display: grid;
  place-items: center;
  min-width: 0;
  width: 100%;
  min-height: 24px;
  margin-top: 8px;
  border: 1px solid #c6d5f2;
  border-radius: 4px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 14px;
  margin: 20px 48px 0;
  padding: 18px 100px;
  background: linear-gradient(90deg, #05286d, #001957);
  border-radius: 7px;
}

.partner-strip span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 7px;
  background: white;
  color: #061957;
  font-size: 16px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #d8e3f6;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 0.75fr 0.85fr 1.65fr;
  gap: 34px;
  margin-top: 4px;
  padding: 22px 48px 46px;
  background: linear-gradient(90deg, #062766 0%, #001957 100%);
  color: white;
}

.footer-brand img {
  width: 170px;
  padding: 8px;
  background: white;
  border-radius: 4px;
}

.footer-brand p,
.newsletter p {
  margin: 10px 0;
  color: #e5efff;
  font-size: 12px;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: #17a84b;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.footer-socials span:nth-child(2) {
  background: #1478b9;
}

.footer-socials span:nth-child(3) {
  background: #1d9bf0;
}

.footer-socials span:nth-child(4) {
  background: #ff0000;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-col h3,
.newsletter h3 {
  margin: 0 0 4px;
  color: white;
  font-size: 13px;
}

.footer-col a,
.footer-col span {
  color: white;
  font-size: 12px;
}

.contact-list span {
  position: relative;
  padding-left: 24px;
}

.contact-list span::before {
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  background: #17a84b;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  content: "•";
}

.newsletter {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  margin-top: 16px;
}

.newsletter input,
.newsletter button {
  min-height: 36px;
  border: 0;
  border-radius: 4px;
  font: inherit;
}

.newsletter input {
  padding: 0 14px;
}

.newsletter button {
  background: var(--green);
  color: white;
  font-weight: 800;
}

.copyright {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #dce9ff;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 210px 1fr auto;
    padding-inline: 24px;
  }

  .nav-links {
    gap: 14px;
    font-size: 12px;
  }

  .hero,
  .audience-row,
  .middle-grid {
    padding-inline: 24px;
  }

  .hero {
    grid-template-columns: 30% 32% 1fr;
  }

  .hero-people {
    display: none;
  }

  .partner-strip {
    margin-inline: 24px;
    padding-inline: 24px;
  }

  .site-footer {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 24px;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(90deg, rgba(248, 252, 255, 0.98), rgba(245, 251, 255, 0.84)),
      url("assets/adviserx-banner-background.png") center bottom / cover no-repeat,
      linear-gradient(180deg, #ecf6ff 0%, #fffaf2 86%);
  }

  .trusted {
    position: static;
    min-width: 0;
    margin-top: 22px;
  }

  .ecosystem-orbit {
    min-height: 360px;
  }

  .stats-grid,
  .audience-row,
  .middle-grid,
  .partner-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-card,
  .connect-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    width: 150px;
  }

  .login-btn,
  .search-btn {
    display: none;
  }

  .join-btn {
    min-width: 116px;
    font-size: 12px;
  }

  .hero,
  .audience-row,
  .middle-grid {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-actions-main,
  .trusted-logos {
    flex-wrap: wrap;
  }

  .ecosystem-orbit {
    transform: scale(0.88);
    transform-origin: top center;
    margin-bottom: -40px;
  }

  .stats-grid,
  .audience-row,
  .middle-grid,
  .partner-strip,
  .site-footer,
  .power-items,
  .social-grid,
  .why-columns {
    grid-template-columns: 1fr;
  }

  .audience-card ul {
    max-width: 100%;
  }

  .line-art,
  .circle-arrow,
  .social-illustration {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .arrow {
    display: none;
  }

  .power-items div {
    border-right: 0;
    border-bottom: 1px solid #d9e4f6;
  }

  .partner-strip {
    margin-inline: 16px;
  }

  .footer-col {
    border-left: 0;
    padding-left: 0;
  }

  .newsletter div {
    grid-template-columns: 1fr;
  }
}
