:root {
  color-scheme: light;
  --black: #050505;
  --ink: #101010;
  --soft-ink: #343434;
  --muted: #666666;
  --line: #dedede;
  --pale: #f6f6f6;
  --white: #ffffff;
  --rose: #e8c7cf;
  --rose-soft: #fbf4f6;
  --rose-wash: #fdf8f9;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--rose-wash) 48%, var(--white) 100%);
  color: var(--ink);
  font-family: Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--soft-ink);
  font-size: 0.94rem;
}

.main-nav a:hover {
  color: var(--black);
}

.header-cta {
  padding: 11px 18px;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #202020;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.header-cta,
.btn,
a[href*="timee.fr"] {
  position: relative;
  z-index: 50;
  pointer-events: auto;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  min-height: min(720px, calc(100vh - 84px));
  padding: clamp(46px, 6vw, 74px) clamp(20px, 7vw, 96px) clamp(44px, 5vw, 64px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4.8vw, 4.6rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.13rem;
}

.hero-text,
.hero-warmth,
.section-copy p,
.payment-intro p,
.appreciation-grid p,
.section-lead {
  max-width: 690px;
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.hero-warmth {
  margin-top: 18px;
  max-width: 620px;
  padding: 14px 18px;
  border: 1px solid #f0d8de;
  border-left: 4px solid var(--rose);
  border-radius: 12px;
  background: rgba(251, 244, 246, 0.72);
  color: var(--ink);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.hero-signals span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 16px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-signals span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 27px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.btn-primary {
  border: 1.5px solid var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.btn-primary:hover {
  background: #202020;
  border-color: #202020;
}

.btn-secondary {
  border: 1.5px solid var(--black);
  background: #fffafa;
  color: var(--black);
  font-weight: 900;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-invert {
  border: 1.5px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
}

.btn-invert:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
}

.facade-visual {
  position: relative;
  display: grid;
  isolation: isolate;
  min-height: 400px;
  place-items: end start;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  background: var(--black);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.facade-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0,
    rgba(255, 255, 255, 0.7) 1px,
    transparent 1px,
    transparent 16px
  );
  opacity: 0.2;
  pointer-events: none;
}

.facade-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(232, 199, 207, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 46%);
  pointer-events: none;
}

.facade-content {
  position: relative;
  z-index: 3;
  max-width: 420px;
  color: var(--white);
}

.facade-content span,
.facade-content strong,
.facade-content p {
  display: block;
}

.facade-content span {
  margin-bottom: 14px;
  color: #f3dce2;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.facade-content strong {
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.04;
}

.facade-content p {
  max-width: 350px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 7vw, 96px);
  border: 1px solid var(--line);
  background: var(--line);
}

.value-grid article {
  min-height: 200px;
  padding: clamp(28px, 4vw, 38px);
  background: linear-gradient(180deg, var(--white), var(--rose-wash));
}

.value-grid article h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 16px;
  background: var(--rose);
}

.value-grid span,
.payment-steps span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.value-grid h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

.value-grid p,
.payment-steps p,
.info-box li {
  color: var(--soft-ink);
}

.section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 7vw, 96px);
}

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  background: linear-gradient(90deg, var(--white), var(--rose-soft));
}

.section-copy .btn {
  margin-top: 16px;
}

.info-box {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #d8c3c8;
  border-top: 4px solid var(--rose);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.box-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-box h3 {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
}

.info-box ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.info-box li {
  position: relative;
  padding-left: 24px;
}

.info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--rose);
}

.expertise {
  background: linear-gradient(180deg, var(--white), var(--rose-wash));
}

.lenses {
  background: var(--white);
}

.expertise-grid,
.lens-grid {
  display: grid;
  gap: 16px;
}

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

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

.expertise-grid article,
.lens-grid article {
  position: relative;
  min-height: 220px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
}

.expertise-grid article::before,
.lens-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--rose);
}

.expertise-grid span,
.lens-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.expertise-grid h3,
.lens-grid h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.expertise-grid p,
.lens-grid p {
  margin: 0;
  color: var(--soft-ink);
}

.payment {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
  background: linear-gradient(135deg, var(--black), #171313);
  color: var(--white);
  overflow: hidden;
}

.payment::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: min(240px, 24%);
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.75) 0,
    rgba(255, 255, 255, 0.75) 2px,
    transparent 2px,
    transparent 18px
  );
  opacity: 0.08;
  pointer-events: none;
}

.payment > * {
  position: relative;
  z-index: 2;
}

.payment .eyebrow,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.payment h2,
.payment h3 {
  color: var(--white);
}

.payment-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.payment-intro .btn {
  margin-top: 18px;
}

.payment-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.payment-steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.payment-steps span {
  margin-bottom: 0;
  color: var(--rose);
}

.payment-steps h3,
.payment-steps p {
  margin-bottom: 0;
}

.payment-steps h3 {
  margin-bottom: 7px;
}

.payment-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.appreciation {
  background: var(--rose-wash);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-lead {
  margin-bottom: 0;
}

.google-summary {
  display: grid;
  gap: 4px;
  max-width: 360px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--rose-wash));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.google-summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.google-summary span {
  color: var(--ink);
  font-weight: 850;
}

