/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-900: #0f4a1e;
  --green-800: #106027;
  --green-700: #147a30;
  --green-600: #189a3c;
  --green-500: #22b34a;
  --green-100: #dcf3e2;
  --green-50: #eefaf1;
  --ink: #161c14;
  --ink-soft: #4b544a;
  --gray-100: #f6f7f5;
  --gray-200: #eceeea;
  --gray-border: #dfe3dc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 40px -14px rgba(22, 28, 20, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, .img-placeholder { display: block; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.btn, .logo, .eyebrow, .eyebrow-pill, .price-card-amount, .tier-amount, .step-num, .badge {
  font-family: 'Baloo 2', 'Inter', sans-serif;
}

h1 { font-size: 52px; }
h2 { font-size: 38px; }
h3 { font-size: 20px; }
h4 { font-size: 17px; }

p { color: var(--ink-soft); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-green { color: var(--green-600); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-700); }

.btn-outline {
  background: var(--white);
  border-color: #c9cec4;
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--green-600); color: var(--green-600); }

.btn-arrow { font-size: 15px; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); }

.btn-lg { padding: 14px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }

.link-plain { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.link-plain:hover { color: var(--ink); }

.link-arrow {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green-600);
}
.link-arrow:hover { text-decoration: underline; }

/* ===== Header ===== */
.top-bar {
  height: 6px;
  background: var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-border);
}

.header-spacer { height: 89px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  max-width: 1440px;
  padding: 0 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 26px;
  flex-shrink: 0;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--green-600); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo { flex-shrink: 0; }

/* ===== Mobile Nav (hamburger + drawer) ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-actions { display: none; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 15, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 45;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ===== Hero ===== */
.hero {
  padding: 64px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  display: inline-block;
}

.hero-copy h1 { margin-bottom: 20px; }

