/* ===== RESET & TOKENS ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --cream: #F2EDE4;
  --cream-dark: #E8E0D3;
  --cream-mid: #EDE7DC;
  --ink: #1A1612;
  --ink-mid: #3D3730;
  --ink-light: #7A7068;
  --ink-xlight: #AEA89F;
  --green: #2D5016;
  --accent: #3D7A1A;
  --white: #FAFAF7;
  --border: #D9D2C8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --r: 10px;
  --r-lg: 18px;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit
}

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

/* ===== LAYOUT ===== */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem)
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.1rem 0;
  transition: background .3s, box-shadow .3s
}

.nav.stuck {
  background: rgba(242, 237, 228, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem
}

.logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: .5rem
}

.logo svg {
  flex-shrink: 0
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: .02em;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-cta {
  padding: .5rem 1.3rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .03em;
  transition: background .2s, color .2s;
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--cream)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.mob-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(242, 237, 228, .98);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.mob-nav.open {
  max-height: 300px
}

.mob-nav a {
  padding: .9rem clamp(1.25rem, 4vw, 3rem);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid)
}

.mob-nav a:last-child {
  border-bottom: none
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  position: relative;
  overflow: hidden
}

.hero-landscape {
  width: 100%;
  height: 72vh;
  min-height: 480px;
  position: relative;
  overflow: hidden
}

.hero-landscape svg {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-phone {
  position: absolute;
  right: 8%;
  bottom: -40px;
  width: clamp(120px, 16vw, 220px);
  z-index: 10;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .18))
}

.hero-text-block {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 4rem;
  position: relative;
  z-index: 5;
  background: var(--cream)
}

.hero-overline {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  margin-bottom: .75rem
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 1.5rem
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-light);
  max-width: 380px;
  line-height: 1.7
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 22, 18, .25)
}

.btn-dark svg {
  flex-shrink: 0
}



/* ===== SECTION SHARED ===== */
.s-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  margin-bottom: .75rem
}

.s-head {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.15
}

.s-sub {
  color: var(--ink-light);
  line-height: 1.7
}

section {
  padding: 7rem 0
}

section:nth-child(even) {
  background: var(--white)
}

/* ===== BENEFITS ===== */
.benefits-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap
}

.benefits-top .s-head {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  max-width: 420px
}

.benefits-top .s-sub {
  max-width: 380px;
  font-size: .95rem;
  padding-top: 3rem
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.benefit-card {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  transition: transform .25s, box-shadow .25s
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26, 22, 18, .08)
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.4rem
}

.benefit-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .5rem
}

.benefit-text {
  font-size: .875rem;
  color: var(--ink-light);
  line-height: 1.6
}

/* ===== BIG PICTURE ===== */
.bigpic-section {
  padding: 0;
  background: var(--cream) !important
}

.bigpic-img {
  width: 100%;
  height: clamp(360px, 50vw, 560px);
  overflow: hidden;
  position: relative
}

.bigpic-img svg {
  width: 100%;
  height: 100%
}

.bigpic-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start
}

.bigpic-left .s-head {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.2rem
}

.bigpic-left .s-sub {
  font-size: .95rem
}

.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.num-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start
}

.num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink-xlight);
  line-height: 1;
  flex-shrink: 0;
  width: 36px
}

.num-text {
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.65;
  padding-top: .3rem
}

.num-text strong {
  color: var(--ink);
  font-weight: 600
}

/* ===== SPECS ===== */
.specs-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem
}

.specs-top .s-head {
  font-size: clamp(2rem, 3.5vw, 2.8rem)
}

.specs-top .s-sub {
  font-size: .95rem
}

.specs-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 340px
}

.specs-img svg {
  width: 100%;
  height: 100%
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border)
}

.specs-table thead th {
  padding: 1rem 1.4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--cream-mid)
}

.specs-table thead th:first-child {
  width: 40%
}

.specs-table thead th.hl {
  background: var(--ink);
  color: var(--cream)
}

.specs-table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--border)
}

.specs-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, .02)
}

.specs-table td {
  padding: .85rem 1.4rem;
  font-size: .875rem;
  color: var(--ink-mid)
}

.specs-table td:first-child {
  font-weight: 500;
  color: var(--ink)
}

.specs-table td.hl {
  background: rgba(26, 22, 18, .03)
}

.check {
  color: #3D7A1A;
  font-size: 1.1rem;
  font-weight: 700
}

.cross {
  color: #B5521A;
  font-size: 1rem;
  font-weight: 600
}

.partial {
  color: #A09060;
  font-size: 1rem
}

/* ===== TESTIMONIAL ===== */
.testi-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center
}

.testi-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 420px
}

.testi-img svg {
  width: 100%;
  height: 100%
}

.testi-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 2rem;
  position: relative
}

.testi-quote::before {
  content: '"\2009';
  font-size: 5rem;
  line-height: 0;
  position: absolute;
  top: .8rem;
  left: -1.2rem;
  color: var(--border);
  font-family: var(--serif)
}

.testi-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: .2rem
}

.testi-role {
  font-size: .82rem;
  color: var(--ink-xlight)
}

/* ===== HOW-TO ===== */
.howto-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap
}

.howto-top .s-head {
  font-size: clamp(2rem, 3.5vw, 2.8rem)
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem
}

.step-card {
  border-top: 1.5px solid var(--border);
  padding-top: 1.5rem
}

.step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink-xlight);
  margin-bottom: 1rem
}

.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .65rem
}

.step-text {
  font-size: .875rem;
  color: var(--ink-light);
  line-height: 1.65
}

/* ===== REPO FINDER ===== */
.finder-section {
  padding: 0;
  background: var(--cream-mid) !important
}

