:root {
  --yellow: #ffd229;
  --yellow-strong: #ffc20e;
  --black: #111111;
  --ink: #20231f;
  --muted: #5f645d;
  --green: #77a957;
  --green-deep: #5f8f3e;
  --green-soft: #eaf2df;
  --white: #ffffff;
  --panel: #fffbe8;
  --line: #ece6c9;
  --shadow: 0 24px 50px rgba(17, 17, 17, 0.12), 0 4px 10px rgba(17, 17, 17, 0.05);
  --shadow-soft: 0 12px 28px rgba(17, 17, 17, 0.08), 0 2px 6px rgba(17, 17, 17, 0.04);
  --radius: 14px;
  --radius-sm: 10px;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: break-word;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--black);
}

.brand-logo {
  display: grid;
  grid-template-columns: auto 46px;
  grid-template-rows: 44px auto;
  column-gap: 6px;
  align-items: end;
}

.brand-tg {
  font-size: 2.72rem;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.logo-chart {
  position: relative;
  width: 46px;
  height: 42px;
  border-bottom: 3px solid var(--black);
}

.logo-chart i {
  position: absolute;
  bottom: 0;
  width: 8px;
  background: #b9d49b;
  border: 2px solid var(--black);
}

.logo-chart i:nth-child(1) {
  left: 8px;
  height: 13px;
}

.logo-chart i:nth-child(2) {
  left: 22px;
  height: 21px;
}

.logo-chart i:nth-child(3) {
  left: 36px;
  height: 29px;
}

.logo-chart svg {
  position: absolute;
  inset: -9px auto auto 0;
  width: 42px;
  height: 36px;
  fill: none;
  stroke: var(--black);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-bookkeeping {
  grid-column: 1 / 3;
  font-size: 0.64rem;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.nav-menu > a:not(.btn):hover {
  color: var(--green-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.btn-light {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 10px 24px rgba(255, 194, 14, 0.35);
}

.btn-light:hover {
  background: var(--yellow-strong);
  border-color: var(--yellow-strong);
}

.btn-small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.section {
  padding: 76px 0;
}

#about.section {
  padding: 76px 0;
}

.section-yellow {
  background: var(--yellow);
}

.section-soft {
  background: var(--panel);
}

.hero {
  position: relative;
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(180deg, var(--yellow) 0%, #ffdc4d 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(17, 17, 17, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.hero-copy,
.finance-visual,
.split > *,
.about-grid > *,
.pricing-grid > *,
.final-cta-grid > *,
.service-card,
.benefit-grid article,
.pricing-card,
.contact-card {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--black);
}


h1,
h2,
h3 {
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.1vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 22px;
  color: #24251f;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.finance-visual {
  position: relative;
  min-height: 0;
  isolation: isolate;
}

.hero-accent {
  display: none;
}

.dashboard-card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  padding: 26px 28px 22px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  box-shadow:
    0 30px 60px rgba(17, 17, 17, 0.12),
    0 6px 14px rgba(17, 17, 17, 0.05);
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.dashboard-label {
  margin: 0 0 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.dashboard-period {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

.dashboard-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.stat-label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

.dashboard-chart {
  display: block;
  width: 100%;
  height: 160px;
  margin-bottom: 14px;
}

.dashboard-chart .grid-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.06);
  stroke-width: 1;
}

.dashboard-chart .trend {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-chart .trend-point {
  fill: var(--white);
  stroke: var(--green);
  stroke-width: 3;
}

.dashboard-legend {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: 1px;
}

.legend-dot-green { background: var(--green); }
.legend-dot-muted { background: #c9ccc2; }

.hero-meta {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(119, 169, 87, 0.18);
}

.trust-bar {
  background: #fff8d6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 36px;
  padding: 22px 0;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
}

.trust-list span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

.split,
.about-grid,
.pricing-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.problem-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.problem-section.section {
  padding: 62px 0;
}

.problem-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.problem-section .copy-stack {
  padding: 24px 28px;
  border-left: 2px solid #d6d8cf;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.copy-stack p {
  margin-bottom: 12px;
  color: #454a43;
  font-size: 1.05rem;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.strong-line {
  color: var(--black) !important;
  font-weight: 900;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 30px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card,
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.service-card p,
.benefit-grid p,
.pricing-grid p {
  color: var(--muted);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--black);
  font-weight: 700;
}

.icon svg,
.benefit-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--black);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.xero-icon {
  background: var(--green);
  color: var(--white);
  font-size: 1.35rem;
}

.founder-panel {
  min-height: auto;
  padding: 32px;
  background: #f4f5f1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  min-width: 0;
}

.founder-header p {
  margin-bottom: 0;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-panel > p {
  margin-bottom: 12px;
  color: #454a43;
}

.founder-panel > p:last-child {
  margin-bottom: 0;
}

.founder-initials {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--black);
  border: 8px solid var(--white);
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.12);
}

.founder-photo {
  width: 128px;
  height: 128px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.18);
}

@media (max-width: 640px) {
  .founder-photo {
    width: 112px;
    height: 112px;
  }
}

.trust-points-panel {
  padding: 8px 0;
}

.trust-points {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.trust-points span {
  position: relative;
  display: block;
  min-height: 94px;
  padding: 18px 20px 18px 76px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  overflow-wrap: break-word;
}

.trust-points span::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
}

.trust-points strong {
  display: block;
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.pricing-section {
  background:
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.4), transparent 55%),
    linear-gradient(180deg, var(--yellow) 0%, #ffdc4d 100%);
}

.pricing-section.section {
  padding: 84px 0;
}

.pricing-section .pricing-grid > div:first-child p {
  color: var(--ink);
}

.pricing-grid {
  align-items: center;
}

.pricing-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--yellow);
}

.package-label {
  margin-bottom: 12px;
  color: var(--green-deep) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
  color: var(--black);
  line-height: 1;
}

.price-old {
  position: relative;
  color: var(--muted);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(95, 100, 93, 0.7);
}

.price-new {
  font-size: clamp(3rem, 6.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.price-period {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.intro-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-debit {
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  overflow-wrap: break-word;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.5em;
  width: 14px;
  height: 14px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7.5l2.8 2.8L11 5' fill='none' stroke='%2377a957' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  border: 0;
  border-radius: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.benefit-grid article {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.benefit-grid p {
  margin-bottom: 0;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green-soft);
}

.final-cta {
  padding: 64px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.45), transparent 55%),
    linear-gradient(180deg, var(--yellow) 0%, #ffdc4d 100%);
}

.final-cta-grid {
  align-items: center;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.final-cta > .container > .final-cta-grid > div:first-child > p {
  color: var(--ink);
  max-width: 460px;
}

.contact-card {
  display: flex;
  justify-content: flex-end;
}

.contact-card .btn {
  min-width: 260px;
}


.site-footer {
  padding: 28px 0;
  background: #0b0b0b;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
}

.site-footer p {
  margin: 6px 0 0;
  color: #d6d9cf;
}

.disclaimer {
  font-size: 0.88rem;
}

.footer-credit {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-credit p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-credit a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 16px;
    font-size: 0.88rem;
  }

  .btn-small {
    padding: 0 14px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu .btn {
    margin-top: 8px;
  }

  .hero-grid,
  .split,
  .about-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero {
    padding: 56px 0 70px;
  }

  .finance-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .dashboard-card {
    margin-right: auto;
  }

  .hero-accent {
    right: -20px;
    top: -10px;
    width: 160px;
    height: 160px;
  }

  .problem-section.section {
    padding: 58px 0;
  }

  .pricing-section.section {
    padding: 60px 0 68px;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 74px;
  }

  .nav-menu {
    top: 74px;
  }

  .brand-tg {
    font-size: 2.05rem;
  }

  .brand-logo {
    grid-template-columns: auto 39px;
    grid-template-rows: 35px auto;
  }

  .logo-chart {
    width: 39px;
    height: 34px;
    border-bottom-width: 3px;
  }

  .logo-chart i {
    width: 8px;
    border-width: 2px;
  }

  .logo-chart i:nth-child(1) {
    left: 7px;
    height: 12px;
  }

  .logo-chart i:nth-child(2) {
    left: 20px;
    height: 19px;
  }

  .logo-chart i:nth-child(3) {
    left: 33px;
    height: 27px;
  }

  .brand-bookkeeping {
    font-size: 0.5rem;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .dashboard-card {
    padding: 22px 22px 18px;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .hero-meta {
    gap: 10px 18px;
    font-size: 0.88rem;
  }

  .section {
    padding: 54px 0;
  }

  #about.section {
    padding: 54px 0;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2.3rem, 9.5vw, 3rem);
  }

  h2 {
    margin-bottom: 12px;
  }

  .hero-text {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

  .finance-visual {
    width: 100%;
  }

  .problem-section .copy-stack {
    padding: 20px;
    border-left: 4px solid var(--green);
  }

  .service-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .trust-list {
    gap: 10px 22px;
    padding: 18px 0;
  }


  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .founder-panel {
    padding: 22px;
  }

  .founder-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
  }

  .founder-initials {
    width: 112px;
    height: 112px;
    font-size: 2rem;
  }

  .trust-points {
    gap: 12px;
  }

  .trust-points span {
    min-height: auto;
    padding: 16px 16px 16px 68px;
  }

  .pricing-card {
    padding: 24px;
  }

  .price {
    font-size: clamp(3rem, 18vw, 4rem);
  }

  .benefit-grid {
    gap: 14px;
  }

  .benefit-grid article {
    padding: 22px;
  }

  .contact-card {
    justify-content: stretch;
  }

  .contact-card .btn {
    width: 100%;
    min-width: 0;
  }

  .final-cta {
    padding: 34px 0;
  }

  .footer-grid {
    gap: 18px;
  }
}
