:root {
  --navy-900: #0a1636;
  --navy-800: #0f1f4a;
  --navy-700: #16297a;
  --gold: #f4b400;
  --gold-soft: #ffd863;
  --coral: #e8433a;
  --cream: #faf8f2;
  --paper: #ffffff;
  --ink: #12162b;
  --ink-soft: #4a5170;
  --line: #e4e0d4;
  --green: #1e8a5f;
  --blue: #2255c4;
  --violet: #6a3fbf;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-card: 0 1px 0 rgba(10, 22, 54, 0.04);
  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  width: 100%;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy-900);
}

p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.25s ease,
    box-shadow 0.25s ease;
}
header.scrolled {
  box-shadow: 0 6px 24px rgba(10, 22, 54, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.25s ease;
}
header.scrolled .nav {
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-text {
  font-family: "Arial Rounded MT Bold", "Arial Rounded MT", "Segoe UI Rounded", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy-900);
  line-height: 1.15;
}
.brand-text span {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  border: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232, 67, 58, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(232, 67, 58, 0.36);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 8px 20px rgba(244, 180, 0, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(244, 180, 0, 0.4);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-block {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 88px;
  overflow: hidden;
  position: relative;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-900);
  color: var(--gold-soft);
  padding: 7px 16px 7px 8px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.eyebrow-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.35);
  }
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  line-height: 1.06;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  z-index: 0;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.03em;
  height: 0.1em;
  background: var(--gold-soft);
  border-radius: 2px;
  z-index: -1;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-strip {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-strip-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
}
.hero-strip-item .ic svg {
  width: 18px;
  height: 18px;
}
.hero-strip-item span {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy-800);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art img {
  position: relative;
  z-index: 1;
  width: 380px;
  height: auto;
}
.float-card {
  position: absolute;
  z-index: 2;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 16px 36px rgba(10, 22, 54, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-card.fc-1 {
  top: 6%;
  right: -4%;
}
.float-card.fc-2 {
  bottom: 8%;
  left: -8%;
}
.float-card strong {
  display: block;
  font-size: 0.86rem;
  color: var(--navy-900);
  font-family: "Space Grotesk", sans-serif;
}
.float-card small {
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.float-card .fc-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Section shells ---------- */
section {
  padding: 84px 0;
}
.section-navy {
  background: var(--navy-900);
  color: #fff;
}
.section-navy h2,
.section-navy h3 {
  color: #fff;
}
.kicker {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
}
.section-navy .kicker {
  color: var(--gold-soft);
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-lead {
  font-size: 1.4rem;
  line-height: 1.45;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #fff;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-row .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-900);
  background: var(--gold-soft);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-row p {
  color: #d8dcf0;
  font-size: 0.96rem;
}
.about-row strong {
  color: #fff;
}

/* ---------- Courses ---------- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 22, 54, 0.12);
}
.course-top {
  padding: 22px 24px;
  color: #fff;
}
.course-top.green {
  background: var(--green);
}
.course-top.blue {
  background: var(--blue);
}
.course-top.violet {
  background: var(--violet);
}
.course-top .c-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.course-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-row .amt {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy-900);
}
.price-row .per {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.duration-pill {
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 100px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.feat-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.feat-list.green svg {
  color: var(--green);
}
.feat-list.blue svg {
  color: var(--blue);
}
.feat-list.violet svg {
  color: var(--violet);
}

/* ---------- Modes toggle ---------- */
.modes {
  background: var(--paper);
}
.mode-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mode-panel + .mode-panel {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.mode-panel.reverse .mode-visual {
  order: 2;
}
.mode-panel.reverse .mode-copy {
  order: 1;
}
.mode-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy-800);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mode-visual {
  position: relative;
}
.photo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 22, 54, 0.2);
}
.photo-frame img {
  width: 100%;
  display: block;
}
.live-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.live-tag .r {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}

.mode-copy h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.mode-copy p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 22px;
  max-width: 42ch;
}
.mode-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.mode-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ---------- What you get ---------- */
.perks {
  background: var(--cream);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.perk {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perk .p-ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk .p-ic svg {
  width: 20px;
  height: 20px;
  color: var(--gold-soft);
}
.perk strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  color: var(--navy-900);
}

/* ---------- Quote ---------- */
.quote-band {
  background: var(--gold);
  padding: 64px 0;
}
.quote-band blockquote {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--navy-900);
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto;
}
.quote-band .attribution {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a3c00;
}

/* ---------- Who can join ---------- */
.who .wrap {
  text-align: center;
}
.chip-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.chip {
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--navy-900);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-900);
}

/* ---------- Demo / Contact ---------- */
.demo {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.demo::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.16), transparent 70%);
  top: -220px;
  right: -160px;
}
.demo .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.demo h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
}
.demo p.lede {
  color: #c3c9e6;
  font-size: 1.02rem;
  max-width: 40ch;
  margin-bottom: 28px;
}
.demo-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.demo-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 600;
}
.demo-contact .d-ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-contact .d-ic svg {
  width: 19px;
  height: 19px;
  color: var(--gold-soft);
}
.demo-contact small {
  display: block;
  font-weight: 400;
  color: #9aa2c6;
  font-size: 0.78rem;
}

