/* ============================================================
   SALON TECH SERVICES — Design System
   salontechservices.co.uk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:           #faf9f7;
  --bg-alt:       #eeebe6;
  --surface:      #ffffff;
  --surface-2:    #f4f1ec;
  --surface-3:    #e6e1da;
  --border:       rgba(54, 50, 45, 0.12);
  --border-hover: rgba(54, 50, 45, 0.25);

  --accent:       #8f877c;
  --accent-light: #6e685f;
  --accent-dim:   rgba(143, 135, 124, 0.15);
  --accent-glow:  rgba(143, 135, 124, 0.25);

  --text:         #171615;
  --text-2:       #23211f;
  --muted:        #6e685f;

  --success:      #22c55e;
  --gold:         #f59e0b;
  --danger:       #ef4444;

  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --radius-pill:  999px;

  --shadow-card:  0 4px 24px rgba(0,0,0,0.06);
  --shadow-glow:  0 0 40px rgba(143, 135, 124, 0.15);

  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
.display { font-family: var(--font-display); font-size: clamp(2.6rem,6vw,4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.h2      { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.h3      { font-family: var(--font-display); font-size: clamp(1.2rem,2vw,1.5rem); font-weight: 600; line-height: 1.3; }
.lead    { font-size: clamp(1rem,1.5vw,1.2rem); color: var(--text-2); line-height: 1.7; }
.label   { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); }

/* ── Layout ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section-sm{ padding: 64px 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: #6d28d9;
  box-shadow: 0 0 32px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-1px);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(124,58,237,0.15);
  transform: translateY(-3px);
}
.card-glow:hover { box-shadow: var(--shadow-card), var(--shadow-glow); }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-accent  { background: var(--accent-dim); color: var(--accent-light); border: 1px solid rgba(124,58,237,0.3); }
.badge-success { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.badge-muted   { background: rgba(255,255,255,0.05); color: var(--text-2); border: 1px solid var(--border); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo img { 
  height: 42px; 
  width: auto; 
  filter: invert(1) contrast(1.2);
  mix-blend-mode: multiply; 
  border-radius: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(250,249,247,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(143,135,124,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(143,135,124,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { max-width: 560px; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-headline { margin-bottom: 24px; }
.hero-headline .accent { color: var(--accent-light); }
.hero-lead { margin-bottom: 36px; max-width: 480px; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-trust-item .check { color: var(--success); font-size: 1rem; }

.hero-visual {
  position: relative;
}
.hero-screenshot {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.15), 0 0 60px rgba(143,135,124,0.15);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.hero-screenshot:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.hero-floating-badge {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-1 { bottom: -18px; left: -18px; animation-delay: 0s; }
.hero-badge-2 { top: -18px; right: -18px; animation-delay: 1.2s; }
.hero-badge-3 { bottom: 30%; right: -28px; animation-delay: 2.4s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Social proof bar ────────────────────────────────────── */
.proof-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.proof-quote { font-size: 0.95rem; color: var(--text-2); font-style: italic; max-width: 500px; }
.proof-attr { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ── Bento Grid (Features) ───────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-3px);
}
.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }

/* Internal glow for bento cards */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(143,135,124,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
  transition: opacity var(--transition);
}
.bento-card:hover::before {
  opacity: 0.8;
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid rgba(143,135,124,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.bento-content {
  position: relative;
  z-index: 1;
}
.bento-content h3 { margin-bottom: 12px; font-size: 1.35rem; }
.bento-content p { font-size: 0.95rem; color: var(--text-2); line-height: 1.6; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-3 { grid-column: span 2; flex-direction: column !important; align-items: flex-start !important; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2, .bento-span-3 { grid-column: span 1; }
}

/* ── Deep dive (alternating) ─────────────────────────────── */
.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.deep-dive:last-child { margin-bottom: 0; }
.deep-dive.reverse .deep-visual { order: -1; }
.deep-content h2 { margin-bottom: 16px; }
.deep-content .lead { margin-bottom: 28px; }
.deep-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.deep-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.deep-bullet::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
}
.deep-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.section-label { margin-bottom: 16px; }
.section-header { margin-bottom: 64px; }
.section-header .h2 { margin-bottom: 14px; }
.section-header .lead { max-width: 540px; margin: 0 auto; }

/* ── How it works ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(143,135,124,0.3));
}
.step-card {
  text-align: center;
  padding: 36px 28px;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px var(--accent-glow);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; color: var(--text-2); }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-glow);
}
.chairs-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chair-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all var(--transition);
}
.chair-btn:hover { border-color: var(--accent-light); color: var(--accent-light); }
.chair-btn.active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: #fff;
  box-shadow: 0 0 16px var(--accent-glow);
}
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.price-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.price-box.highlighted { border-color: var(--accent); background: var(--accent-dim); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount .per { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.price-breakdown { font-size: 0.8rem; color: var(--text-2); line-height: 1.8; }
.pricing-meta {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.9;
}
.pricing-meta strong { color: var(--text-2); }
.pricing-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-guarantees {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--muted);
}
.pricing-guarantee .check { color: var(--success); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent-light); }
.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent-dim);
  border-color: var(--accent);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── Final CTA ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #eeebe6 0%, #faf9f7 50%, #eeebe6 100%);
  border-top: 1px solid rgba(143,135,124,0.2);
  border-bottom: 1px solid rgba(143,135,124,0.2);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143,135,124,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner .h2 { margin-bottom: 16px; }
.cta-inner .lead { margin: 0 auto 36px; max-width: 480px; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-logo img { 
  height: 38px; 
  filter: invert(1) contrast(1.2);
  mix-blend-mode: multiply;
}
.footer-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.footer-contact { margin-top: 16px; }
.footer-contact a { font-size: 0.85rem; color: var(--muted); display: block; margin-bottom: 4px; transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent-light); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; color: var(--text-2); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-2); }

/* ── Scroll animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .hero-badge-3 { display: none; }
  .deep-dive { grid-template-columns: 1fr; gap: 40px; }
  .deep-dive.reverse .deep-visual { order: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; max-width: 100%; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .pricing-wrapper { padding: 28px 20px; }
  .pricing-split { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; }
  .hero-badge-1, .hero-badge-2 { display: none; }
  .pricing-guarantees { gap: 16px; }
}
