:root {
  --bg: #f6f7f5;
  --surface: #ffffff;
  --surface-soft: #edf3ef;
  --ink: #12372a;
  --muted: #5d6f66;
  --brand: #0b4b37;
  --brand-dark: #052e22;
  --border: rgba(18, 55, 42, 0.09);
  --shadow: 0 24px 60px rgba(6, 29, 22, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(131, 190, 166, 0.2), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, var(--bg) 100%);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

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

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 40px 24px 100px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 58%, #0f6a4c);
  color: #fff;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.22;
}

.hero__glow--left {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: #f9d98c;
}

.hero__glow--right {
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -120px;
  background: #89d3b4;
}

.hero__content,
.section,
.cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: 0.95rem;
}

.brandbar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brandbar__text {
  display: grid;
  gap: 2px;
}

.brandbar__text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brandbar__text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.logo-mark {
  --logo-size: 74px;
  position: relative;
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  display: inline-block;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 68% 68%, rgba(129, 211, 180, 0.26), transparent 32%),
    linear-gradient(135deg, #0b4b37, #15785a 55%, #1e8b67);
  box-shadow:
    inset 0 0 0 4px #fff,
    0 0 0 8px #dcb650,
    0 18px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 16%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c89d2e, #f5dc8e, #c89d2e);
  transform: rotate(-15deg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-mark__ring,
.logo-mark__h,
.logo-mark__s,
.logo-mark__spark {
  position: absolute;
}

.logo-mark__ring {
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 50%);
}

.logo-mark__h {
  left: 24%;
  top: 17%;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.logo-mark__s {
  right: 18%;
  top: 23%;
  color: #f4d56f;
  font-size: 2.9rem;
  line-height: 1;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.logo-mark__spark {
  width: 11px;
  height: 11px;
  background: #fff3be;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 0 8px rgba(255, 240, 180, 0.85));
}

.logo-mark__spark--one {
  top: 20%;
  right: 28%;
}

.logo-mark__spark--two {
  top: 34%;
  right: 16%;
  width: 8px;
  height: 8px;
}

.logo-mark--mini {
  --logo-size: 42px;
  box-shadow:
    inset 0 0 0 2px #fff,
    0 0 0 4px #dcb650;
}

.logo-mark--mini::after {
  height: 6px;
  bottom: 18%;
}

.logo-mark--mini .logo-mark__h {
  font-size: 1.45rem;
}

.logo-mark--mini .logo-mark__s {
  font-size: 1.7rem;
}

.logo-mark--mini .logo-mark__spark {
  width: 7px;
  height: 7px;
}

.badge__icon,
.mini-brand,
.check-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.badge__icon,
.mini-brand {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-brand {
  padding: 4px;
}

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(3.4rem, 10vw, 6rem);
  margin-top: 24px;
  letter-spacing: -0.05em;
}

.hero__lead,
.section-copy,
.hotel-card p,
.check-item p,
.cta p,
.phone-card--details p {
  line-height: 1.75;
}

.hero__lead {
  max-width: 640px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button--dark {
  background: var(--brand);
  color: #fff;
}

.button--ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.stat {
  display: grid;
  gap: 6px;
}

.stat strong {
  font-size: 2rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.74);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.phone-card {
  width: min(260px, 42vw);
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.phone-card--image {
  padding: 12px;
  background: #fff;
  border: 4px solid #0d2230;
  transform: rotate(-4deg);
}

.phone-card--image img {
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
}

.phone-card--details {
  display: grid;
  gap: 24px;
  align-content: space-between;
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border: 4px solid #0d2230;
  transform: translateY(70px) rotate(4deg);
}

.phone-card--details h2,
.feature-card h3,
.hotel-card h3,
.check-item h3 {
  margin: 0 0 10px;
}

.phone-card--details p,
.feature-card p,
.hotel-card p,
.check-item p,
.cta p,
.section-copy {
  margin: 0;
  color: var(--muted);
}

.price-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #f8faf8;
}

.price-card span,
.label {
  display: block;
  margin-bottom: 6px;
  color: #6f8178;
  font-size: 0.92rem;
}

.price-card strong,
.hotel-card__bottom strong {
  font-size: 1.4rem;
}

.section {
  padding: 92px 0;
}

.section--soft {
  width: 100%;
  background: var(--surface-soft);
  padding-inline: 24px;
}

.section-heading,
.section-bar {
  margin-bottom: 44px;
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}

.section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  font-weight: 800;
}

.section h2,
.cta h2 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-copy {
  margin-top: 20px;
  font-size: 1.02rem;
}

.feature-grid,
.hotel-grid,
.preview {
  display: grid;
  gap: 24px;
}

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

.feature-card,
.hotel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(18, 55, 42, 0.06);
}

.feature-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 75, 55, 0.1);
  font-size: 1.8rem;
}

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