.google-summary p {
  margin: 6px 0 0;
  color: var(--soft-ink);
}

.appreciation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.appreciation-grid article {
  min-height: 210px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
}

.appreciation-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 34px;
  background: var(--rose);
}

.reviews-cta {
  margin-top: 24px;
  border-width: 2px;
  padding-inline: 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin: 0 clamp(20px, 7vw, 96px) clamp(42px, 6vw, 70px);
  padding: clamp(36px, 5vw, 60px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--black), #171313);
  color: var(--white);
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(360px, 38%);
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0,
    rgba(255, 255, 255, 0.7) 1px,
    transparent 1px,
    transparent 16px
  );
  opacity: 0.12;
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(32px, 4vw, 48px) clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--soft-ink);
  font-size: 0.94rem;
}

.footer-main {
  display: grid;
  gap: 24px;
}

.footer-main strong,
.footer-main span,
.footer-info p,
.footer-info span {
  display: block;
}

.footer-main strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.footer-main span {
  margin-top: 4px;
  color: var(--muted);
}

.footer-main ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li {
  position: relative;
  padding-left: 18px;
}

.footer-main li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.footer-info {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--rose-wash));
}

.footer-info p {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 850;
}

.footer-info span {
  color: var(--muted);
}

.footer-info span + span {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .appointment,
  .payment,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .value-grid,
  .appreciation-grid,
  .lens-grid {
    grid-template-columns: 1fr;
  }

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

  .payment-steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  main section {
    scroll-margin-top: 132px;
  }

  .site-header {
    gap: 8px 14px;
    padding: 10px 18px;
  }

  .brand {
    flex: 1 1 240px;
    min-width: 0;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    margin-left: auto;
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-text {
    order: 3;
  }

  .hero-warmth {
    order: 4;
  }

  .hero-signals {
    order: 5;
  }

  .facade-visual {
    order: 6;
    min-height: 210px;
  }

  .hero-actions {
    order: 7;
  }

  .section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .value-grid article {
    min-height: auto;
    padding: 22px;
  }

  .appointment,
  .payment {
    gap: 30px;
  }

  .info-box {
    padding: 24px;
  }

  .expertise-grid,
  .lens-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .expertise-grid article,
  .lens-grid article {
    min-height: auto;
    padding: 22px;
  }

  .payment-steps article {
    padding: 18px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 8px 10px;
    padding: 8px 12px;
  }

  .brand {
    flex: 1 1 180px;
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    margin-left: auto;
    padding: 8px 11px;
    font-size: 0.74rem;
  }

  .main-nav {
    gap: 11px;
    font-size: 0.82rem;
    overflow-x: auto;
    padding-bottom: 0;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-text {
    order: 3;
  }

  .hero-warmth {
    order: 4;
  }

  .hero-signals {
    order: 5;
  }

  .facade-visual {
    order: 6;
  }

  .hero-actions {
    order: 7;
  }

  .section {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.06;
    margin-bottom: 14px;
  }

  h2 {
    font-size: 1.68rem;
  }

  .hero-signals {
    gap: 4px;
    margin-top: 8px;
  }

  .hero-signals span {
    width: 100%;
    min-height: 28px;
    font-size: 0.86rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .section-copy .btn,
  .payment-intro .btn,
  .reviews-cta,
  .final-cta .btn {
    width: 100%;
  }

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

  .hero-warmth {
    margin-top: 6px;
    padding: 11px 14px;
  }

  .facade-visual {
    min-height: 0;
    padding: 10px 12px;
  }

  .facade-visual::after {
    left: 18px;
    right: 18px;
    top: 18px;
  }

  .facade-content strong {
    max-width: 290px;
    font-size: 0.98rem;
    line-height: 1.12;
  }

  .facade-content p {
    max-width: 300px;
    margin-top: 4px;
    font-size: 0.78rem;
  }

  .facade-content span {
    margin-bottom: 4px;
    font-size: 0.68rem;
  }

  .value-grid article {
    min-height: auto;
    padding: 14px;
  }

  .expertise-grid,
  .lens-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .expertise-grid article,
  .lens-grid article {
    padding: 14px;
  }

  .expertise-grid article::before,
  .lens-grid article::before {
    margin-bottom: 14px;
  }

  .expertise-grid span,
  .lens-grid span {
    margin-bottom: 10px;
  }

  .expertise-grid h3,
  .lens-grid h3 {
    font-size: 1.25rem;
  }

  .appreciation-grid article {
    min-height: auto;
    padding: 13px;
  }

  .value-grid span,
  .payment-steps span {
    margin-bottom: 14px;
  }

  .value-grid article h2::after {
    margin-top: 12px;
  }

  .payment-steps article {
    padding: 16px 0;
  }

  .info-box {
    padding: 16px;
  }

  .info-box ul {
    gap: 8px;
    margin-top: 14px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .google-summary {
    margin-top: 12px;
    padding: 14px;
  }

  .final-cta {
    padding: 30px 22px;
  }

  .value-grid,
  .final-cta {
    margin-left: 16px;
    margin-right: 16px;
  }

}
