:root {
  color-scheme: light;
  --ink: #07151f;
  --ink-2: #112433;
  --paper: #fff9ef;
  --surface: #ffffff;
  --soft: #f3eadc;
  --line: #e4d8c5;
  --gold: #d7a94a;
  --gold-2: #f4d68d;
  --blue: #24566d;
  --green: #1f8f67;
  --muted: #756b5f;
  --shadow: 0 22px 70px rgba(7, 21, 31, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

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

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

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

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, .96), rgba(255, 249, 239, 1)),
    radial-gradient(circle at 80% 0%, rgba(215, 169, 74, .22), transparent 34%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 31, .92);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.topbar-inner,
.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

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

.brand-logo {
  width: 178px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .28));
}

.navlinks {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.navlinks a,
.pill-link {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.navlinks a:hover,
.pill-link:hover,
.card:hover,
.listing-card:hover,
.route-card:hover {
  transform: translateY(-3px);
}

.pill-link.gold,
.btn.gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
  color: var(--ink);
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  width: 44px;
  height: 44px;
  font-weight: 1000;
}

.mobile-panel {
  display: none;
  padding: 0 18px 18px;
}

.mobile-panel.open {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 21, 31, .94), rgba(7, 21, 31, .68) 46%, rgba(7, 21, 31, .18)),
    url("/bnbhubs-full-site-rebuild/assets/maadi-living.jpeg") center/cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 249, 239, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  padding: 72px 0 132px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8f6626;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow,
.proof-strip .eyebrow {
  color: var(--gold-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 106px);
  line-height: .88;
  letter-spacing: -.065em;
  margin-bottom: 20px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.045em;
  margin-bottom: 16px;
}

h3 {
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}

.lead {
  color: #f2eadc;
  font-size: clamp(18px, 2.15vw, 24px);
  line-height: 1.42;
  max-width: 790px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 17px;
  min-height: 52px;
  padding: 15px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 1000;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(7, 21, 31, .18);
}

.btn.light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 30px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  padding: 22px;
}

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

.metric {
  min-height: 130px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  padding: 18px;
  background: rgba(7, 21, 31, .58);
}

.metric strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--gold-2);
  letter-spacing: -.04em;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: #dbe5ec;
  line-height: 1.35;
  font-weight: 760;
}

.search-ribbon {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr .8fr auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(7, 21, 31, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8efe1;
  padding: 12px 13px;
}

.label {
  display: block;
  color: #9a8b76;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.value {
  display: block;
  margin-top: 5px;
  font-weight: 1000;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding: 54px 0;
}

.body {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
  max-width: 790px;
}

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

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

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

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

.card,
.listing-card,
.route-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(7, 21, 31, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover,
.listing-card:hover,
.route-card:hover {
  border-color: rgba(215, 169, 74, .7);
  box-shadow: 0 24px 70px rgba(7, 21, 31, .13);
}

.card p,
.listing-card p,
.route-card p,
.card li {
  color: var(--muted);
  line-height: 1.48;
}

.dark-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(215, 169, 74, .22), transparent 32%),
    linear-gradient(135deg, #07151f, #102c3f);
  color: #fff;
}

.dark-section .body,
.dark-section .card p,
.dark-section li {
  color: #d4dee6;
}

.dark-section .card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 26px;
  align-items: start;
}

.funnel-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.flow-step {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: #fff;
}

.flow-step:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.flow-step:last-child:after {
  display: none;
}

.flow-step b {
  display: block;
  margin-bottom: 7px;
  color: #8f6626;
}

.listing-card {
  padding: 0;
  overflow: hidden;
}

.listing-image {
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(7, 21, 31, .08), rgba(215, 169, 74, .18)),
    url("/bnbhubs-full-site-rebuild/assets/maadi-living.jpeg") center/cover;
}

.listing-body {
  padding: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.chip {
  border-radius: 999px;
  background: #f5ebda;
  color: #6e5b3d;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 950;
}

.price {
  font-weight: 1000;
  color: var(--ink);
}

.search-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .8fr auto;
  gap: 10px;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.form-grid .wide {
  grid-column: 1 / -1;
}

.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
  padding: 14px;
  color: var(--ink);
  outline: none;
}

textarea.input {
  min-height: 132px;
  resize: vertical;
}

