/* ============================================================
   MATSATO™ CHEF KNIFE — css/style.css
   Domain: us-en-matsato.com
   Theme: Dark Charcoal #1C1A17 + Warm Orange #D4640A
   Navbar:   Charcoal bg + TOP orange border + orange logo (NEW)
   Headings: Orange pill label above h2 + sentence case 700 (NEW)
   Buttons:  Orange fill + charcoal text + sharp 3px + forge-glow (NEW)
   Cards:    Horizontal left-orange-border feature cards
   Font: Jost (Google Fonts)
   ============================================================ */

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

:root {
  --charcoal:      #1C1A17;
  --charcoal-mid:  #2A2720;
  --charcoal-warm: #3D3830;
  --orange:        #D4640A;
  --orange-dark:   #A84D08;
  --orange-mid:    #E87520;
  --orange-light:  #FFF0E6;
  --orange-pale:   #FFF8F4;
  --cream:         #F8F1E9;
  --off-white:     #FBF6F0;
  --white:         #FFFFFF;
  --text:          #1C1A17;
  --muted:         #4A3A2C;
  --border:        #E0C9B5;
  --steel:         #8C8C8C;
  --radius:        10px;
  --radius-card:   12px;
  --radius-btn:    3px;   /* sharp corners — forge aesthetic */
  --radius-pill:   50px;
  --shadow:        0 4px 20px rgba(28,26,23,0.12);
  --shadow-h:      0 12px 40px rgba(28,26,23,0.22);
  --shadow-card:   0 2px 14px rgba(28,26,23,0.07);
  --shadow-btn:    0 4px 18px rgba(212,100,10,0.40);
  --shadow-nav:    0 2px 24px rgba(28,26,23,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;
}

/* ── LABEL PILL — above section headings (NEW) ── */
.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 14px; border-radius: var(--radius-pill);
  margin-bottom: 12px; border: 1px solid rgba(212,100,10,0.2);
}
/* on dark bg */
.section-label.light {
  background: rgba(212,100,10,0.20);
  color: var(--orange-mid);
  border-color: rgba(212,100,10,0.35);
}

/* ── NAVBAR — Charcoal + orange TOP border (NEW) ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--charcoal);
  padding: 0 24px; height: 72px;
  box-shadow: var(--shadow-nav);
  border-top: 4px solid var(--orange);  /* TOP border — different from all TrimX */
}
.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(--orange); 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.75); 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(--orange); }

/* Nav CTA — orange fill, charcoal text */
.btn-nav-order {
  background: var(--orange) !important; color: var(--charcoal) !important;
  font-weight: 800 !important; font-size: 0.87rem !important;
  padding: 9px 22px !important; border-radius: var(--radius-btn) !important;
  border: none !important; transition: all 0.2s !important;
  white-space: nowrap; text-decoration: none; line-height: 1;
  box-shadow: 0 2px 10px rgba(212,100,10,0.35) !important;
}
.btn-nav-order:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(212,100,10,0.50) !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(--charcoal);
  position: absolute; top: 72px; left: 0; right: 0;
  padding: 24px 32px; gap: 18px; z-index: 999;
  border-top: 1px solid rgba(212,100,10,0.25);
}
.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: var(--orange); color: var(--charcoal); text-align: center;
  padding: 12px; border-radius: var(--radius-btn); font-weight: 800;
  margin-top: 6px; font-size: 0.95rem;
}

/* ── BUTTONS — Orange forge-glow (NEW) ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: var(--charcoal);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: 0.3px; padding: 15px 34px;
  border-radius: var(--radius-btn); border: none;
  text-decoration: none; transition: all 0.22s;
  box-shadow: var(--shadow-btn); line-height: 1.2;
}
.btn-primary:hover {
  background: var(--charcoal); color: var(--white);
  box-shadow: 0 6px 28px rgba(28,26,23,0.40);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--orange);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.97rem;
  padding: 13px 28px; border-radius: var(--radius-btn);
  border: 2px solid var(--orange); text-decoration: none;
  transition: all 0.2s; line-height: 1.2;
}
.btn-outline:hover {
  background: var(--orange); color: var(--charcoal);
  box-shadow: var(--shadow-btn); transform: translateY(-2px);
}

/* ── SECTION BANDS — Charcoal bg + sentence case 700 + label pill above ── */
.sec-title-band {
  background: var(--charcoal); padding: 52px 40px 44px; text-align: center;
}
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem;
  font-weight: 700;           /* NOT 800/900, NOT uppercase */
  color: var(--white); line-height: 1.22;
  display: block; letter-spacing: 0.2px;
}
.sec-title-band h2 span.hl { color: var(--orange); }
.sec-title-band h2::after {
  content: ''; display: block; width: 50px; height: 3px;
  background: var(--orange); margin: 16px auto 0; border-radius: 2px;
}

