/* ============================================================
   MATSATO™ CHEF KNIFE — css/style.css
   Domain: en-matsatoknife.com
   Theme: Deep Forest Green #1B3628 + Rich Gold #C8950A (NEW)
   Navbar:   Forest green + gold accent top border + gold logo
   Headings: Bold 800 + LEFT gold accent bar (NEW — no pill labels)
   Buttons:  Outlined → gold fill on hover (NEW colors)
   Cards:    3-col open grid, no borders, gold circle icon (NEW)
   Font: Jost (Google Fonts)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:        #1B3628;
  --forest-mid:    #254A38;
  --forest-light:  #2F5C48;
  --gold:          #C8950A;
  --gold-dark:     #9E7408;
  --gold-mid:      #E0A80C;
  --gold-light:    #FFF8E0;
  --gold-pale:     #FFFCF0;
  --cream:         #F8F3E8;
  --off-white:     #FBFAF5;
  --white:         #FFFFFF;
  --text:          #1B2A1E;
  --muted:         #3A4F3E;
  --border:        #D6C89A;
  --border-light:  #E8DFB8;
  --radius:        10px;
  --radius-card:   14px;
  --radius-btn:    6px;
  --radius-pill:   50px;
  --shadow:        0 4px 20px rgba(27,54,40,0.10);
  --shadow-h:      0 12px 40px rgba(27,54,40,0.20);
  --shadow-card:   0 3px 18px rgba(27,54,40,0.09);
  --shadow-nav:    0 2px 24px rgba(27,54,40,0.50);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 18px; color: var(--text);
  background: var(--white); overflow-x: hidden; line-height: 1.75;
}

/* ── HEADING LEFT-BAR ACCENT — h2 centered as block, text left-aligned inside ── */
.sec-title-band .h-bar {
  display: block; padding-left: 18px;
  border-left: 5px solid var(--gold);
  text-align: left;
  max-width: 700px; margin: 0 auto;
}
.sec-title-band.bar-head { text-align: center; }
.sec-title-band.bar-head { padding-left: 48px; padding-right: 48px; }

/* ── NAVBAR — Forest green + gold TOP border ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--forest);
  padding: 0 24px; height: 72px;
  box-shadow: var(--shadow-nav);
  border-top: 4px solid var(--gold);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: 'Jost', sans-serif; font-size: 1.7rem; font-weight: 900;
  color: var(--gold); text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  flex-shrink: 0; display: flex; align-items: center; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  display: flex; align-items: center;
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 0.93rem;
  font-weight: 500; transition: color 0.2s; white-space: nowrap; line-height: 1;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav-order {
  background: transparent !important; color: var(--gold) !important;
  font-weight: 800 !important; font-size: 0.87rem !important;
  padding: 8px 22px !important; border-radius: var(--radius-btn) !important;
  border: 2px solid var(--gold) !important; transition: all 0.2s !important;
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn-nav-order:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; align-self: center; flex-shrink: 0; }
.hamburger span { width: 25px; height: 2px; background: var(--white); display: block; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; background: var(--forest);
  position: absolute; top: 72px; left: 0; right: 0;
  padding: 24px 32px; gap: 18px; z-index: 999;
  border-top: 1px solid rgba(200,149,10,0.30);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1rem; font-weight: 500; font-family: 'Jost', sans-serif; }
.mobile-menu .btn-mob-order {
  background: transparent; color: var(--gold); text-align: center;
  padding: 11px; border-radius: var(--radius-btn); font-weight: 800;
  margin-top: 6px; font-size: 0.95rem; border: 2px solid var(--gold);
}

/* ── BUTTONS — Outlined forest → gold fill hover ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--forest);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: 0.3px; padding: 14px 34px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--forest);
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(27,54,40,0.12); line-height: 1.2;
}
.btn-primary:hover {
  background: var(--gold); color: var(--forest);
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(200,149,10,0.40);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--gold-dark);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.97rem;
  padding: 12px 28px; border-radius: var(--radius-btn);
  border: 2px solid var(--gold); text-decoration: none;
  transition: all 0.22s; line-height: 1.2;
}
.btn-outline:hover {
  background: var(--gold); color: var(--forest);
  box-shadow: 0 4px 18px rgba(200,149,10,0.40);
  transform: translateY(-2px);
}

/* ── SECTION BANDS — bold 800 + left gold bar accent, centered ── */
.sec-title-band { background: var(--forest); padding: 52px 48px 44px; text-align: center; }
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem;
  font-weight: 800;
  color: var(--white); line-height: 1.2;
  display: block; letter-spacing: -0.3px;
  padding-left: 20px;
  border-left: 5px solid var(--gold);
  max-width: 820px;
  margin: 0 auto;          /* center the block on page */
  text-align: left;        /* keep text left-aligned inside the block */
}
.sec-title-band h2 span.hl { color: var(--gold); }