.contact-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.proof-strip {
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(135deg, #07151f, #1c4255);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

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

.route-card {
  min-height: 130px;
}

.footer {
  background: #06111a;
  color: #fff;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 22px;
}

.footer img {
  width: 170px;
  filter: brightness(1.25);
  margin-bottom: 16px;
}

.footer a {
  display: block;
  color: #cfd8df;
  margin: 9px 0;
  font-weight: 760;
}

.footer p {
  color: #aebac5;
  line-height: 1.45;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(31, 143, 103, .12);
  color: #137957;
  font-weight: 1000;
  font-size: 12px;
}

.mini-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .07);
  color: #cfd8df;
  font-size: 13px;
  font-weight: 850;
}

.mini-search span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(215, 169, 74, .8);
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff6e2;
  padding: 16px 18px;
  border-radius: 14px;
  color: #6b5734;
  font-weight: 800;
}

.boostly-board {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(215, 169, 74, .32);
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 169, 74, .22), transparent 35%),
    linear-gradient(135deg, #07151f, #123247);
  color: #fff;
  box-shadow: 0 22px 70px rgba(7, 21, 31, .16);
}

.boostly-board .body {
  color: #d8e3ea;
}

.integration-status {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.integration-status strong {
  font-size: 22px;
  line-height: 1.1;
}

.integration-status small {
  color: #d8e3ea;
  line-height: 1.4;
}

.integration-status.ready .status-dot {
  background: #22d371;
}

.crm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.crm-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 44px rgba(7, 21, 31, .07);
}

.crm-card b,
.crm-card span,
.crm-card em {
  display: block;
}

.crm-card b {
  font-size: 20px;
  line-height: 1.12;
}

.crm-card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.42;
}

.crm-card em {
  margin-top: 14px;
  color: #8f6626;
  font-size: 12px;
  font-style: normal;
  font-weight: 1000;
}

.analytics-board {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(7, 21, 31, .1);
  border-radius: 28px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 54px rgba(7, 21, 31, .08);
}

.analytics-board h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  margin: 4px 0 8px;
}

.analytics-dimensions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.analytics-dimensions span {
  border: 1px solid rgba(7, 21, 31, .1);
  border-radius: 999px;
  padding: 9px 11px;
  background: #f8f3e7;
  color: #5a4b33;
  font-size: 12px;
  font-weight: 1000;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(7, 21, 31, .1);
  border-radius: 18px;
  padding: 12px 14px;
  background: #fffaf0;
  color: #59462b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex: 0 0 auto;
  margin-top: 1px;
}

.analytics-live {
  display: grid;
  gap: 16px;
}

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

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

.metric-card {
  border: 1px solid rgba(7, 21, 31, .1);
  border-radius: 24px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 54px rgba(7, 21, 31, .08);
}

.metric-card h3 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: .95;
  margin: 4px 0 10px;
}

.row-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(7, 21, 31, .08);
  padding: 12px 0;
  color: var(--muted);
}

.row-stat b {
  color: var(--ink);
}

.row-stat span {
  border-radius: 999px;
  background: #f8f3e7;
  padding: 6px 10px;
  color: #8f6626;
  font-weight: 1000;
}

.bio-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 6%, rgba(215, 169, 74, .38), transparent 22%),
    radial-gradient(circle at 2% 16%, rgba(36, 86, 109, .42), transparent 20%),
    linear-gradient(180deg, #06151d 0 33%, #f4ebdf 33% 100%);
  padding: 54px 0 120px;
}

.bio-card {
  width: min(760px, calc(100% - 34px));
  margin: 0 auto;
}

.bio-logo {
  width: 250px;
  margin-bottom: 44px;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .38));
}

.bio-hero {
  color: #fff;
  padding-bottom: 32px;
}

.bio-hero h1 {
  font-size: clamp(48px, 10vw, 76px);
  line-height: .96;
  margin-bottom: 16px;
}

.bio-hero p {
  color: #e8eef2;
  font-size: clamp(19px, 4vw, 26px);
  line-height: 1.34;
  max-width: 720px;
}

.bio-location {
  position: relative;
  z-index: 2;
  margin: 16px 0 34px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 169, 74, .62), rgba(36, 86, 109, .82)),
    url("/bnbhubs-full-site-rebuild/assets/maadi-living.jpeg") center/cover;
  box-shadow: 0 24px 70px rgba(7, 21, 31, .24);
}

