:root {
  --bg: #f3f4f6;
  --bg-alt: #020617;
  --text: #020617;
  --muted: #6b7280;
  --primary: #0f172a;
  --accent: #22c55e;
  --border: rgba(148, 163, 184, 0.45);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
ht: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.98);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}
.site-logo span { color: var(--accent); }

.site-nav { display: flex; }
.nav-list {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-size: 0.95rem;
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.page-main { padding-bottom: 3rem; }

.section { padding: 3rem 0; }
.section-split { background: var(--bg-alt); }

.hero {
  padding: 3.75rem 0 3rem;
  position: relative;
  overflow: hidden;
  color: #e5e7eb;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.3), transparent 55%),
    linear-gradient(135deg, #020617, #020617);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.65;
  pointer-events: none;
}
.hero::before {
  width: 260px;
  height: 260px;
  background: rgba(56, 189, 248, 0.45);
  top: -40px;
  right: 12%;
}
.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(34, 197, 94, 0.45);
  bottom: -60px;
  left: 8%;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 640px; }

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-text {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.86);
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.hero .eyebrow { color: rgba(148, 163, 184, 0.95); }

.text-muted { color: var(--muted); }
.text-small { font-size: 0.8rem; color: var(--muted); }

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.9rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(34, 197, 94, 0.28);
}
.card:hover::before { opacity: 1; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem;
}

.section-header { margin-bottom: 1.5rem; }


.results-download {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease, border-color 180ms ease;
}
.btn-primary {
  background-image: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ecfdf5;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.45);
}
.btn-ghost {
  background: #ffffff;
  color: var(--primary);
  border-color: rgba(148, 163, 184, 0.8);
}
.btn-ghost:hover {
  background: #f9fafb;
  border-color: rgba(148, 163, 184, 1);
}
.hero .btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}
.hero .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(226, 232, 240, 0.9);
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--muted); }

/* Article */
.article-container { max-width: 760px; }
.article-container h1 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

/* Tables */
.table-wrapper { overflow-x: auto; }
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.table-wrapper th,
.table-wrapper td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
}
.table-wrapper th { background: var(--bg-alt); color: #e5e7eb; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #f9fafb;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 1rem;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.footer-logo { font-weight: 700; }
.footer-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: 0.35rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 0.75rem 0;
}