/* ── 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(28,26,23,0.28));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04); }

/* Matsato hero heading — sentence case, 700 */
.hero-content .hero-label {
  display: inline-block; background: var(--orange-light);
  color: var(--orange-dark); font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 14px; border-radius: var(--radius-pill);
  margin-bottom: 16px; border: 1px solid rgba(212,100,10,0.2);
}
.hero-content h1 {
  font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 700;
  line-height: 1.1; color: var(--charcoal); margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.hero-content h1 strong { color: var(--orange); 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(--charcoal); font-size: 0.98rem; display: block;
  margin-top: 8px; padding: 12px 16px 12px 20px; background: var(--orange-light);
  border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ── CRAFT BAR ── */
.craft-bar {
  background: var(--charcoal); padding: 18px 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 36px;
  border-top: none; border-bottom: 3px solid var(--orange);
}
.craft-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88); font-family: 'Jost', sans-serif;
  font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.craft-item .ci-num { font-size: 1.2rem; font-weight: 900; color: var(--orange); line-height: 1; }

/* ── 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);
  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-bottom: 4px solid var(--orange);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.reviewer-photo-wrap {
  width: 100%; height: 200px; overflow: hidden; background: var(--orange-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(--orange-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(--orange-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(--charcoal); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border); }

/* ── WHAT IS / WHY / PROSE ── */
.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(28,26,23,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(--charcoal); padding: 44px 40px 14px; text-align: center; border-top: 4px solid var(--orange); }
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.2px; }
.pricing-band h3 span.hl { color: var(--orange); }
.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; }

.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 — Horizontal left-orange-border cards ── */
.features-section { background: var(--off-white); padding: 70px 48px; }
.feature-list { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.feature-row {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 22px 26px;
  display: flex; flex-direction: row; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.25s;
  border-left: 5px solid var(--orange);
}
.feature-row:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
.feature-row-icon {
  min-width: 52px; width: 52px; height: 52px;
  background: var(--orange-light); border-radius: var(--radius-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1; flex-shrink: 0;
  border: 1px solid rgba(212,100,10,0.20);
}
.feature-row-text { flex: 1; min-width: 0; }
.feature-row h3 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.2px; margin-bottom: 6px; line-height: 1.3; }
.feature-row p { font-size: 1rem; line-height: 1.78; color: var(--muted); }

/* ── SPECS GRID ── 3-col centered badge (like TrimX5) ── */
.specs-section { background: var(--cream); padding: 70px 48px; }
.specs-grid {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.spec-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 22px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.25s;
  border-top: 4px solid var(--charcoal); height: 100%;
}
.spec-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
.spec-icon {
  width: 60px; height: 60px; background: var(--charcoal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; line-height: 1;
}
.spec-card h3 { font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.3px; line-height: 1.3; }
.spec-card p { font-size: 0.95rem; line-height: 1.76; color: var(--muted); }
.spec-val { font-family: 'Jost', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--orange); line-height: 1; }

/* ── 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 ── */
.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); 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(--charcoal); }
.step-num { min-width: 44px; width: 44px; height: 44px; background: var(--charcoal); border-radius: var(--radius-btn); display: flex; align-items: center; justify-content: center; color: var(--white); 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(--charcoal); 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); 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(--charcoal); 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(--orange-light); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; color: var(--orange-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); 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); border-radius: var(--radius); padding: 22px 26px; border-left: 5px solid var(--orange); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; letter-spacing: 0.3px; }
.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(--orange-dark); font-weight: 700; }

/* ── FINAL CTA ── */
.cta-final { background: var(--charcoal); padding: 80px 48px; text-align: center; border-top: 4px solid var(--orange); }
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 36px; line-height: 1.25; }
.cta-final h2 span.hl { color: var(--orange); }
.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(212,100,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(--orange); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ── FOOTER ── */
footer { background: var(--charcoal-mid); padding: 48px 48px 30px; border-top: 1px solid rgba(212,100,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(--orange); }
.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(--orange); }

/* ── 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; }
  .specs-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; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .craft-bar { padding: 12px 20px; gap: 14px; }
  .craft-item { font-size: 0.76rem; }
  .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.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .reviews-section, .what-is-section, .why-section, .features-section,
  .specs-section, .guarantee-section, .benefits-section,
  .faq-section, .howto-section, .order-how-section { padding: 44px 20px; }
  .pricing-details, .price-img-section { padding: 32px 20px; }
  .cta-final { padding: 56px 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; }
}