.bio-location strong {
  display: block;
  font-size: clamp(26px, 5vw, 36px);
  line-height: 1.18;
}

.bio-links {
  display: grid;
  gap: 14px;
}

.bio-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border: 1px solid rgba(7, 21, 31, .16);
  border-radius: 24px;
  padding: 18px 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(7, 21, 31, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.bio-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(7, 21, 31, .14);
}

.bio-link.dark {
  background: #06151d;
  color: #fff;
}

.bio-link.gold {
  background: linear-gradient(135deg, #f5cf69, #fff3bc);
}

.bio-link.green {
  background: linear-gradient(135deg, #34da82, #d7ffec);
}

.bio-link .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .2);
  color: inherit;
  font-weight: 1000;
}

.bio-link:not(.dark) .icon {
  background: rgba(7, 21, 31, .08);
}

.bio-link b {
  display: block;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.05;
}

.bio-link span {
  display: block;
  margin-top: 5px;
  color: rgba(7, 21, 31, .72);
  font-weight: 780;
}

.bio-link.dark span {
  color: rgba(255, 255, 255, .72);
}

.arrow {
  font-size: 34px;
  font-weight: 1000;
}

.coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
  border: 2px dashed rgba(7, 21, 31, .65);
  border-radius: 24px;
  padding: 20px;
  background: #06151d;
  color: #fff;
}

.coupon strong {
  display: block;
  font-size: 26px;
  margin-bottom: 4px;
}

.coupon-code {
  border-radius: 16px;
  background: #fff5bf;
  color: #06151d;
  padding: 16px 20px;
  font-size: 28px;
  font-weight: 1000;
}

.bio-note {
  border: 1px solid rgba(7, 21, 31, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .62);
  padding: 24px;
}

.bio-note h2 {
  font-size: 40px;
  margin-bottom: 8px;
}

.bio-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: rgba(7, 21, 31, .62);
  font-weight: 1000;
}

.bio-funnel {
  margin: 22px 0;
  border: 1px solid rgba(7, 21, 31, .12);
  border-radius: 26px;
  background: rgba(255, 255, 255, .72);
  padding: 22px;
  box-shadow: 0 18px 54px rgba(7, 21, 31, .07);
}

.bio-funnel h2 {
  font-size: clamp(30px, 5vw, 46px);
  margin-bottom: 16px;
}

.bio-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bio-form-grid .contact-card {
  box-shadow: none;
  border-radius: 22px;
  padding: 18px;
}

.bio-crm-strip {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  border-radius: 22px;
  padding: 18px;
  background: #07151f;
  color: #fff;
}

.bio-crm-strip span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.bio-crm-strip b {
  font-size: 20px;
  line-height: 1.25;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  background: #22d371;
  box-shadow: 0 0 18px rgba(34, 211, 113, .72);
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .navlinks,
  .mini-search {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .two,
  .three,
  .four,
  .footer-grid,
  .proof-strip,
  .route-list {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 44px 0 230px;
  }

  .hero-panel {
    display: none;
  }

  .search-ribbon,
  .search-panel,
  .funnel-flow,
  .boostly-board,
  .crm-grid,
  .analytics-board,
  .metric-grid,
  .analytics-columns,
  .bio-form-grid {
    grid-template-columns: 1fr;
  }

  .flow-step:after {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .brand-logo {
    width: 150px;
  }

  .bio-shell {
    padding-top: 36px;
  }

  .bio-logo {
    width: 220px;
    margin-bottom: 34px;
  }
}

@media (max-width: 620px) {
  .topbar-inner,
  .container {
    width: min(100% - 26px, 1180px);
  }

  h1,
  .display {
    font-size: 52px;
  }

  .hero-grid {
    padding-bottom: 260px;
  }

  .search-ribbon {
    bottom: 12px;
    border-radius: 20px;
    padding: 12px;
  }

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

  .bio-link {
    min-height: 92px;
    grid-template-columns: auto 1fr auto;
    padding: 15px;
  }

  .bio-link .icon {
    width: 48px;
    height: 48px;
  }

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

  .coupon-code {
    text-align: center;
  }
}
