:root {
  --bg: #fcfaf7;
  --ink: #1f2a37;
  --muted: #6e7a89;
  --surface: #ffffff;
  --surface-soft: #fffdf9;
  --line: #eadfce;
  --accent: #dd8d58;
  --accent-strong: #c96c33;
  --sage: #7f9b8b;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 22px rgba(92, 70, 46, 0.08);
  --shadow-card: 0 14px 34px rgba(84, 61, 38, 0.1);
  --shadow-lift: 0 18px 40px rgba(78, 58, 37, 0.14);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: linear-gradient(180deg, #fffaf2 0%, var(--bg) 45%, #f9f5ef 100%);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(242, 234, 223, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 42, 55, 0.08);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.88rem 0;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease,
    transform 0.18s ease;
}

.nav-toggle:hover {
  background: #fff8ef;
  border-color: #d7c4ad;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(201, 108, 51, 0.28);
  outline-offset: 2px;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #3f4c5d;
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease, background 0.2s ease;
}

.nav-toggle-icon {
  top: 50%;
  left: 50%;
  margin-left: -10px;
}

.nav-toggle-icon::before {
  top: -7px;
  left: 0;
}

.nav-toggle-icon::after {
  top: 7px;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Must beat later `.btn { display: inline-flex }` so desktop shows only one CTA */
#primary-menu .menu-cta {
  display: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: -0.015em;
}

.logo img {
  display: block;
  border-radius: 10px;
}

.links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

.links a {
  position: relative;
  transition: color 0.2s ease;
}

.links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(201, 108, 51, 0.62);
  transition: transform 0.22s ease;
}

.links a:hover {
  color: var(--ink);
}

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

.hero {
  padding: 5.2rem 0 3.8rem;
  position: relative;
  overflow: hidden;
}

@keyframes meshFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.45;
  }
}

.mesh {
  position: absolute;
  border-radius: 999px;
  filter: blur(35px);
  pointer-events: none;
}

.mesh-a {
  width: 300px;
  height: 300px;
  background: #ffe0bd;
  right: -70px;
  top: 25px;
  animation: meshFloat 10s ease-in-out infinite;
}

.mesh-b {
  width: 260px;
  height: 260px;
  background: #dce7d9;
  left: -90px;
  top: 130px;
  animation: meshFloat 12s ease-in-out infinite;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.hero-content {
  position: relative;
  isolation: isolate;
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(180px 120px at 9% 18%, rgba(222, 153, 98, 0.14), transparent 72%),
    radial-gradient(220px 140px at 94% 4%, rgba(140, 184, 149, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(249, 241, 232, 0.86));
  border: 1px solid rgba(233, 216, 199, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-content::before {
  width: 170px;
  height: 170px;
  right: -34px;
  bottom: -42px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(210, 137, 85, 0.2), rgba(210, 137, 85, 0) 68%);
}

.hero-content::after {
  width: 122px;
  height: 122px;
  left: -26px;
  top: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 112, 60, 0.33);
  opacity: 0.8;
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.095em;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.15rem, 5.6vw, 3.65rem);
  max-width: 12ch;
  letter-spacing: -0.022em;
}

h2 {
  font-size: clamp(1.62rem, 3.4vw, 2.28rem);
  letter-spacing: -0.015em;
}

h3 {
  letter-spacing: -0.01em;
}

.lead,
.heading p,
.card p,
.plan li,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pills span {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  color: #556273;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-content-graphic {
  margin-top: 1rem;
  width: 100%;
}

.hero-content-graphic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #ead7c3;
  background: linear-gradient(180deg, #fffaf4, #f7ecdf);
}

.hero-ui {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.05rem;
  box-shadow: var(--shadow-card);
}

.hero-illustration {
  margin-bottom: 0.75rem;
}

.hero-illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #ecd8c4;
  background: linear-gradient(180deg, #fffaf4, #f8ece0);
}

.bubble {
  max-width: 92%;
  border-radius: 14px;
  padding: 0.74rem 0.9rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 4px 12px rgba(92, 71, 47, 0.06);
}

.bubble-user {
  margin-left: auto;
  background: #f2ede6;
  border: 1px solid #e3d7cb;
}

.bubble-ai {
  background: #fef4ea;
  border: 1px solid #efd9c3;
}

.stat-row {
  margin-top: 0.82rem;
  padding-top: 0.8rem;
  border-top: 1px dashed #e5d6c4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.stat-row strong {
  display: block;
  color: #324255;
  font-size: 1.05rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-separator {
  height: 54px;
  line-height: 0;
}

.section-separator svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-separator path {
  fill: #f6efe5;
}

.section-separator.soft {
  opacity: 0.65;
}

.section {
  padding: 3.7rem 0;
}

#product,
#pricing,
#faq,
#contact {
  scroll-margin-top: 96px;
}

.heading {
  max-width: 64ch;
  margin-bottom: 0.35rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.eyebrow.on-dark {
  color: #b85c25;
}

.trust {
  border-top: 1px solid rgba(233, 216, 199, 0.7);
  border-bottom: 1px solid rgba(233, 216, 199, 0.7);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.7), rgba(248, 240, 230, 0.7));
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem 1.6rem;
  align-items: center;
  padding: 0.95rem 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #5a6779;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-strong);
  flex: none;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #e1c6a8;
  box-shadow: var(--shadow-card);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, #fff4e7 0%, #f9e3cb 100%);
  border: 1px solid #efd8c1;
  color: var(--accent-strong);
  margin-bottom: 0.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 6px 14px rgba(170, 110, 60, 0.08);
}

.icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.pricing {
  background: linear-gradient(180deg, #fffdf9, #f7f2eb);
  border-top: 1px solid #ecdfcf;
  border-bottom: 1px solid #ecdfcf;
}

.plans {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.plan:hover {
  transform: translateY(-5px);
  border-color: #ddbc98;
  box-shadow: var(--shadow-card);
}

.plan-highlight {
  position: relative;
  border-color: #e2b88f;
  background: linear-gradient(180deg, #fffcf9 0%, #fff7ef 100%);
  box-shadow: 0 16px 32px rgba(107, 70, 39, 0.14);
}

.plan-highlight .tag {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e3925f, #c66a36);
  color: #fff8ef;
  box-shadow: 0 6px 14px rgba(180, 95, 47, 0.28);
}

.tag {
  margin: 0 0 0.55rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.cost {
  margin: 0.15rem 0 0.75rem;
  font-size: clamp(1.55rem, 3.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
}

.cost span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

ul {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.36rem;
}

.full {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.72rem 1.03rem;
  font-weight: 700;
  box-shadow: 0 5px 12px rgba(99, 73, 47, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(92, 66, 41, 0.12);
}

.btn:focus-visible {
  outline: 3px solid rgba(201, 108, 51, 0.28);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fffaf4;
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-ghost {
  border-color: var(--line);
  background: #fffdfb;
  color: #4b5665;
}

.btn-ghost:hover {
  border-color: #d7c4ad;
  background: #fff7ee;
}

.header .nav .btn-nav.nav-cta {
  align-self: center;
  flex-shrink: 0;
  line-height: 1;
}

.btn-nav {
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.92);
  color: #3f4c5d;
}

.btn-nav:hover {
  border-color: #d7c4ad;
  background: #fff8ef;
}

.faq-wrap {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.faq-list article h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.faq-list article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

#contact.contact {
  position: relative;
  padding: 3.5rem 0 3.85rem;
  margin-top: 0;
  background:
    radial-gradient(ellipse 72% 55% at 18% 8%, rgba(221, 141, 88, 0.16), transparent 52%),
    radial-gradient(ellipse 55% 45% at 88% 88%, rgba(127, 155, 139, 0.14), transparent 50%),
    linear-gradient(175deg, #252019 0%, #342b24 42%, #1d1815 100%);
  color: #f3efe8;
}

#contact.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #a85a2f, var(--accent), #94b5a7);
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-intro {
  text-align: left;
  max-width: 64ch;
  margin: 0 0 1.25rem;
  width: 100%;
}

.contact-intro .eyebrow-band {
  color: #e8aa7c;
  opacity: 1;
}

.contact-band-h2 {
  margin: 0 0 0.35rem;
  color: #faf6f0;
  font-size: clamp(1.62rem, 3.6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.contact-box {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin-inline: 0;
  background:
    radial-gradient(120% 80% at 100% -10%, rgba(221, 141, 88, 0.12), transparent 45%),
    radial-gradient(90% 60% at 0% 100%, rgba(127, 155, 139, 0.1), transparent 45%),
    linear-gradient(180deg, #fffcf9 0%, #fff7ee 52%, #fffcf9 100%);
  border: 1px solid rgba(255, 246, 234, 0.98);
  border-radius: var(--radius-lg);
  padding: 2.15rem 2.25rem;
  box-shadow:
    0 0 0 1px rgba(201, 108, 51, 0.16),
    0 26px 55px rgba(12, 8, 5, 0.38),
    0 12px 24px rgba(12, 8, 5, 0.12);
}

.contact-box::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.85rem;
  right: 1.85rem;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent), #859f91);
}

.contact-box p {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.67;
}

.contact-box .hero-cta {
  margin-top: 1.45rem;
}

.footer {
  border-top: 1px solid #e5d7c6;
  padding: 1.1rem 0 1.35rem;
  margin-top: 1.7rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  color: #728197;
  font-size: 0.9rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-address {
  margin: 0;
  font-style: normal;
  color: inherit;
  font-size: 0.88em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mesh-a,
  .mesh-b {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero {
    padding: 4.6rem 0 3.4rem;
  }

  .hero-layout {
    gap: 1rem;
    grid-template-columns: 1.1fr 0.9fr;
  }

  #product,
  #pricing,
  #faq,
  #contact {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .plans,
  .faq-list,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0 2.8rem;
  }

  .hero-content,
  .hero-ui {
    padding: 1.15rem;
  }

  .hero-content::before,
  .hero-content::after {
    display: none;
  }

  .mesh-a {
    width: 220px;
    height: 220px;
    right: -90px;
    top: 10px;
  }

  .mesh-b {
    width: 200px;
    height: 200px;
    left: -110px;
    top: 220px;
  }

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

  .section {
    padding: 2.8rem 0;
  }

  #contact.contact {
    padding: 3rem 0 3.1rem;
  }

  .contact-box {
    padding: 1.6rem 1.4rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: center;
    flex-shrink: 0;
  }

  .links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.45rem 0.55rem;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 20;
  }

  .links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .links a {
    padding: 0.85rem 0.7rem;
    border-radius: 10px;
    color: #2d3a4a;
    font-weight: 700;
  }

  .links a:hover {
    background: #fff7ee;
  }

  .links a::after {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, 94%);
  }

  .hero {
    padding: 3.4rem 0 2.2rem;
  }

  .hero-content,
  .hero-ui {
    padding: 1rem;
    border-radius: 18px;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-cta {
    width: 100%;
    gap: 0.55rem;
  }

  .hero-cta .btn {
    flex: 1 1 140px;
  }

  .pills {
    gap: 0.4rem;
  }

  .pills span {
    font-size: 0.82rem;
    padding: 0.32rem 0.6rem;
  }

  .hero-content-graphic {
    margin-top: 0.75rem;
  }

  .bubble {
    font-size: 0.92rem;
    padding: 0.7rem 0.85rem;
  }

  .stat-row strong {
    font-size: 1rem;
  }

  .stat-row span {
    font-size: 0.8rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .section-separator {
    height: 38px;
  }

  .heading h2 {
    font-size: clamp(1.4rem, 5.6vw, 1.85rem);
  }

  .card,
  .plan {
    padding: 1rem;
  }

  .plan-highlight {
    box-shadow: 0 12px 24px rgba(107, 70, 39, 0.12);
  }

  .footer {
    margin-top: 1rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.7rem 0;
    gap: 0.6rem;
  }

  .logo {
    font-size: 1.05rem;
    gap: 0.5rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    display: none;
  }

  #primary-menu .menu-cta {
    display: inline-flex;
    align-self: center;
    flex-shrink: 0;
    margin: 0.35rem 0.2rem 0.35rem;
    width: calc(100% - 0.4rem);
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 2.8rem 0 2rem;
  }

  h1 {
    max-width: 18ch;
  }

  .kicker {
    font-size: 0.68rem;
  }

  .hero-content,
  .hero-ui {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .hero-cta .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .pills span {
    font-size: 0.78rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .icon svg {
    width: 20px;
    height: 20px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.85rem 0;
  }

  #contact.contact {
    padding: 2.5rem 0 2.75rem;
  }

  .contact-box {
    padding: 1.3rem 1.1rem;
  }

  .contact-box::after {
    left: 1rem;
    right: 1rem;
  }

  .cost {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.1rem 0;
  }
}
