:root {
  --ink: #171a12;
  --ink-soft: #272b20;
  --text: #3f4437;
  --muted: #6f7568;
  --line: rgba(23, 26, 18, .14);
  --line-soft: rgba(23, 26, 18, .09);
  --surface: #ffffff;
  --background: #f3f2eb;
  --primary: #171a12;
  --primary-dark: #050604;
  --acid: #c9ff63;
  --acid-strong: #b7f13f;
  --violet: #5848d8;
  --orange: #ff754a;
  --sky: #bde9ff;
  --focus: rgba(109, 93, 252, .35);
  --shadow: 0 30px 90px rgba(23, 26, 18, .12);
}

html {
  scroll-padding-top: 90px;
}

body {
  background:
    radial-gradient(circle at 12% 3%, rgba(201, 255, 99, .18), transparent 20rem),
    var(--background);
  color: var(--ink);
  font-family: "Manrope", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--acid);
}

h1,
h2,
h3 {
  font-family: "Manrope", "DM Sans", sans-serif;
  letter-spacing: -.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.6rem, 6.8vw, 6.2rem);
  font-weight: 800;
  line-height: .92;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.55rem, 4.6vw, 4.6rem);
  font-weight: 800;
  line-height: .98;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.container {
  width: min(1240px, calc(100% - 48px));
  max-width: none;
}

.nav {
  top: 12px;
  z-index: 40;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid rgba(23, 26, 18, .12);
  border-radius: 18px;
  background: rgba(250, 249, 244, .88);
  box-shadow: 0 10px 40px rgba(23, 26, 18, .07);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-inner {
  min-height: 70px;
  padding: 0 12px 0 18px;
}

.brand {
  gap: 10px;
  min-height: 46px;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  height: 3px;
  border-radius: 999px;
  background: var(--acid);
}

.brand-mark::before {
  top: 10px;
  width: 16px;
  box-shadow: 0 6px 0 #fff;
}

.brand-mark::after {
  top: 22px;
  width: 10px;
}

.nav-links {
  gap: 28px;
  font-size: .86rem;
  font-weight: 750;
}

.nav-links a:not(.btn) {
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: -.015em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn::after {
  content: "\2197";
  margin-left: 11px;
  font-size: 1.05em;
  transition: transform .2s ease;
}

.btn[href^="#"]::after {
  content: "\2193";
}

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

.btn:hover::after {
  transform: translate(2px, -2px);
}

.btn[href^="#"]:hover::after {
  transform: translateY(2px);
}

.btn.primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  box-shadow: 0 8px 24px rgba(157, 212, 53, .24);
}

.btn.primary:hover {
  color: var(--ink);
  background: var(--acid-strong);
  border-color: var(--acid-strong);
  box-shadow: 0 13px 30px rgba(157, 212, 53, .3);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(23, 26, 18, .16);
}

.btn.secondary:hover {
  background: #fff;
  border-color: var(--ink);
}

.hero {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  top: 54px;
  right: -8vw;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(23, 26, 18, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255, 255, 255, .2), 0 0 0 12vw rgba(201, 255, 99, .06);
  pointer-events: none;
}

.hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(440px, .72fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(23, 26, 18, .15);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .55);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-copy h1 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-style: normal;
}

.hero-copy h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: .01em;
  left: -.08em;
  height: .28em;
  border-radius: 5px;
  background: var(--acid);
  transform: rotate(-1deg);
}

.hero-copy p {
  max-width: 660px;
  margin-top: 28px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 34px;
}

.hero-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 20px !important;
  color: var(--muted) !important;
  font-size: .82rem !important;
}

.hero-note::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #22a35a;
  box-shadow: 0 0 0 4px rgba(34, 163, 90, .13);
}

.launch-panel {
  position: relative;
  border: 1px solid rgba(23, 26, 18, .2);
  border-radius: 26px;
  background: var(--ink);
  box-shadow: 0 44px 100px rgba(23, 26, 18, .24), 0 8px 0 rgba(23, 26, 18, .08);
  transform: rotate(1.4deg);
  overflow: visible;
}

.launch-panel::before {
  content: "LIVE BUSINESS";
  position: absolute;
  z-index: 2;
  top: -18px;
  right: 30px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
  transform: rotate(-4deg);
}

.demo-preview {
  aspect-ratio: 16 / 9;
  margin: 10px 10px 0;
  border: 0;
  border-radius: 18px 18px 8px 8px;
  background: #e7e5dc;
  overflow: hidden;
}

.demo-preview iframe,
.demo-preview img {
  filter: saturate(.92) contrast(1.02);
}

.demo-preview-label {
  color: var(--ink);
  background: var(--acid);
}

.panel-header {
  padding: 23px 26px 20px;
  border-color: rgba(255, 255, 255, .12);
}

