:root {
  --brand: #E45876;
  --brand-600: #E45876;
  --brand-700: #E45876;
  --bg: #ffffff;
  --text: #0b1220;
  /* slightly darker for elegant contrast */
  --muted: #526072;
  /* refined muted tone */
  --line: #e9eef6;
  --radius: 12px;
  /* spacing and containers */
  --container-max: 1200px;
  --container-padding: 20px;
}

* {
  box-sizing: border-box
}

html {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  flex: 1;
}

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

/* Navbar (sticky) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px -12px rgba(2, 6, 23, .08)
}

.navbar__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 16px;
  gap: 32px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(51, 45, 230, 0.06)
}

/* layout helper: container */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-inline: var(--container-padding)
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  background: rgba(51, 45, 230, 0.04);
  border-color: var(--brand);
  transform: translateY(0);
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 22px;
  max-width: 60ch
}

.lead {
  font-size: 20px;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.2px
}

.btn:hover {
  background: var(--brand-700);
  transform: translateY(-1px)
}

.hero-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.hero__visual {
  position: relative;
}

.card {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.04);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px -14px rgba(11, 18, 32, .06);
  min-height: 320px
}

.menu a:hover {
  color: var(--brand);
}

.btn {
  background: var(--brand-600);
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow .18s ease, transform .18s ease;
  text-decoration: none;
  box-shadow: 0 8px 24px -12px rgba(51, 45, 230, .16)
}

.btn:hover {
  background: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -16px rgba(51, 45, 230, .22)
}

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__copy {
  max-width: 580px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text);
}

.section__head {
  text-align: center;
  margin-bottom: 36px
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}

.section__head h2 {
  font-size: clamp(24px, 4vw, 34px);
  margin: 0 0 8px;
  letter-spacing: -0.6px;
  font-weight: 700
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.email-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 4px 20px -8px rgba(11, 18, 32, 0.08);
  max-width: 520px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-input-wrapper:focus-within {
  border-color: var(--brand);
  box-shadow: 0 4px 24px -8px rgba(51, 45, 230, 0.15);
}

.email-icon {
  flex-shrink: 0;
}

.email-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0;
  font-size: 16px;
  color: var(--text);
  background: transparent;
}

.email-input::placeholder {
  color: #9CA3AF;
}

.email-input-wrapper .btn {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-cta {
  font-size: 15px;
  font-weight: 600;
}

.hero-cta svg {
  transition: transform 0.2s ease;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

.muted {
  color: var(--muted);
  font-size: 15px
}

/* subtle typographic refinements */
p {
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px
}

small {
  color: var(--muted)
}

.card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border-radius: 16px;
  padding: 12px
}

.skel {
  height: 10px;
  background: #e5e7eb;
  border-radius: 6px
}

.w-64 {
  width: 256px
}

.w-24 {
  width: 96px
}

.w-40 {
  width: 160px
}

.grid {
  display: grid
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr)
}

.gap-12 {
  gap: 12px
}

.gap-16 {
  gap: 16px
}

.gap-24 {
  gap: 24px
}

.mt-12 {
  margin-top: 12px
}

.mt-16 {
  margin-top: 16px
}

.tile {
  height: 110px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e7e6ff, #f3f2ff)
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px
}

.chip {
  height: 56px;
  border-radius: 12px;
  background: #f3f2ff
}

/* Images */
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px -20px rgba(11, 18, 32, 0.15);
}

.product-shot-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(11, 18, 32, 0.08));
}

.person .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover
}

/* SECTION */
.section {
  padding-block: 80px
}

.section--alt {
  background: #f8fafc
}

.section__head {
  text-align: center;
  margin-bottom: 28px
}

.section__head h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin: 0 0 8px
}

.muted {
  color: var(--muted)
}

/* FEATURES */
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.features__copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text);
}

.features__copy p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(11, 18, 32, 0.1);
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.feature-item:hover .feature__icon {
  transform: scale(1.05);
}

.feature__icon--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
}

.feature__icon--funnel {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
}

.feature__icon--analytics {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.feature-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.feature {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
  background: #fff
}

.feature:hover {
  box-shadow: 0 16px 48px -18px rgba(2, 6, 23, .12);
  transform: translateY(-3px)
}

/* PRODUCT */
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding-block: 40px;
}

.product__visual {
  position: relative;
}

.product__copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text);
}

.product__copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.product__copy p:last-child {
  margin-bottom: 0;
}

.list {
  margin: 16px 0 0 0;
  padding-left: 18px
}

.list li {
  margin: 8px 0
}

.small li {
  font-size: 14px
}

.cta-inline {
  display: flex;
  gap: 12px;
  margin-top: 16px
}

/* Signup / Create account */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: start
}

.oauth {
  padding: 6px
}

.oauth .btn.w-100 {
  width: 100%;
  display: block
}

.w-100 {
  width: 100%
}

.captcha {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px
}

.captcha-box {
  min-width: 140px;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f6f6ff, #f3f2ff);
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center
}