.lead {
  font-size: 17.5px;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-cta.center { justify-content: center; }

.trust-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-row .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: 10px;
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-photo {
  border-radius: 20px;
  aspect-ratio: 4/3.1;
  width: 100%;
  object-fit: cover;
}

.price-card {
  position: absolute;
  bottom: -40px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 4px 10px -2px rgba(22, 28, 20, 0.14);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 236px;
}
.price-card-label { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }
.price-card-amount { font-size: 32px; font-weight: 700; color: var(--green-600); }
.price-card-sub { font-size: 12px; color: var(--ink-soft); margin-bottom: 14px; }

/* ===== Marquee strip ===== */
.marquee-strip {
  border-top: 1px solid var(--gray-border);
  padding: 26px 0;
  margin-top: 40px;
}
.marquee-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.marquee-inner span:not(:last-child)::after {
  content: "\00b7";
  margin-left: 10px;
  color: var(--gray-border);
}

/* ===== Sections generic ===== */
.section { padding: 96px 0; }
.section-green { background: var(--green-50); }
.section-gray { background: #f9f9f7; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  max-width: none;
  margin: 0 0 40px;
  gap: 40px;
}
.section-head-split .eyebrow { margin-bottom: 10px; }
.section-head-split h2 { margin-bottom: 0; }
.section-head-split .section-sub {
  text-align: right;
  max-width: 320px;
  margin: 0;
  flex-shrink: 0;
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 10px;
}
.eyebrow-light { color: rgba(255,255,255,0.65); }
.eyebrow-mixed-case { text-transform: none; letter-spacing: normal; font-size: 14px; }

.section-head h2 { margin-bottom: 14px; }
.section-sub { font-size: 16px; }

.section-cta { text-align: center; margin-top: 48px; }

/* ===== Building type cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.type-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(22,28,20,0.06);
}

.type-card-media {
  position: relative;
  aspect-ratio: 4/3;
}

.type-card-body { padding: 18px; }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--white);
}
.badge-popular { background: var(--green-600); }
.badge-outline {
  display: inline-block;
  position: static;
  background: transparent;
  border: 1.5px solid var(--green-600);
  color: var(--green-700);
  margin-bottom: 18px;
}

.type-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.type-card p { font-size: 14px; margin-bottom: 14px; }

/* ===== Process steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.steps { text-align: center; }

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gray-border);
  z-index: 0;
}

.step { position: relative; z-index: 1; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  border: 1.5px solid #c9e8cf;
  color: var(--green-600);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 22px;
}

.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; max-width: 260px; margin: 0 auto; }

/* ===== Good to know ===== */
.gtk-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.gtk-media {
  border-radius: 20px;
  aspect-ratio: 4/3.4;
  width: 100%;
}

.gtk-copy p { font-size: 15.5px; margin-bottom: 16px; }
.gtk-copy h2 { margin-bottom: 18px; }

.italic-note {
  color: var(--ink-soft);
  font-size: 15.5px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 28px;
}

.check-grid .check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
}
.check-grid .check-list li::before { position: static; }
.check-grid .check-list li.yes {
  background: var(--green-50);
  color: var(--ink);
}
.check-grid .check-list li.no {
  background: var(--white);
  color: #adb0a9;
}
.check-grid .check-list li.no::before { color: #c7cac3; }

.check-list li {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 0;
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}
.check-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.check-list li.yes::before { content: "\2713"; color: var(--green-600); }
.check-list li.no::before { content: "\2717"; color: #c4453b; }

/* ===== Stats bar ===== */
.stats-bar {
  background: #0f8a20;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; color: var(--white); }
.stat h4 { color: var(--white); font-size: 25px; margin-bottom: 8px; }
.stat p { color: rgba(255,255,255,0.85); font-size: 14px; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.price-tier {
  border: 1.5px solid #cdedd4;
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.price-tier.tier-commercial {
  border-style: dashed;
  border-color: #d8dad3;
  background: #fafaf8;
}

.price-tier h3 { font-size: 14px; color: var(--green-600); font-weight: 700; margin-bottom: 10px; }
.tier-amount { font-size: 32px; font-weight: 700; margin-bottom: 18px; }
.tier-commercial .tier-amount { font-size: 40px; }

.price-tier ul { margin-bottom: 24px; flex-grow: 1; }
.price-tier ul li {
  font-size: 14px;
  padding: 3px 0;
  color: var(--ink);
}
.price-tier ul li:not(:first-child) { color: #a3a69d; }

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 26px;
}

/* ===== Showcase ===== */
.showcase-section {
  position: relative;
  min-height: 800px;
}

.showcase-panel-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/building-plans.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.showcase-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding-top: 70px;
}

.showcase-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 30px;
}
.showcase-text h2 { margin-bottom: 14px; }
.showcase-text p { color: var(--ink); font-weight: 500; font-size: 15.5px; }

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px 20px;
  width: 250px;
  z-index: 3;
}

.fc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fc-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
}
.fc-icon svg { width: 20px; height: 20px; }

.float-card h4 {
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.float-card .check-list li { font-size: 13px; padding: 4px 0; padding-left: 22px; }

.fc-top-left { top: 30%; left: -1%; }
.fc-top-right { top: 30%; right: -1%; }
.fc-bottom-left { bottom: 8%; left: -1%; }
.fc-bottom-right { bottom: 8%; right: -1%; }

.showcase-cta {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 3;
}
.showcase-cta .btn {
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 16px;
}

/* ===== Split sections ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-grid.reverse .split-media { order: 2; }
.split-grid.reverse .split-copy { order: 1; }

.split-copy .eyebrow-pill { margin-bottom: 18px; }
.split-copy h2 { margin: 0 0 16px; }
.split-copy p { font-size: 15.5px; margin-bottom: 22px; }
.split-copy .check-list { margin-bottom: 26px; }
.split-copy .check-list li { font-size: 14.5px; padding: 6px 0; }

.split-media {
  border-radius: 20px;
  aspect-ratio: 4/3.2;
  width: 100%;
}

.split-media-wrap { position: relative; }
.split-media-wrap .split-media { display: block; }


.contact-float-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.cfc-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--green-100);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cfc-icon svg { width: 18px; height: 18px; }
.contact-float-card strong { display: block; font-size: 14.5px; color: var(--ink); }
.contact-float-card a { font-size: 13.5px; color: var(--green-600); font-weight: 500; }

.circle-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  padding-left: 0;
  color: var(--ink);
}
.circle-list li.yes::before,
.circle-list li.no::before,
.circle-list li::before {
  content: "";
  position: static;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23189a3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.final-cta h2 { color: var(--white); font-size: 42px; margin: 0 0 16px; }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 34px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-border);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo { margin-bottom: 4px; }
.footer-logo .logo-img { height: 30px; }

.footer-brand p { font-size: 14px; margin: 16px 0 10px; max-width: 260px; color: var(--ink-soft); }
.footer-brand p.footer-tag { font-weight: 700; color: var(--green-600); }

.footer-col h5 {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: #a3a69d;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.footer-col ul li a:hover { color: var(--green-600); }
.footer-col p { font-size: 14.5px; margin-bottom: 12px; }
.footer-col p a { font-weight: 500; color: var(--ink); }
.footer-disclaimer { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner p { font-size: 13px; color: var(--ink-soft); }

/* ===== Image placeholders (swap with real photography) ===== */
.img-placeholder {
  background-size: cover;
  background-position: center;
  background-color: var(--gray-200);
}
.ph-postframe { background-image: url('../img/post-frame.webp'); }
.ph-pemb { background-image: url('../img/pemb.webp'); }
.ph-tubular { background-image: url('../img/tubular.webp'); }
.ph-tallwall { background-image: url('../img/tall-wall.webp'); }
.ph-handwriting { background-image: url('../img/tubular.webp'); }
.ph-barn { background: linear-gradient(160deg, #cfe0ea 0%, #a9c79f 55%, #6d8f5c 100%); }
.ph-smartbuild { background-image: url('../img/smart-build.webp'); }
.ph-blueprint { background-image: url('../img/builders-order.webp'); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }

  .header-inner { justify-content: space-between; gap: 14px; padding: 0 20px; }
  .nav-toggle { display: flex; order: 1; }
  .header-actions { display: none; }
  .nav-overlay { top: 89px; }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 89px;
    right: 0;
    height: calc(100vh - 89px);
    height: calc(100dvh - 89px);
    width: min(320px, 85vw);
    background: var(--white);
    padding: 20px 24px 32px;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 40;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 16px;
  }
  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-grid, .gtk-grid, .split-grid { grid-template-columns: 1fr; }
  .section-head-split { flex-direction: column; align-items: center; text-align: center; }
  .section-head-split .section-sub { text-align: center; max-width: none; }
  .split-grid.reverse .split-media,
  .split-grid.reverse .split-copy { order: initial; }
  .split-grid:not(.reverse) .split-media { order: -1; }
  .card-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .float-card { position: static; width: 100%; box-shadow: none; border: 1px solid var(--gray-border); margin-bottom: 14px; }
  .fc-top-left, .fc-top-right, .fc-bottom-left, .fc-bottom-right { position: static; }
  .showcase-section { min-height: 0; }
  .showcase-panel-bg { position: static; aspect-ratio: 4/3; margin: 0 20px 24px; width: calc(100% - 40px); }
  .showcase-inner { position: static; padding: 30px 0 0; }
  .showcase-text { margin-bottom: 24px; padding: 0 20px; }
  .fc-top-left, .fc-top-right, .fc-bottom-left, .fc-bottom-right { position: static; }
  .showcase-cta { position: static; transform: none; text-align: center; margin-top: 20px; }
  .hero-media { margin-bottom: 90px; }
  .price-card { position: absolute; z-index: 1; bottom: 0; left: 16px; transform: translateY(50%); }
  .hero-copy .eyebrow-pill { display: table; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero { padding-top: 32px; }
  .card-grid, .pricing-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .hero-cta, .trust-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-cta { align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .hero-cta.center { align-items: center; }
  .header-actions .link-plain { display: none; }

  .hero-media { margin-bottom: 90px; }
  .price-card {
    width: 195px;
    padding: 14px 16px;
    gap: 2px;
    bottom: 0;
    left: 16px;
    transform: translateY(50%);
  }
  .price-card-label { font-size: 11px; }
  .price-card-amount { font-size: 24px; }
  .price-card-sub { font-size: 10.5px; margin-bottom: 10px; }
  .price-card .btn-block { padding: 9px 14px; font-size: 13px; }
}
