:root {
  --green: #0E3E27;
  --green-deep: #0a3220;
  --cream: #D9CBA0;
  --cream-bg: #F6F1E5;
  --orange: #C45508;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ======== NAVBAR ======== */
.nav {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.nav-inner {
  max-width: 1300px;
  margin: auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  border-radius: 6px;
  transition: background .15s, color .15s;
  letter-spacing: .3px;
}

.nav-links a:hover {
  background: rgba(14, 62, 39, .06);
}

.nav-links a.active {
  background: var(--green);
  color: var(--cream);
}

.nav .btn-cream {
  background: var(--cream);
  color: var(--green);
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.nav .btn-cream:hover {
  filter: brightness(.95);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.36) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 140px 32px;
  max-width: 1155px;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(56px, 9vw, 125px);
  line-height: 106px;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.hero-title .line1 {
  display: block;
}

.hero-title .line2 {
  display: block;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--cream);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 22px);
  margin-bottom: 36px;
  line-height: 100%;
  font-weight: 500;
  max-width: 932px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  color: #ffffff;
  background: transparent;
  font-weight: 700;
  line-height: 100%;
  font-size: 16px;
  letter-spacing: .6px;
  transition: background .15s, color .15s;
  cursor: pointer;
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  color: var(--green);
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: .6px;
  transition: background .15s, color .15s;
  cursor: pointer;
}

.btn-outline-green:hover {
  background: var(--orange);
  color: #fff;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.btn-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .6px;
  border: 2px solid var(--cream);
}

.hero .btn-cream {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}

.btn-cream:hover {
  filter: brightness(.95);
}

/* ======== WHY THIS APP ======== */
.why {
  background: var(--green);
  color: #fff;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 130px;
  align-items: center;
}

.why-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: absolute;
  bottom: -30px;
  width: 480px;
  aspect-ratio: 9 / 14;
  border-radius: 44px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 80px;
  bottom: 14px;
  left: -20px;
  width: 520px;
  right: 8px;
  background: linear-gradient(170deg, #D9CBA0, transparent);
  z-index: -1;
  border-radius: 60px 60px 0 0;
  transform: rotate(360deg);
  opacity: .75;
  z-index: 0;
}

.phone-screen-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 8px solid #ffffff;
}

.phone-status {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  width: 86%;
  height: auto;
  margin: 0 auto;
  z-index: 2;
  pointer-events: none;
}

.why-text h2 {
  color: var(--cream);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 22px;
}

.why-text .lead {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: .82;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.why-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 300;
}

.feat-ic {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.feat-ic svg,
.feat-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-text .lorem {
  font-size: 16px;
  line-height: 1.7;
  opacity: .82;
  margin-bottom: 30px;
}

/* ======== HOW IT WORKS ======== */
.how {
  background: var(--cream-bg);
  padding: 100px 0 110px;
}

.section-title {
  text-align: center;
  color: var(--green);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 60px;
}

.section-title.light {
  color: var(--cream);
}

.section-title.green {
  color: var(--green);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 60px;
  padding-top: 40px;
}

.how-card {
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 18px;
  padding: 70px 26px 30px;
  text-align: center;
  position: relative;
}

.how-card .how-ic {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  border: 4px solid var(--cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card .how-ic svg {
  width: 38px;
  height: 38px;
}

.how-card .how-ic img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.how-card h3 {
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.how-card p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.55;
}

.how-card {
  cursor: default;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.how-card:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-4px);
}

.how-card:hover h3 {
  color: var(--cream);
}

.how-card:hover p {
  color: #fff;
}

.how-card:hover .how-ic {
  background: var(--cream);
  color: var(--green);
}

.how-card:hover .how-ic img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(35%) saturate(1664%) hue-rotate(112deg) brightness(94%) contrast(96%);
}

.center-btn {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

/* ======== PRICING ======== */
.pricing {
  background: var(--green);
  padding: 100px 0 120px;
  color: #fff;
}

.pricing .section-title {
  margin-bottom: 22px;
}

.pricing-sub {
  text-align: center;
  color: #fff;
  font-size: 15.5px;
  margin-bottom: 6px;
}

.pricing-sub:last-of-type {
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: #fff;
  color: var(--text-dark);
  border-radius: 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-head {
  background: var(--cream);
  border-radius: 30px 30px 100px 30px;
  padding: 0px 28px 0px 28px;
  text-align: center;
  color: var(--green);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 22px;
}

.price-head h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--green);
  line-height: 1.1;
}

.price-head .price {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--green);
  line-height: 1;
}

.price-head .price-tag {
  font-size: 14px;
  line-height: 1.5;
  color: var(--green);
}

.price-body {
  padding: 6px 48px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  flex: 1;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  line-height: 1.5;
}