.finder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem clamp(1.25rem, 4vw, 3rem)
}

.finder-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap
}

.finder-header .s-head {
  font-size: clamp(2rem, 3.5vw, 2.8rem)
}

.finder-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 2rem
}

.filter-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  flex-shrink: 0
}

.sel-wrap {
  position: relative;
  flex: 1;
  min-width: 160px
}

.sel-wrap select {
  width: 100%;
  appearance: none;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .65rem 2.5rem .65rem 1rem;
  font-family: var(--sans);
  font-size: .875rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s
}

.sel-wrap select:focus {
  outline: none;
  border-color: var(--ink)
}

.sel-arr {
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--ink-xlight);
  pointer-events: none
}

.sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0
}

.find-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0
}

.find-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 22, 18, .25)
}

.find-btn:disabled {
  opacity: .55;
  cursor: not-allowed
}

.find-btn.spinning svg {
  animation: spin .7s linear infinite
}

#repo-result {
  min-height: 200px
}

.empty-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  text-align: center;
  flex-direction: column;
  gap: 1rem
}

.empty-prompt p {
  font-size: .95rem;
  color: var(--ink-light)
}

.empty-prompt p strong {
  color: var(--ink)
}

.state-box {
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center
}

.state-box p {
  font-size: .95rem;
  color: var(--ink-mid)
}

.state-box small {
  font-size: .78rem;
  color: var(--ink-xlight)
}

/* spinner */
.spin-ring {
  width: 40px;
  height: 40px;
  position: relative
}

.spin-ring div {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 50%
}

.spin-ring div:nth-child(1) {
  border-top-color: var(--ink);
  animation: spin .85s linear infinite
}

.spin-ring div:nth-child(2) {
  inset: 7px;
  border-top-color: var(--ink-xlight);
  animation: spin .65s linear infinite reverse
}

/* repo card */
.repo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 1.5rem;
  animation: fadeUp .4s ease both
}

.rc-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap
}

.rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  object-fit: cover
}

.rc-owner-row {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap
}

.rc-owner {
  font-size: .88rem;
  color: var(--ink-light);
  font-weight: 500;
  transition: color .2s
}

.rc-owner:hover {
  color: var(--accent)
}

.rc-slash {
  color: var(--ink-xlight)
}

.rc-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  transition: color .2s
}

.rc-name:hover {
  color: var(--accent)
}

.rc-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  color: var(--ink-light);
  transition: border-color .2s, color .2s
}

.rc-link:hover {
  border-color: var(--ink);
  color: var(--ink)
}

.rc-desc {
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 1rem
}

.rc-topics {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem
}

.rc-topic {
  padding: .22rem .7rem;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: .02em
}

.rc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.4rem
}

.rc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .9rem .5rem;
  border-right: 1px solid var(--border);
  transition: background .2s
}

.rc-stat:last-child {
  border-right: none
}

.rc-stat:hover {
  background: var(--cream)
}

.rc-stat svg {
  width: 14px;
  height: 14px;
  color: var(--ink-xlight)
}

.rc-stat strong {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink)
}

.rc-stat span {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-xlight)
}

.rc-foot {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border)
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--ink-mid);
  font-weight: 500
}

.l-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.rc-pill {
  padding: .18rem .6rem;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .72rem;
  color: var(--ink-light)
}

.rc-date {
  font-size: .75rem;
  color: var(--ink-xlight);
  margin-left: auto
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 0;
  background: var(--cream) !important
}

.cta-landscape {
  width: 100%;
  height: clamp(400px, 55vw, 640px);
  position: relative;
  overflow: hidden
}

.cta-landscape svg {
  width: 100%;
  height: 100%
}

.cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 5rem)
}

.cta-box {
  background: rgba(242, 237, 228, .92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  max-width: 520px
}

.cta-box .s-head {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .75rem
}

.cta-box .s-sub {
  font-size: .9rem;
  margin-bottom: 1.75rem
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(242, 237, 228, .7);
  padding: 3.5rem 0 2rem
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: .6rem
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.6;
  max-width: 280px
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center
}

.footer-links a {
  font-size: .84rem;
  color: rgba(242, 237, 228, .6);
  transition: color .2s
}

.footer-links a:hover {
  color: var(--cream)
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(242, 237, 228, .12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

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

[data-reveal].vis {
  opacity: 1;
  transform: none
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .specs-top {
    grid-template-columns: 1fr
  }

  .testi-wrap {
    grid-template-columns: 1fr
  }

  .testi-img {
    height: 280px;
    max-width: 480px
  }

  .bigpic-content {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mob-nav {
    display: flex
  }

  .hero-phone {
    display: none
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .finder-controls {
    flex-direction: column;
    align-items: stretch
  }

  .sep {
    display: none
  }

  .find-btn {
    width: 100%;
    justify-content: center
  }

  .rc-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .rc-stats .rc-stat:nth-child(2) {
    border-right: none
  }

  .rc-stats .rc-stat:nth-child(3) {
    border-top: 1px solid var(--border)
  }

  .howto-top {
    flex-direction: column
  }

  .benefits-top {
    flex-direction: column
  }

  section {
    padding: 5rem 0
  }
}

@media(max-width:540px) {
  .benefits-grid {
    grid-template-columns: 1fr
  }

  .trusted-logos {
    gap: 1.5rem
  }

  .cta-overlay {
    padding: 1.5rem
  }

  .cta-box {
    padding: 1.75rem 1.5rem
  }

  .specs-table {
    font-size: .8rem
  }

  .specs-table td,
  .specs-table th {
    padding: .7rem .9rem
  }
}