.form-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.form-card .sub {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 22px;
  display: block;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.18s ease;
}
.field input:focus,
.field select:focus {
  border-color: var(--navy-900);
  outline: none;
}
.form-note {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 12px;
  text-align: center;
}
.form-msg {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  background: #e8f5ee;
  color: var(--green);
  display: none;
}
.form-msg.show {
  display: block;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-900);
  color: #aab0d1;
  padding: 56px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-brand .brand-text {
  color: #fff;
  font-size: 1.9rem;
}
.foot-col h4 {
  color: #fff;
  font-size: 0.86rem;
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
}
.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-col a {
  font-size: 0.87rem;
  color: #9aa2c6;
  transition: color 0.18s ease;
}
.foot-col a:hover {
  color: var(--gold-soft);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom .tagline {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about,
  .demo .wrap,
  .mode-panel {
    grid-template-columns: 1fr;
  }
  .course-grid {
    grid-template-columns: 1fr 1fr;
  }
  .perks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-art {
    margin-top: 20px;
    order: -1;
  }
  .hero-art img {
    width: min(280px, 70vw);
    height: auto;
  }
  .mode-panel.reverse .mode-visual,
  .mode-panel.reverse .mode-copy {
    order: initial;
  }
}
@media (max-width: 720px) {
  #site-header .wrap {
    padding: 0 20px 0 40px;
  }
  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }
  .hamburger {
    display: flex;
    padding: 10px;
    margin-right: -10px;
  }
  .course-grid,
  .perks-grid {
    grid-template-columns: 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 40px 0 60px;
  }
  .float-card {
    display: none;
  }
  header.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  header.nav-open .nav-cta {
    display: flex;
  }
  header.nav-open .nav-cta .btn-ghost {
    display: none;
  }
}
  .reviews-section {
    padding: 78px 0;
    background: #faf8f2;
  }

  .reviews-subtitle {
    max-width: 620px;
    margin: 10px auto 0;
    color: var(--ink-soft);
    font-size: .95rem;
  }

  .g-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
  }

  .g-review-card {
    background: #fff;
    border: 1px solid #e4e0d4;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 16px 45px rgba(10,22,54,.07);
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .g-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(10,22,54,.11);
  }

  .g-review-head {
    display: flex;
    align-items: center;
    gap: 13px;
  }

  .g-review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex: 0 0 54px;
    border: 1px solid rgba(10,22,54,.08);
    background: #eef2f7;
    color: #0a1636;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  .g-review-person {
    min-width: 0;
  }

  .g-review-name {
    color: var(--navy-900);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .g-review-meta {
    margin-top: 5px;
    color: #73798d;
    font-size: .78rem;
  }

  .g-review-new {
    display: inline-block;
    margin-left: 7px;
    padding: 3px 7px;
    border: 1px solid #dedede;
    border-radius: 6px;
    color: #182033;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .04em;
    vertical-align: 1px;
  }

  .g-review-rating {
    margin-top: 19px;
    color: #f4b400;
    font-size: 1.2rem;
    letter-spacing: .08em;
    line-height: 1;
  }

  .g-review-text {
    margin: 16px 0 0;
    color: #24283a;
    font-size: .96rem;
    line-height: 1.65;
  }

  .reviews-map-link {
    text-align: center;
    margin-top: 34px;
  }

  .reviews-map-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--navy-900);
    color: #fff;
    font-weight: 700;
    font-size: .86rem;
    transition: transform .18s ease, background .18s ease;
  }

  .reviews-map-link a:hover {
    transform: translateY(-2px);
    background: #111d45;
  }

  @media (max-width: 900px) {
    .g-reviews-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 620px) {
    .reviews-section {
      padding: 58px 0;
    }

    .g-reviews-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .g-review-card {
      padding: 21px;
    }
  }