.hotel-card {
  overflow: hidden;
  border-radius: 30px;
}

.hotel-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.hotel-card__body {
  padding: 28px;
}

.hotel-card__top,
.hotel-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hotel-card__top {
  margin-bottom: 14px;
}

.hotel-card__bottom {
  margin-top: 22px;
}

.rating {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 75, 55, 0.1);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.preview {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.checklist {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.check-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.check-item span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 1.1rem;
}

.preview__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.preview__visual::before {
  content: "";
  position: absolute;
  inset: 12% 12%;
  background: rgba(11, 75, 55, 0.12);
  border-radius: 50%;
  filter: blur(38px);
}

.preview-phone {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  padding: 16px;
  border-radius: 48px;
  background: var(--brand);
  border: 10px solid #0f172a;
  box-shadow: var(--shadow);
}

.preview-phone img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 34px;
}

.section--showcase {
  padding-top: 20px;
}

.section-heading--left {
  max-width: 780px;
  text-align: left;
  margin-inline: 0;
}

.showcase-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 210px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scrollbar-width: thin;
}

.showcase-strip + .showcase-strip {
  margin-top: 28px;
}

.screen-showcase {
  display: grid;
  gap: 12px;
}

.screen-showcase__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand);
}

.screen-card {
  min-height: 408px;
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(12, 47, 35, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 249, 0.98));
  box-shadow: 0 16px 44px rgba(18, 55, 42, 0.08);
}