.check {
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check::before {
  content: '';
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.price-body .btn-outline-orange {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* ======== FAQs ======== */
.faqs {
  background: var(--cream-bg);
  padding: 100px 0 120px;
}

.faqs .section-title {
  margin-bottom: 14px;
}

.faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-weight: 400;
  font-size: 22px;
  color: var(--green);
  transition: transform .2s;
}

.faq-item[open] {
  background: var(--cream);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-body {
  padding: 0 28px 24px;
  color: var(--green);
  font-size: 16px;
  line-height: 1.6;
}

/* ======== CONTACT US ======== */
.contact {
  background: var(--cream-bg);
  padding-bottom: 100px;
  color: #fff;
}

.contact .section-title {
  margin-bottom: 14px;
}


.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.contact-form .field {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: .2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #e2e0d7;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: #fbfaf6;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a8a89d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14, 62, 39, .1);
}

.contact-form .field.invalid input,
.contact-form .field.invalid textarea {
  border-color: #d64545;
  background: #fdf4f4;
}

.field-error {
  display: none;
  color: #d64545;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}

.contact-form .field.invalid .field-error {
  display: block;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  background: #fff;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: filter .15s;
}

.btn-contact:hover {
  background-color: var(--orange);
  color: #ffffff;
}

/* ======== CTA BANNER + FOOTER ======== */
.cta-banner {
  background: var(--cream-bg);
  padding: 0 0 0px;
  position: relative;
}

.cta-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: #fff;
  z-index: 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(105deg, var(--green) 0%, var(--green) 38%, #5b3115 72%, var(--orange) 100%);
  border-radius: 80px;
  padding: 70px 76px 56px;
  text-align: center;
  color: #fff;
  box-shadow:
    0 10px 0 -2px rgba(199, 207, 188, .55),
    0 22px 0 -10px rgba(199, 207, 188, .35),
    0 34px 0 -18px rgba(199, 207, 188, .22);
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: .5px;
  line-height: 100%;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  min-width: 210px;
  transition: background .15s;
}

.store-btn:hover {
  background: #fff;
  color: var(--green)
}

.store-btn svg {
  width: 30px;
  height: 30px;
}

.store-btn .lbl-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store-small {
  font-size: 11px;
  opacity: .95;
  letter-spacing: .3px;
}

.store-big {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .2px;
}

.iap {
  color: #fff;
  font-size: 13px;
  opacity: .92;
}

.site-footer {
  background: #fff;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 50px;
}

.foot-logo {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
}

.addr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.5;
}

.pin-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pin-ic svg {
  width: 14px;
  height: 14px;
}

.foot-col h4 {
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.foot-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 30px;
}

.foot-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foot-links a {
  color: black;
  font-size: 15px;
  font-weight: 500;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.socials a:hover {
  background: var(--cream);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.foot-bottom {
  background: var(--green);
  color: #fff;
  padding: 14px 0;
  font-size: 13px;
}

.foot-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 12px 20px;
    gap: 14px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 9px 14px;
    font-size: 13px;
  }

  .nav .btn-cream {
    padding: 11px 20px;
    font-size: 13px;
  }

  .why {
    padding: 80px 0;
  }

  .why-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .why-phone {
    order: 2;
    position: relative;
    min-height: auto;
    margin-bottom: -108px;
  }

  /* Phone is absolutely positioned on desktop — return it to normal flow on
     tablet/mobile so it stacks below the text instead of overlapping it. The
     negative margin on .why-phone pulls the phone flush with the bottom of
     the green section. */
  .why-phone .phone-frame {
    position: relative;
    bottom: auto;
    width: min(360px, 80%);
    margin: 0 auto;
    display: block;
  }

  .why-phone .phone-frame::before {
    width: auto;
    left: -18px;
    right: -18px;
  }

  .how {
    padding: 80px 0 90px;
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 22px;
  }

  .pricing {
    padding: 80px 0 100px;
  }

  .pricing-grid {
    gap: 28px;
  }

  .faqs {
    padding: 80px 0 100px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .foot-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  /* Mobile nav: hamburger toggles a dropdown */
  .nav-inner {
    padding: 10px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    justify-content: flex-start;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
  }

  .nav .btn-cream {
    padding: 10px 18px;
    font-size: 12.5px;
  }

  .brand img {
    height: 40px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 72px);
    line-height: 1.05;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn-outline-orange,
  .hero-cta .btn-cream {
    width: 100%;
    max-width: 280px;
  }

  .why {
    padding: 60px 0;
  }

  .phone-frame {
    width: min(280px, 90%) !important;
  }

  .why-phone {
    margin-bottom: -100px;
  }

  .why-text h2 {
    font-size: 34px;
  }

  .why-text .lead,
  .why-text .lorem {
    font-size: 14px;
  }

  .why-features li {
    font-size: 16px;
  }

  .how {
    padding: 60px 0 80px;
  }

  .how-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding-top: 30px;
  }

  .pricing {
    padding: 60px 0 80px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .pricing-card::before {
    left: 0;
    right: 0;
  }

  .faqs {
    padding: 60px 0 80px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 14.5px;
  }

  .faq-body {
    padding: 0 20px 20px;
    font-size: 14px;
  }


  .contact-form {
    padding: 26px 20px;
  }

  .cta-card {
    padding: 40px 24px 34px;
    border-radius: 64px;
  }

  .store-buttons {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    min-width: 0;
    flex: 0 0 auto;
    width: min(260px, 100%);
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 36px;
  }

  .foot-col:first-child {
    grid-column: auto;
  }

  .foot-links {
    grid-template-columns: 1fr;
  }

  .foot-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 16px 16px;
  }

  .hero-title {
    font-size: clamp(38px, 14vw, 60px);
    line-height: 1;
  }

  .why-text h2 {
    font-size: 28px;
  }

  .why-features li {
    font-size: 14px;
  }

  .why-text .lead,
  .why-text .lorem {
    font-size: 13px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .price-head h3 {
    font-size: 24px;
  }

  .price-head .price {
    font-size: 36px;
  }

  .cta-card h2 {
    font-size: 18px;
  }

  .cta-card {
    border-radius: 48px;
  }

  .store-btn {
    padding: 8px 14px;
  }

  .store-big {
    font-size: 15px;
  }
}