/* Small sub-label — centered, aligned with h2 block */
.sec-sub {
  display: block; margin-top: 10px;
  padding-left: 25px;
  max-width: 820px; margin-left: auto; margin-right: auto;
  font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1.5px;
  text-align: left;
}

/* ── HERO ── */
.hero { background: var(--off-white); padding: 80px 48px; }
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap a img {
  max-width: 100%; max-height: 540px; object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(27,54,40,0.25));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04); }

/* Bold 800 hero heading + left gold bar */
.hero-content h1 {
  font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 800;
  line-height: 1.1; color: var(--forest); margin-bottom: 8px;
  letter-spacing: -0.5px;
  border-left: 5px solid var(--gold);
  padding-left: 18px;
}
.hero-content h1 strong { color: var(--gold-dark); font-weight: 900; }
.hero-content p { font-size: 1.08rem; line-height: 1.82; color: var(--muted); margin-bottom: 16px; margin-top: 20px; }
.hero-highlight {
  font-weight: 700; color: var(--forest); font-size: 0.98rem; display: block;
  margin-top: 8px; padding: 12px 16px 12px 20px; background: var(--gold-light);
  border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ── CREDENTIAL STRIP ── */
.cred-strip {
  background: var(--forest); padding: 16px 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  border-bottom: 3px solid var(--gold);
}
.cred-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 24px; border-right: 1px solid rgba(200,149,10,0.3);
  color: rgba(255,255,255,0.82); font-family: 'Jost', sans-serif;
  font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.cred-item:last-child { border-right: none; }
.cred-item span { font-size: 1rem; }

/* ── REVIEWS ── */
.reviews-section { background: var(--cream); padding: 70px 48px; }
.reviews-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.review-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  border-left: 5px solid var(--gold);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.reviewer-photo-wrap {
  width: 100%; height: 200px; overflow: hidden; background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.reviewer-photo {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block; background: var(--gold-light); transition: transform 0.4s ease;
}
.review-card:hover .reviewer-photo { transform: scale(1.03); }
.reviewer-photo.img-error { opacity: 0; position: absolute; }
.reviewer-photo-wrap.img-broken::after {
  content: "👤"; font-size: 3.5rem; opacity: 0.25; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.review-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.review-stars { height: 20px; margin: 0 auto 10px; display: block; }
.review-badge { font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.review-text { font-size: 0.97rem; line-height: 1.78; color: var(--muted); font-style: italic; flex: 1; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--forest); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border-light); }

/* ── PROSE SECTIONS ── */
.what-is-section { background: var(--off-white); padding: 70px 48px; }
.what-is-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  align-items: center; gap: 60px;
}
.what-is-img-wrap img { width: 100%; max-width: 420px; height: auto; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(27,54,40,0.20)); display: block; }
.what-is-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

.why-section { background: var(--white); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ── PRICING BAND + IMAGE ── */
.pricing-band { background: var(--forest); padding: 44px 48px 14px; text-align: center; border-top: 4px solid var(--gold); }
.pricing-band h3 {
  font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 8px; letter-spacing: -0.3px;
  border-left: 5px solid var(--gold); padding-left: 18px;
  max-width: 700px; margin-left: auto; margin-right: auto;
  text-align: left;
}
.pricing-band h3 span.hl { color: var(--gold); }
.pricing-band h4 {
  font-family: 'Jost', sans-serif; font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,0.78); margin-bottom: 0;
  max-width: 700px; margin-left: auto; margin-right: auto;
  padding-left: 23px; text-align: left;
}

.price-img-section { background: var(--off-white); padding: 48px; text-align: center; }
.price-img-section a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.price-img-section a:hover img { transform: scale(1.01); }

/* ── FEATURES — NEW: 3-col open grid, no borders, gold circle icon ── */
.features-section { background: var(--off-white); padding: 70px 48px; }
.open-grid {
  max-width: 1050px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: stretch;
}
.open-card {
  background: var(--white); border: none; border-radius: var(--radius-card);
  padding: 32px 24px 28px; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; height: 100%;
  /* NO border — key difference */
}
.open-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }

/* Gold circle icon at top */
.open-icon {
  width: 58px; height: 58px;
  background: var(--forest);          /* forest green circle */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,54,40,0.25);
}
.open-card h3 {
  font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 800;
  color: var(--forest); letter-spacing: 0.2px; line-height: 1.3;
}
.open-card p { font-size: 0.97rem; line-height: 1.78; color: var(--muted); flex: 1; }