.panel-header span {
  color: rgba(255, 255, 255, .56);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.panel-header strong {
  color: #fff;
  font-size: 1.42rem;
  letter-spacing: -.035em;
}

.launch-list div {
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 16px 26px;
  border-color: rgba(255, 255, 255, .1);
}

.launch-list dt {
  color: var(--acid);
  font-size: .82rem;
}

.launch-list dd {
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
}

.panel-metrics {
  border-color: rgba(255, 255, 255, .12);
}

.metric {
  border-color: rgba(255, 255, 255, .1);
}

.metric strong {
  color: #fff;
  font-size: .9rem;
}

.metric span {
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
}

section {
  padding: 112px 0;
}

.section-head {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

#how {
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

#how::after {
  content: "01\00a0\00a0 02\00a0\00a0 03\00a0\00a0 04";
  position: absolute;
  right: -20px;
  bottom: -58px;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(7rem, 16vw, 15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  white-space: nowrap;
  pointer-events: none;
}

#how h2,
#how h3 {
  color: #fff;
}

#how .eyebrow {
  color: var(--acid);
  border-color: rgba(201, 255, 99, .25);
  background: rgba(201, 255, 99, .06);
}

#how .section-head p {
  color: rgba(255, 255, 255, .62);
}

.steps {
  position: relative;
  z-index: 1;
  gap: 0;
}

.step {
  padding: 30px 26px 32px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: transparent;
}

.step + .step {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.step::before {
  width: auto;
  height: auto;
  margin-bottom: 44px;
  justify-content: start;
  border-radius: 0;
  color: var(--acid);
  background: transparent;
  font-size: .72rem;
  letter-spacing: .12em;
}

.step p {
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
}

.surface-section {
  border: 0;
  background: #fff;
}

#features .section-head {
  margin-bottom: 46px;
}

.feature-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.feature {
  position: relative;
  grid-column: span 3;
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #f4f3ed;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(23, 26, 18, .09);
}

.feature:nth-child(1),
.feature:nth-child(6) {
  grid-column: span 6;
}

.feature:nth-child(1) {
  color: #fff;
  background: var(--violet);
}

.feature:nth-child(1) h3,
.feature:nth-child(1) p,
.feature:nth-child(1) .feature-label {
  color: #fff;
}

.feature:nth-child(1)::after {
  content: "yourname.bookservices.site";
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  font: 700 .75rem/1.2 "Manrope", sans-serif;
  overflow-wrap: anywhere;
}

.feature:nth-child(2) {
  background: var(--acid);
}

.feature:nth-child(3) {
  background: #ffe1d8;
}

.feature:nth-child(4) {
  background: #dff4e7;
}

.feature:nth-child(5) {
  background: var(--sky);
}

.feature:nth-child(6) {
  background: var(--ink);
}

.feature:nth-child(6) h3,
.feature:nth-child(6) p,
.feature:nth-child(6) .feature-label {
  color: #fff;
}

.feature:nth-child(7) {
  background: #eeeaff;
}

.feature:nth-child(8) {
  background: #fff2c8;
}

.feature-label,
.template-label,
.plan-label {
  margin-bottom: 38px;
  color: currentColor;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.feature p {
  max-width: 32rem;
  margin-top: 12px;
  color: rgba(23, 26, 18, .63);
  font-size: .88rem;
}

#setup {
  background: var(--background);
}

.template-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.template-card {
  position: relative;
  grid-column: span 6;
  min-height: 510px;
  padding: 250px 30px 30px;
  border: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.template-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  height: 225px;
  background: #d8d6cb url("../img/service-hero.png") center / cover no-repeat;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.template-card:hover::before {
  transform: scale(1.035);
}

.template-card:nth-child(2)::before {
  background-image: url("../img/hero-plumber.png");
}

.template-card:nth-child(3)::before {
  background-image: url("../img/hero-electrician-photo.png");
}

.template-card:nth-child(4)::before {
  background-image: url("../img/hvac-hero.png");
}

.template-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 174px;
  right: 0;
  left: 0;
  height: 52px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .18));
  pointer-events: none;
}

.template-label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
}

.template-card h3 {
  font-size: 1.72rem;
}

.template-card p {
  max-width: 36rem;
  color: var(--text);
}

.tag-row {
  margin-top: 20px;
}

.tag {
  min-height: 27px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  font-size: .69rem;
  font-weight: 750;
}

.template-card .card-actions {
  padding-top: 25px;
}

#examples {
  color: #fff;
  background: var(--violet);
}

#examples h2 {
  color: #fff;
}

#examples .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
}

#examples .section-head p {
  color: rgba(255, 255, 255, .72);
}