.screen-card__topbar,
.screen-rowline,
.screen-actionbar,
.field-row,
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.screen-card__topbar {
  color: #6f8178;
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.screen-brand {
  font-weight: 800;
  color: var(--brand);
}

.screen-card__search,
.field,
.guest-pill {
  border-radius: 12px;
  background: #f5f7f6;
  border: 1px solid rgba(18, 55, 42, 0.08);
  color: #75877f;
}

.screen-card__search {
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.listing-stack,
.menu-stack,
.field-list,
.payment-list,
.chat-stack {
  display: grid;
  gap: 10px;
}

.listing-item,
.summary-card,
.menu-item,
.saved-card {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(18, 55, 42, 0.08);
  border-radius: 14px;
  background: #fff;
}

.listing-item strong,
.summary-card strong,
.profile-hero strong,
.info-panel strong,
.saved-card span {
  display: block;
  font-size: 0.8rem;
}

.listing-item span,
.summary-card span,
.screen-copy,
.screen-meta,
.guest-row span,
.menu-item,
.profile-hero span,
.info-panel span,
.saved-card small,
.screen-success__copy {
  color: #6d7c74;
  font-size: 0.68rem;
}

.listing-item em {
  font-style: normal;
  font-size: 0.72rem;
  color: #b3871d;
  font-weight: 800;
}

.listing-thumb,
.thumb-grid__item,
.avatar--photo {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.listing-thumb {
  width: 50px;
  height: 50px;
}

.listing-thumb--one {
  background-image: linear-gradient(180deg, rgba(5, 46, 34, 0.1), rgba(5, 46, 34, 0.4)), url("https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=800&auto=format&fit=crop");
}

.listing-thumb--two {
  background-image: linear-gradient(180deg, rgba(5, 46, 34, 0.1), rgba(5, 46, 34, 0.4)), url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?q=80&w=800&auto=format&fit=crop");
}

.listing-thumb--three {
  background-image: linear-gradient(180deg, rgba(5, 46, 34, 0.1), rgba(5, 46, 34, 0.4)), url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=800&auto=format&fit=crop");
}

.listing-thumb--four {
  background-image: linear-gradient(180deg, rgba(5, 46, 34, 0.1), rgba(5, 46, 34, 0.4)), url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=800&auto=format&fit=crop");
}

.screen-nav {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 16px;
  color: #7a8981;
  font-size: 0.62rem;
}

.screen-nav .is-active {
  color: var(--brand);
  font-weight: 800;
}

.screen-hero {
  height: 138px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}

.screen-hero--hotel {
  background-image: linear-gradient(180deg, rgba(5, 46, 34, 0.05), rgba(5, 46, 34, 0.38)), url("https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1200&auto=format&fit=crop");
}

.screen-card__body {
  display: grid;
  gap: 12px;
}

.chip {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(11, 75, 55, 0.08);
  color: var(--brand);
  font-size: 0.62rem;
  font-weight: 800;
}

.chip--gold {
  background: rgba(191, 140, 24, 0.12);
  color: #a67610;
}

.screen-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.screen-copy {
  line-height: 1.5;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.thumb-grid__item {
  height: 58px;
}

.micro-button,
.screen-cta {
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.micro-button {
  padding: 10px 14px;
  font-size: 0.72rem;
}

.micro-button--block,
.screen-cta {
  width: 100%;
}

.screen-title,
.screen-section,
.screen-success__title {
  margin: 4px 0 14px;
  font-size: 0.95rem;
}

.calendar-block,
.guest-card,
.info-panel {
  padding: 12px;
  border: 1px solid rgba(18, 55, 42, 0.08);
  border-radius: 16px;
  background: #fff;
}

.calendar-head {
  margin-bottom: 12px;
  font-size: 0.72rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 999px;
  font-size: 0.68rem;
  color: #6b7e75;
}

.calendar-grid .is-selected {
  background: rgba(11, 75, 55, 0.12);
  color: var(--brand);
  font-weight: 800;
}

.room-option {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 55, 42, 0.08);
  border-radius: 16px;
  background: #fff;
  margin-top: 10px;
}

.room-option span {
  display: block;
  color: #6d7c74;
  font-size: 0.66rem;
  margin-top: 4px;
}

.room-option b {
  color: var(--brand);
  font-size: 0.78rem;
}

.room-option--active {
  border-color: rgba(11, 75, 55, 0.35);
  box-shadow: inset 0 0 0 1px rgba(11, 75, 55, 0.2);
}

.guest-pill {
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 0.72rem;
}

.screen-cta {
  margin-top: 12px;
  padding: 12px 16px;
  font-size: 0.74rem;
}

.screen-cta--compact {
  width: auto;
  margin-inline: auto;
  padding-inline: 22px;
}

.guest-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}

.summary-card {
  grid-template-columns: 50px 1fr;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px 0;
}

.summary-grid span,
.payment-list span,
.booking-id span {
  display: block;
  color: #73827a;
  font-size: 0.64rem;
  margin-bottom: 4px;
}

.screen-rowline--total {
  padding-top: 8px;
  border-top: 1px solid rgba(18, 55, 42, 0.08);
}

.credit-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f6a4c, #0b4b37);
  color: #fff;
  display: grid;
  gap: 18px;
  margin-bottom: 14px;
}

.credit-card span,
.credit-card small {
  color: rgba(255, 255, 255, 0.82);
}

.credit-card--dark {
  background: linear-gradient(135deg, #273145, #121826);
}

.field-list {
  margin-top: 8px;
}

.field {
  padding: 10px 12px;
  font-size: 0.72rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.screen-card--success {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, #073c2c, #052e22);
  color: #fff;
}

.success-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--brand);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 18px 0 10px;
}

.screen-success__copy {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 14px;
  line-height: 1.6;
}

.booking-id {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.button--small {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 0.76rem;
}

.profile-hero {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.avatar--photo {
  width: 50px;
  height: 50px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 46, 34, 0.18)), url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?q=80&w=600&auto=format&fit=crop");
}

.avatar--center {
  margin: 0 auto 14px;
}

.menu-item {
  grid-template-columns: 1fr;
  font-size: 0.76rem;
}

.menu-item--toggle,
.saved-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item--danger {
  color: #c34b40;
}

.info-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.saved-card {
  padding: 12px 14px;
  margin-top: 10px;
}

.saved-card--ghost {
  border-style: dashed;
  color: #6d7c74;
  justify-content: center;
}

.cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 44px;
  border-radius: 42px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .hero__content,
  .preview,
  .feature-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .showcase-strip {
    grid-auto-columns: minmax(220px, 220px);
  }

  .section-bar,
  .cta {
    align-items: start;
    flex-direction: column;
  }

  .hero__visual {
    padding-top: 12px;
    flex-wrap: wrap;
  }

  .phone-card--details {
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-inline: 16px;
    padding-bottom: 72px;
  }

  .hero__content,
  .section,
  .cta {
    width: min(100%, calc(100% - 8px));
  }

  .section {
    padding: 72px 0;
  }

  .section--soft {
    padding-inline: 16px;
  }

  .phone-card,
  .preview-phone {
    width: 100%;
  }

  .phone-card--image img,
  .preview-phone img {
    height: auto;
    aspect-ratio: 4 / 6;
  }

  .showcase-strip {
    grid-auto-columns: 85%;
  }

  .hotel-card__top,
  .hotel-card__bottom {
    align-items: start;
    flex-direction: column;
  }

  .cta {
    padding: 30px 22px;
    border-radius: 30px;
  }
}