/* Inputs */
input[type="text"],
input[type="number"],
input[type="search"] {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.search-form {
  display: grid;
  gap: 0.75rem;
  max-width: 480px;
  margin-top: 1.25rem;
}

/* Tool-specific */
.debt-row { margin-bottom: 1.25rem; position: relative; }
.debt-row hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.debt-row label span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.method-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.method-toggle .btn.is-active { border-color: var(--primary); }

.disclaimer-block { margin-top: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    height: auto;
    padding: 0.75rem 0;
  }
  .site-nav { display: none; }
  .site-nav.nav-open {
    display: block;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1rem;
  }
  .nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav-toggle { display: inline-flex; }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/*
 * Hero icon styles
 * These icons are used in the hero sections of guides, tools, comparisons and blog landing pages.
 */
.hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-icon svg {
  width: 32px;
  height: 32px;
  stroke: #ecfdf5;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.hero-icon--guides {
  background-image: linear-gradient(135deg, #f59e0b, #eab308);
}
.hero-icon--tools {
  background-image: linear-gradient(135deg, #22c55e, #16a34a);
}
.hero-icon--compare {
  background-image: linear-gradient(135deg, #3b82f6, #2563eb);
}
.hero-icon--blog {
  background-image: linear-gradient(135deg, #ec4899, #db2777);
}

@media (max-width: 768px) {
  .hero-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
  }
  .hero-icon svg {
    width: 24px;
    height: 24px;
  }
}



/* Debt row remove button */
.remove-debt-row {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.remove-debt-row:hover {
  color: var(--danger, #c0392b);
}

/* ------------------------------------------------------------------ */
/* Showcase section styles */

.section-showcase {
  background: var(--bg-alt);
  color: #e5e7eb;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.section-showcase::before,
.section-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}
.section-showcase::before {
  width: 320px;
  height: 320px;
  background: rgba(34, 197, 94, 0.4);
  top: -70px;
  right: 6%;
}
.section-showcase::after {
  width: 280px;
  height: 280px;
  background: rgba(56, 189, 248, 0.4);
  bottom: -80px;
  left: 6%;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}
.showcase-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #f8fafc;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 600ms ease, opacity 600ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.showcase-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.35);
  border-color: rgba(34, 197, 94, 0.35);
}
.showcase-card h3 {
  margin: 0.9rem 0 0.5rem;
  font-size: 1.35rem;
  color: #ffffff;
}
.showcase-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.8);
}
.showcase-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.showcase-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ecfdf5;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
/* Individual card accent colours */
.showcase-card--guides .showcase-icon {
  background-image: linear-gradient(135deg, #f59e0b, #eab308);
}
.showcase-card--tools .showcase-icon {
  background-image: linear-gradient(135deg, #22c55e, #16a34a);
}
.showcase-card--compare .showcase-icon {
  background-image: linear-gradient(135deg, #3b82f6, #2563eb);
}
.showcase-card--blog .showcase-icon {
  background-image: linear-gradient(135deg, #ec4899, #db2777);
}

/* Accent colours for solutions cards */
.showcase-card--credit .showcase-icon {
  background-image: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.showcase-card--consolidation .showcase-icon {
  background-image: linear-gradient(135deg, #2dd4bf, #14b8a6);
}
.showcase-card--relief .showcase-icon {
  background-image: linear-gradient(135deg, #f87171, #ef4444);
}

/* Solutions section styling (credit, consolidation, relief) */
.section-solutions {
  background: var(--bg-alt);
  color: #e5e7eb;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
/* Remove radial glow for solutions section to create solid background like the 'What we do' section */
.section-solutions::before,
.section-solutions::after {
  display: none;
}

/* Results overview bar */
.results-overview {
  margin: 1.5rem 0 1.75rem;
}

.results-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem 1.75rem;
  align-items: flex-start;
  padding: 1rem 1.35rem;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.results-overview-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.results-overview-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.results-overview-main {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Per-method key stats */
.method-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.1rem 0 1.5rem;
}

.method-kpi {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f9fafb;
}

.method-kpi-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.method-kpi-value {
  display: block;
  font-weight: 600;
  margin-top: 0.2rem;
}

.method-kpi-note {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .results-overview-grid {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }
}


/* Illustrative payment shift list */
.payment-shift-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-shift-list li {
  padding-left: 0;
}


.results-overview-note {
  font-size: 0.8rem;
  color: var(--muted);
}


.results-overview-heading {
  text-align: center;
  margin-bottom: 0.75rem;
}


#results-details {
  margin-top: 2.5rem;
}


#extra-impact {
  margin: 1.75rem auto 0;
}


/* Ensure spacing between 'Impact of your extra payment' card and summaries grid */
#extra-impact {
  margin-bottom: 2rem;
}


.btn-secondary {
  background: #ffffff;
  color: var(--primary);
  border-color: rgba(148, 163, 184, 0.85);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.results-partners {
  margin-top: 1.75rem;
}

.results-partners-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.results-partners-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.results-partners-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}

@media (min-width: 768px) {
  .results-partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.results-partner h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.results-partner p {
  font-size: 0.9rem;
  color: var(--muted);
}


/* Results – partner block visual styling */
.results-partners {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}

.results-partners-header h3 {
  font-size: 1.3rem;
}

.results-partners-grid {
  align-items: stretch;
}

.results-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.results-partner .btn {
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .results-partner {
    padding-left: 1.4rem;
    border-left: 1px solid rgba(148, 163, 184, 0.35);
  }
  .results-partner:first-child {
    padding-left: 0;
    border-left: none;
  }
  .results-partner .btn {
    margin-top: auto;
  }
}


/* Partner card – enhanced visual styling */
.results-partners.card {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.06), #ffffff);
  border-color: rgba(148, 163, 184, 0.35);
}

.results-partners.card::before {
  opacity: 1;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.06), transparent 60%);
}

.results-partners-header h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.results-partners-header {
  margin-bottom: 1.1rem;
}

.results-partners-label {
  font-weight: 500;
}

/* Partner columns */
.results-partners-grid {
  align-items: stretch;
  column-gap: 2.25rem;
  row-gap: 1.75rem;
}

.results-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.results-partner h4 {
  font-size: 1.02rem;
}

.results-partner p {
  line-height: 1.45;
}

/* CTA buttons – centred text & pill style */
.results-partner .btn {
  margin-top: 0.9rem;
  padding-inline: 1.75rem;
}

.btn-secondary,
.btn-secondary:visited {
  background: #f9fafb;
}

.btn-secondary {
  justify-content: center;
  text-align: center;
  min-width: 0;
}

@media (min-width: 768px) {
  .results-partners {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .results-partner {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(148, 163, 184, 0.32);
  }

  .results-partner:first-child {
    padding-left: 0;
    border-left: none;
  }

  .results-partner .btn {
    margin-top: auto;
  }
}

/* === Blog listing enhancements === */

/* Container for category filter buttons */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Pagination container */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* Generic button styles reused for category and pagination buttons */
.category-filters .btn,
.pagination .btn {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

/* Active state for category and pagination buttons */
.category-filters .btn.active,
.pagination .btn.active {
  background-image: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ecfdf5;
  border-color: transparent;
}

/* Disabled state for pagination buttons */
.pagination .btn[disabled] {
  opacity: 0.5;
  cursor: default;
}

/* Meta information for blog posts */
.post-meta {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ------------------------------------------------------------------- */
/* Hero offers panel styles */
/* ------------------------------------------------------------------- */
.hero-offers {
  max-width: 380px;
  flex: 1;
  background: rgba(2, 7, 23, 0.65);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.25rem;
  color: #f8fafc;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.4);
}

.hero-offers h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  color: #ffffff;
}

.hero-offers .text-small {
  margin-bottom: 1rem;
  color: rgba(226, 232, 240, 0.85);
}

.offers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.offer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.6rem 0.8rem;
  color: #f8fafc;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.35);
  border-color: rgba(34, 197, 94, 0.3);
}

.offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.offer-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Accent backgrounds for each offer */
.offer-link--credit .offer-icon {
  background-image: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.offer-link--consolidation .offer-icon {
  background-image: linear-gradient(135deg, #2dd4bf, #14b8a6);
}

.offer-link--relief .offer-icon {
  background-image: linear-gradient(135deg, #f87171, #ef4444);
}

/* Responsive adjustments for hero panel */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-offers {
    margin-top: 2rem;
    max-width: 100%;
  }
}