@media (max-width: 900px) {
  .signup-grid {
    grid-template-columns: 1fr
  }
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.plan {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

.plan--free {
  display: flex;
  flex-direction: column;
}

.plan--pro {
  background: linear-gradient(135deg, #4F46E5 0%, #3B82F6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 20px 60px -20px rgba(79, 70, 229, .4);
  position: relative;
}

.plan__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plan__header {
  margin-bottom: 24px;
}

.plan__header h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
  color: #3B82F6;
}

.plan--pro .plan__header h3 {
  color: #fff;
}

.plan__subtitle {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.plan--pro .plan__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.plan__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.plan__pricing {
  margin-bottom: 28px;
}

.plan__subtitle-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.plan__price sup {
  font-size: 20px;
  font-weight: 600;
}

.plan__price span {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.plan__price sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.plan__installment {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.plan__features--white li {
  color: #fff;
}

.plan__features svg {
  flex-shrink: 0;
}

.btn--outline {
  background: transparent;
  border: 2px solid #3B82F6;
  color: #3B82F6;
  box-shadow: none;
}

.btn--outline:hover {
  background: #3B82F6;
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: #3B82F6;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.2);
}

.btn--white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.25);
}

.plan:hover {
  transform: translateY(-4px);
}

.plan--pro:hover {
  box-shadow: 0 24px 70px -24px rgba(79, 70, 229, .5);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  padding: 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px -8px rgba(11, 18, 32, 0.08);
  border: 1px solid rgba(11, 18, 32, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -12px rgba(11, 18, 32, 0.12);
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial__role {
  font-size: 14px;
  color: var(--muted);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e7e6ff
}

/* FAQ */
.faq-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.faq__header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 0;
  position: sticky;
  top: 100px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 2px 12px -4px rgba(11, 18, 32, 0.04);
  transition: box-shadow 0.2s ease;
}

.faq__item:hover {
  box-shadow: 0 8px 24px -8px rgba(11, 18, 32, 0.1);
}

.faq__item[open] {
  box-shadow: 0 8px 24px -8px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.faq__question {
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: #3B82F6;
}

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 28px 24px 28px;
  animation: fadeIn 0.3s ease;
}

.faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA SECTION */
.cta-section {
  background-image: url(assets/img/bg_contact.png);
 
  position: relative;
  overflow: hidden;
  padding-block: 70px;
  
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #fff;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.btn--cta {
  background: #10B981;
  color: #fff;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  box-shadow: 0 8px 24px -8px rgba(16, 185, 129, 0.5);
  transition: all 0.3s ease;
}

.btn--cta:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(16, 185, 129, 0.6);
}

.btn--cta svg {
  transition: transform 0.2s ease;
}

.btn--cta:hover svg {
  transform: translateX(4px);
}

/* CONTACT */
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 32px;
  align-items: start
}

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

.field span {
  font-size: 14px;
  color: var(--muted)
}

input,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: inherit;
  background: #fff
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(5, 150, 105, .2);
  border-color: var(--brand)
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  background: #fff
}

.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding-block: 18px
}

.footer__legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer__legal-links a {
  text-decoration: none;
  color: var(--muted);
}

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

.footer__legal-links .dot {
  color: var(--muted);
}

.social {
  display: flex;
  gap: 14px;
  color: var(--muted)
}

.footer__legal {
  padding-bottom: 22px;
  color: var(--muted);
  text-align: center
}

/* Mega footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding-block: 40px
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 18px
}

.site-footer .brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.site-footer .links-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.site-footer .links-col h4 {
  margin: 0 0 8px
}

.site-footer a.footer-link {
  text-decoration: none;
  color: var(--muted);
  display: block;
  margin: 6px 0
}

.site-footer a.footer-link:hover {
  color: var(--text)
}

.site-footer .social {
  display: flex;
  gap: 12px
}

.site-footer .newsletter {
  display: flex;
  gap: 8px
}

.site-footer .newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line)
}

.site-footer .newsletter button {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: var(--brand);
  color: #fff
}

.site-footer .legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.site-footer .legal small {
  display: flex;
  align-items: center;
  gap: 8px
}

@media (max-width:900px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .site-footer .links-col {
    grid-template-columns: repeat(2, 1fr)
  }

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

/* WhatsApp Floating Button */
.whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  box-shadow: 0 14px 36px -12px rgba(0, 0, 0, .35);
  z-index: 60;
  transition: transform .2s ease, filter .2s ease
}

.whats:hover {
  transform: translateY(-2px);
  filter: brightness(.95)
}

/* Responsive */
@media (max-width: 1020px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(36px, 8vw, 48px);
  }

  .product__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product__copy h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features__copy h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq__header h2 {
    position: static;
  }

  .cta-section {
    padding-block: 60px;
  }

  .cta-content h2 {
    font-size: clamp(32px, 7vw, 44px);
  }

  .contact__grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 900px) {

  .menu,
  .actions {
    display: none
  }

  .menu-toggle {
    display: block
  }
}

@media (max-width: 560px) {
  .grid--3 {
    grid-template-columns: 1fr
  }

  .grid--4 {
    grid-template-columns: 1fr 1fr
  }

  .grid--2 {
    grid-template-columns: 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .email-input-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .email-input-wrapper .btn {
    width: 100%;
  }
}

/* Headings use Epilogue for a distinct display style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Epilogue, Inter, Poppins, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0
}