/* ── HERITAGE TIMELINE (unique new section) ── */
.heritage-section { background: var(--cream); padding: 70px 48px; }
.heritage-steps {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.heritage-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border-light);
}
.heritage-step:last-child { border-bottom: none; }
.heritage-num {
  min-width: 52px; width: 52px; height: 52px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0; font-family: 'Jost', sans-serif; line-height: 1;
  box-shadow: 0 3px 10px rgba(200,149,10,0.30);
}
.heritage-text { flex: 1; min-width: 0; }
.heritage-text h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 800; color: var(--forest); letter-spacing: 0.2px; margin-bottom: 6px; }
.heritage-text p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--white); padding: 70px 48px; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 60px; }
.guarantee-img-wrap img { width: 100%; max-width: 280px; height: auto; object-fit: contain; display: block; }
.guarantee-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ── BENEFITS — also open-grid ── */
.benefits-section { background: var(--off-white); padding: 70px 48px; }

/* ── HOW TO CARE ── */
.howto-section { background: var(--cream); padding: 70px 48px; }
.howto-steps { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.howto-step {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); padding: 22px 26px;
  display: flex; flex-direction: row; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--forest);
}
.step-num {
  min-width: 44px; width: 44px; height: 44px; background: var(--forest);
  border-radius: var(--radius-btn); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-weight: 900;
  font-size: 1.1rem; flex-shrink: 0; font-family: 'Jost', sans-serif; line-height: 1;
}
.howto-step-text { flex: 1; min-width: 0; }
.howto-step h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--forest); letter-spacing: 0.2px; margin-bottom: 6px; }
.howto-step p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ── FAQs ── */
.faq-section { background: var(--white); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 24px; font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--forest); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.2s; line-height: 1.4; }
.faq-question:hover { background: var(--gold-light); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; color: var(--gold-dark); flex-shrink: 0; }
.faq-answer { display: none; padding: 16px 24px 20px; font-size: 1.03rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border-light); background: var(--white); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── ORDER / PRICING DETAILS ── */
.order-how-section { background: var(--off-white); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.order-img-wrap a:hover img { transform: scale(1.01); }

.pricing-details { background: var(--white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px 26px; border-left: 5px solid var(--gold); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 10px; letter-spacing: 0.2px; }
.info-block p, .info-block li { font-size: 1.03rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; margin: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "✔ "; color: var(--gold-dark); font-weight: 700; }

/* ── FINAL CTA ── */
.cta-final { background: var(--forest); padding: 80px 48px; text-align: center; border-top: 4px solid var(--gold); }
.cta-final h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--white); margin-bottom: 36px; line-height: 1.25;
  border-left: 5px solid var(--gold); padding-left: 18px;
  max-width: 700px; margin-left: auto; margin-right: auto;
  text-align: left;
}
.cta-final h2 span.hl { color: var(--gold); }
.cta-product-img { max-width: 420px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 12px 32px rgba(200,149,10,0.35)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05); }
.cta-regular-price { font-size: 1.1rem; color: rgba(255,255,255,0.50); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ── FOOTER ── */
footer { background: var(--forest-mid); padding: 48px 48px 30px; border-top: 1px solid rgba(200,149,10,0.20); }
.footer-cols { max-width: 1160px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
.footer-cols a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; font-weight: 500; font-family: 'Jost', sans-serif; transition: color 0.2s; padding: 5px 16px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--gold); }
.footer-legal { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 10px; }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.32); font-family: 'Jost', sans-serif; margin-top: 14px; }
.footer-copy a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.1rem; }
  .what-is-inner { grid-template-columns: 1fr 1.3fr; gap: 40px; }
  .open-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { display: flex; justify-content: center; }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cred-strip { flex-direction: column; align-items: center; gap: 8px; padding: 14px 20px; }
  .cred-item { border-right: none; font-size: 0.78rem; }
  .hero { padding: 44px 20px; }
  .hero-content h1 { font-size: 1.75rem; }
  .sec-title-band { padding: 40px 20px 34px; }
  .sec-title-band h2 { font-size: 1.4rem; padding-left: 14px; }
  .reviews-grid, .open-grid { grid-template-columns: 1fr; }
  .reviews-section, .what-is-section, .why-section, .features-section,
  .heritage-section, .guarantee-section, .benefits-section,
  .faq-section, .howto-section, .order-how-section { padding: 44px 20px; }
  .pricing-band, .cta-final { padding-left: 20px; padding-right: 20px; }
  .pricing-details, .price-img-section { padding: 32px 20px; }
  .cta-final h2 { font-size: 1.5rem; }
  .cta-current-price { font-size: 2rem; }
  footer { padding: 36px 20px 24px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}