.demo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.demo-link {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.demo-link::after {
  content: "\2197";
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 1.2rem;
}

.demo-link:hover {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.demo-link span {
  color: rgba(255, 255, 255, .62);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-link strong {
  max-width: none;
  color: #fff;
  font-size: clamp(.72rem, 1.2vw, .86rem);
  letter-spacing: -.035em;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.demo-link p {
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}

#plans {
  background: #fff;
}

.plan-grid {
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 660px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--background);
  box-shadow: none;
}

.plan-card.featured {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(23, 26, 18, .18);
  transform: translateY(-14px);
}

.plan-card.featured::before {
  content: "BEST VALUE";
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--acid);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.plan-card.featured h3,
.plan-card.featured .price,
.plan-card.featured .price strong,
.plan-card.featured p,
.plan-card.featured li,
.plan-card.featured .plan-label,
.plan-card.featured .price span {
  color: #fff;
}

.plan-label {
  margin-bottom: 32px;
  color: var(--muted);
}

.plan-card h3 {
  max-width: 260px;
  font-size: 1.35rem;
}

.price {
  margin-top: 30px;
}

.price strong {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  letter-spacing: -.06em;
}

.price span {
  min-height: 39px;
  color: var(--muted);
  font-size: .82rem;
}

.plan-card > p {
  margin-top: 23px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: .86rem;
}

.plan-card.featured > p {
  border-color: rgba(255, 255, 255, .12);
}

.plan-card ul {
  gap: 12px;
}

.plan-card li {
  padding-left: 24px;
  color: var(--text);
  font-size: .84rem;
}

.plan-card li::before {
  content: "\2713";
  top: .05em;
  width: auto;
  height: auto;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
}

.plan-card.featured li::before {
  color: var(--acid);
}

.plan-card .btn {
  width: 100%;
}

.final-cta {
  position: relative;
  padding: 100px 0;
  color: var(--ink);
  background: var(--acid);
  overflow: hidden;
}

.final-cta::before {
  content: "GO";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(23, 26, 18, .07);
  font-size: 28vw;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.12em;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .55fr);
  gap: 64px;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta .eyebrow {
  border-color: rgba(23, 26, 18, .2);
  background: rgba(255, 255, 255, .28);
}

.final-cta p {
  color: rgba(23, 26, 18, .7);
  font-size: 1.02rem;
}

.btn.dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.btn.dark:hover {
  background: #000;
  border-color: #000;
}

.final-actions .btn + .btn {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23, 26, 18, .35);
}

footer {
  padding: 42px 0;
  border: 0;
  color: rgba(255, 255, 255, .58);
  background: var(--ink);
  font-size: .78rem;
}

footer .container {
  align-items: center;
}

footer a {
  text-decoration: none;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr);
    gap: 40px;
  }

  h1 {
    font-size: clamp(3.3rem, 6vw, 5rem);
  }

  .nav-links {
    gap: 18px;
  }

  .feature {
    grid-column: span 6;
  }

  .feature:nth-child(1),
  .feature:nth-child(6) {
    grid-column: span 6;
  }

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

@media (max-width: 900px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid,
  .section-head,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .launch-panel {
    width: min(680px, 94%);
    margin: 0 auto;
  }

  .section-head {
    gap: 25px;
  }

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

  .step:nth-child(3) {
    border-left: 0;
  }

  .template-card {
    grid-column: span 12;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-card.featured {
    transform: none;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

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

  .container,
  .nav {
    width: calc(100% - 28px);
  }

  .nav {
    top: 8px;
    border-radius: 15px;
  }

  .nav-inner {
    min-height: 60px;
    padding-left: 12px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand {
    font-size: .9rem;
  }

  .nav-links .btn {
    min-height: 38px;
    padding: 9px 11px;
    font-size: .72rem;
  }

  .nav-links .btn::after {
    display: none;
  }

  .hero {
    padding: 64px 0 76px;
  }

  h1 {
    font-size: clamp(2.9rem, 14.8vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-copy p {
    margin-top: 23px;
    font-size: .98rem;
  }

  .hero-actions,
  .card-actions,
  .final-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .launch-panel {
    width: 100%;
    border-radius: 20px;
    transform: none;
  }

  .launch-panel::before {
    right: 18px;
  }

  .demo-preview {
    margin: 7px 7px 0;
    border-radius: 14px 14px 7px 7px;
  }

  .launch-list div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 18px;
  }

  .panel-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric {
    padding: 15px 10px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 0;
  }

  .metric strong {
    font-size: .73rem;
  }

  .metric span {
    font-size: .61rem;
  }

  section {
    padding: 78px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .steps,
  .feature-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .step + .step {
    padding: 24px 8px 28px;
    border-left: 0;
  }

  .step::before {
    margin-bottom: 20px;
  }

  .feature,
  .feature:nth-child(1),
  .feature:nth-child(6) {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .feature:nth-child(1) {
    min-height: 250px;
    padding-bottom: 72px;
  }

  .feature:nth-child(1)::after {
    right: 22px;
    bottom: 27px;
    left: 22px;
    max-width: none;
    text-align: center;
  }

  .template-grid {
    display: block;
  }

  .template-card {
    min-height: 0;
    margin-bottom: 16px;
    padding: 214px 22px 24px;
    border-radius: 20px;
  }

  .template-card::before {
    height: 190px;
  }

  .template-card::after {
    top: 140px;
  }

  .template-card h3 {
    font-size: 1.45rem;
  }

  .template-card .btn {
    width: 100%;
  }

  .plan-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .plan-card.featured::before {
    top: 20px;
    right: 18px;
  }

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

  footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .template-card::before,
  .feature,
  .nav-links a::after {
    transition: none;
  }
}
