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

:root {
  --saino-pink: #D90166;
  --saino-green: #4CAF50;
  --saino-cream: #FFF9F5;
  --saino-dark: #1A1A2E;
  --text-dark: #2D2D2D;
  --text-light: #666666;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}






/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background: #FBFBFB;
  /* padding: 40px 20px 50px; */
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  padding-top: 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-family: 'Inria Serif', serif;
  font-size: 48px;
  color: var(--saino-pink);
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  padding-top: 16px;
  font-weight: 400;
}

/* ========================================
   CAROUSEL - FIXED: ONLY IMAGES ROTATE
   ======================================== */
.hero-carousel {
  margin: 0 auto;
  max-width: 100%;
  padding: 60px 20px 0px;
  position: relative;
  /* min-height: 715px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.card-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0px;
  position: relative;
  margin-bottom: 25px;
}

.stack-card {
  position: relative;
  width: 240px;
  height: 500px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  cursor: pointer;
  opacity: 1;
  display: block;
  transform-origin: center bottom;
  /* Only transition size, border, shadow - NOT position */
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    border 0.6s ease,
    box-shadow 0.6s ease,
    margin-bottom 0.6s ease,
    background 0.6s ease,
    border-radius 0.6s ease;
}

/* Let the browser track the cards for smooth crossfades */
:root {
  /* Disable full-page flash during carousel updates */
  view-transition-name: none;
}

/* Position-based heights - cards stay in fixed positions */
.stack-card:nth-child(1) {
  height: 440px;
  width: 200px;
  margin-bottom: 70px;
}

.stack-card:nth-child(2) {
  height: 510px;
  width: 300px;
  margin-bottom: 40px;
}

.stack-card:nth-child(3) {
  width: 350px;
  height: 540px;
}

.stack-card:nth-child(4) {
  height: 510px;
  width: 300px;
  margin-bottom: 40px;
}

.stack-card:nth-child(5) {
  height: 440px;
  width: 200px;
  margin-bottom: 70px;
}

/* Track only the inner properties for smooth transitions so card layout doesn't break */
.stack-card:nth-child(1) img {
  view-transition-name: img-1;
}

.stack-card:nth-child(1) .profile-info {
  view-transition-name: info-1;
}

.stack-card:nth-child(2) img {
  view-transition-name: img-2;
}

.stack-card:nth-child(2) .profile-info {
  view-transition-name: info-2;
}

.stack-card:nth-child(3) img {
  view-transition-name: img-3;
}

.stack-card:nth-child(3) .profile-info {
  view-transition-name: info-3;
}

.stack-card:nth-child(4) img {
  view-transition-name: img-4;
}

.stack-card:nth-child(4) .profile-info {
  view-transition-name: info-4;
}

.stack-card:nth-child(5) img {
  view-transition-name: img-5;
}

.stack-card:nth-child(5) .profile-info {
  view-transition-name: info-5;
}

::view-transition-old(*),
::view-transition-new(*) {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.stack-card.loaded {
  display: block;
}



/* Left-side cards (before center) */
.stack-card:nth-child(1):not(.is-center),
.stack-card:nth-child(2):not(.is-center) {
  border-radius: 16px 0 0 16px;
  /* Rounded left corners only */
  overflow: hidden;
  /* Important: clips the image */
  background-color: #FBFBFB;
  /* fill the empty corners */
}

/* Center card */
.stack-card.is-center {
  border-radius: 16px;
  /* All corners rounded */
  overflow: hidden;
  /* Ensure image stays inside */
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #FFD700 0%, #FFA500 35%, #FF1493 100%) border-box;
}

/* Right-side cards (after center) */
.stack-card:nth-child(4):not(.is-center),
.stack-card:nth-child(5):not(.is-center) {
  border-radius: 0 16px 16px 0;
  /* Rounded right corners only */
  overflow: hidden;
  /* Important: clips the image */
  background-color: #FBFBFB;
  /* fill the empty corners */
}



/* Brightness filter */
.stack-card:not(.is-center) img {
  filter: brightness(80%);
  background-color: #FBFBFB;
}

.stack-card:not(.is-center) {
  background-color: #FBFBFB;
}


.stack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* Images will change instantly within cards */
.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* position: absolute; */
  top: 0;
  left: 0;
  overflow: 1;
  transition: filter 0.6s ease, transform 0.3s ease;
  background: #FBFBFB;
  border-radius: 0;
}


.stack-card:hover img {
  transform: scale(1.05);
}

/* Center card styling - border stays in place */
.stack-card.is-center {
  width: 350px;
  height: 600px !important;
  opacity: 1;
  border: 16px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #FFD700 0%, #FFA500 35%, #FF1493 100%) border-box;
  border-radius: 28px;
  z-index: 10;
}

.stack-card.is-center img {
  border-radius: 12px;
  filter: brightness(100%) !important;
}

.stack-card.is-center:hover img {
  transform: scale(1.05);
}

.stack-card:not(.is-center) img {
  filter: brightness(80%);
}

/* Animation for center card */
.stack-card.is-center {
  animation: centerCardPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes centerCardPop {
  0% {
    transform: scale(0.98);
  }

  50% {
    transform: scale(1.01);
  }

  100% {
    transform: scale(1);
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: 13px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E0E0E0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--saino-pink);
  width: 12px;
  height: 12px;
}

.carousel-dot:hover {
  background: #BDBDBD;
}

.dots {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  gap: 10px;
  height: 1px;
}

/* ===============================
   PROFILE INFO OVERLAY
   =============================== */
.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: none;
  text-align: center;
  color: white;
  pointer-events: none;
  height: 65px;
  z-index: 2;
  background: #14213D66;
  padding: 8px 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===============================
   NAME + ICON (FIRST LINE)
   =============================== */
.profile-name {
  font-family: 'Inria Serif';
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #FFFFFF;
  white-space: nowrap;
}

/* Verified tick badge */
.verified-badge {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  line-height: 0;
}

.verified-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border-radius: 0 !important;
}

/* ===============================
   LOCATION (SECOND LINE)
   =============================== */
.profile-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 400;
}

/* LOCATION ICON */
.location-icon {
  display: inline-flex;
  align-items: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  line-height: 0;
}

.location-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}


/* ========================================
   FEATURE PILLS
   ======================================== */
.feature-pills {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 0px;
  flex-wrap: wrap;
  padding: 0 20px;
  background: #FBFBFB;
}

.pill {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: none;
  transition: transform 0.3s;
  border: none;
}

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

.pill-icon {
  width: 60px;
  height: 60px;
  /* background: var(--saino-pink); */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.pill-icon img {
  width: 44px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* Visually scale up icons without breaking flexbox or distorting aspect ratios */
.pill-icon img[alt="Encryption"],
.pill-icon img[alt="AI Bot"] {
  transform: scale(1.3);
}

.pill-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  /* padding: 60px 20px; */
  background: white;
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-weight: 700;
  color: var(--saino-pink);
  line-height: 1.5;
  font-family: 'Inria Serif', serif;
  font-size: 40px;
}

.section-subtitle {
  text-align: center;
  font-size: 28px;
  padding-top: 10px;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

.how-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

.phone-mockup {
  text-align: center;
  position: relative;
  background: #FBFBFB;
  margin: 50px;
  padding-top: 6px;
  border-radius: 10px;
}

.phone-frame {
  position: relative;
  width: 172px;
  margin: 0 auto;
  display: inline-block;
}

.phone-frame-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.phone-frame-video {
  position: absolute;
  width: 99.8%;
  height: 100%;
  z-index: 1;
}

.phone-frame-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 36px;
  display: block;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 0;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: repeating-linear-gradient(to bottom,
      var(--saino-pink) 0px,
      var(--saino-pink) 6px,
      transparent 6px,
      transparent 12px);
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.step-number {
  width: 37px;
  height: 59px;
  background: #f4dada;
  border: 2px solid var(--saino-pink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--saino-pink);
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--saino-pink);
  line-height: 1.5;
}

.step-content p {
  font-size: 14px;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;

}

/* ========================================
   TESTIMONIAL CAROUSEL
   ======================================== */
.testimonial-section {
  padding: 38px 5px;
  background: #FBFBFB;
  overflow: hidden;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: stretch;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px 30px;
  text-align: left;
  border: 2px solid #FFD964;
  border-radius: 23px;
  background: #FFD9640D;
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 0 0 100%;
  height: auto;
  align-self: stretch;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #FFDC6F;
}

.testimonial-content {
  flex: 1;
}

.price-amount {
  font-weight: 600;
}

.testimonial-text {
  font-family: 'Inria Serif';
  font-size: 26px;
  font-weight: 600;
  color: #343756;
  line-height: 1.5;
  margin-bottom: 6px;
  padding-top: 0;
  text-align: justify;
}

.testimonial-author {
  font-family: 'Inria Serif';
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 30px;
  text-align: start;
}

.carousel-controls {
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin-top: 15px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-dot {
  height: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  flex: 1;
}

.testimonial-dot.active {
  background: #343756;
}

.testimonial-dot:hover {
  background: #BDBDBD;
}

/* ========================================
   MORE THAN DATING
   ======================================== */
.more-than-dating {
  /* padding: 60px 20px; */
  background: white;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.read-more-split {
  display: flex;
  justify-content: end;
  gap: 5px;
}

.read-more-split img {
  width: 24px;
  height: 23px;
}

.dating-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-tag {
  position: absolute;
  bottom: 20px;
  left: 128px;
  background: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d02d6e;
}

.read-more-section {
  text-align: right;
  margin-top: 30px;
}

.read-more-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saino-pink);
  text-decoration: underline;
  transition: all 0.3s;
}

/* .read-more-btn:hover {
    background: var(--saino-pink);
    color: white;
} */

/* ========================================
   WORLD MAP
   ======================================== */
.world-section {
  /* padding: 45px 20px 40px; */
  background: white;
}

.map-container {
  margin-top: 40px;
  margin-bottom: 0;
  text-align: center;
  background: white;
  border-radius: 24px;
}

.map-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ========================================
   PRICING
   ======================================== */

.currency-toggle-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  margin-right: 21px;
}

.currency-toggle {
  display: inline-flex;
  background: #FFE5F0;
  border-radius: 25px;
  padding: 0;
  overflow: hidden;
}

.currency-option {
  padding: 7px 10px;
  border: none;
  background: #E5E7EB;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: none;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  width: 50%;
}

.currency-option.active {
  background: #F7CCE0;
  color: #1F2937;
  box-shadow: none;
}

.currency-option:hover:not(.active) {
  font-weight: 300;

}

.currency-option:not(.active) {
  background-color: #E5E7EB;

}

/* First button - left side */
.currency-option:first-child {
  border-radius: 25px 0 0 25px;
}

/* Last button - right side */
.currency-option:last-child {
  border-radius: 0 25px 25px 0;
}

.currency-symbol,
.price-value {
  display: inline-block;
  transition: opacity 0.2s ease;
}


.pricing-section {
  position: relative;
  /* padding: 70px 20px; */
  background: #FFFFFF;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pricing-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--saino-pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pricing-loading-text {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-card {
  background: white;
  border: 3px solid #E5E5E5;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  animation: fadeInUp 0.5s ease forwards;
  display: flex;
  flex-direction: column;
  width: 299px;
  height: 400px;
}

@keyframes fadeInUp {
  from {

    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(4) {
  animation-delay: 0.4s;
}

.pricing-card.featured {
  border-color: var(--saino-pink);
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(217, 1, 102, 0.2);
}

.pricing-card:hover {
  border-color: var(--saino-pink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  background: #FFEEF6;
}

.highlight-plan {
  border-color: var(--saino-pink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  background: #FFEEF6;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-name {
  font-size: 20px;
  margin-bottom: 16px;
  color: #9B9EA4;
}

.plan-price-wrapper {
  width: 95%;
  margin: 0 auto 24px auto;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  background-position: bottom;
  background-size: 12px 2px;
  background-repeat: repeat-x;
}

.plan-price {
  font-size: 36px;
  font-weight: 560;
  color: var(--saino-pink);
  line-height: 1;
}

.plan-price-original {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px !important;
  font-weight: 400;
  line-height: 1;
  color: #9B9EA4;
  text-decoration: line-through;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
  flex-grow: 1;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 8px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.plan-features::-webkit-scrollbar {
  display: none;
}

.plan-features::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.plan-features::-webkit-scrollbar-thumb {
  background: var(--saino-pink);
  border-radius: 10px;
}

.plan-features::-webkit-scrollbar-thumb:hover {
  background: #C2185B;
}

.plan-features {
  scrollbar-width: thin;
  scrollbar-color: var(--saino-pink) #f1f1f1;
}

.plan-features li {
  padding: 8px 9px;
  font-size: 16px;
  color: #6F6E6E;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.plan-features li:before {
  content: "✓";
  color: var(--saino-pink);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.plan-button {
  width: 100%;
  padding: 14px 32px;
  background: var(--saino-pink);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
}

.plan-button:hover {
  background: #C2185B;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 1, 102, 0.3);
}

/* ========================================
   DOWNLOAD APP
   ======================================== */
.download-section {
  height: 563px;
  width: 1500px;
  padding: 30px 12px;
  background: #fde0e5;
  margin: -9px auto;
}

.download-wrapper {
  max-width: 1240px;
  margin: 18px auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 55px;
  align-items: center;
}

.download-heading {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.2;
}

.download-heading span {
  color: var(--saino-pink);
}

.download-description {
  font-size: 16px;
  margin-bottom: 20px;
  margin-left: 6px;
  line-height: 1.6;
}

.download-qr-stores {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 279;
  width: 490px;
}

.download-qr-stores>div>p {
  font-size: 14px;
  margin-bottom: 9px;
  line-height: 1.5;
  margin-left: 42px;
}

.qr-and-stores {
  display: flex;
  gap: 14px;
  align-items: center;
}

.qr-code-box {
  background: white;
  padding: 12px;
  width: 227px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-code-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-link {
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.store-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.store-link img {
  height: 44px;
  width: auto;
  display: block;
}

.mockups-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.mockup-phone {
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: white;
  position: relative;
}

.mockup-phone img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 32px;
  object-fit: cover;
}

.mockup-phone-1 {
  width: 210px;
  height: 450px;
  z-index: 2;
  position: relative;
  margin-right: -35px;
}

.mockup-phone-2 {
  width: 207px;
  height: 400px;
  z-index: 1;
  position: relative;
  margin-top: 27px;
  margin-left: 10px;
}

.feature-badge {
  position: absolute;
  background: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(217, 1, 102, 0.2);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 10;
  color: var(--text-dark);
  white-space: nowrap;
  height: 34px;
}

.feature-badge-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: white;
  flex-shrink: 0;
}

.feature-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-1 {
  top: 25px;
  left: -150px;
}

.badge-2 {
  top: 50%;
  left: -121px;
  transform: translateY(-50%);
}

.badge-3 {
  bottom: 50px;
  left: -153px;
}

.badge-4 {
  top: 14px;
  right: -127px;
}

.badge-5 {
  top: 50%;
  right: -139px;
  transform: translateY(-50%);
}

.badge-6 {
  bottom: 40px;
  right: -115px;
}

.mobile-features-list {
  display: none;
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
  /* padding: 60px 20px; */
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FAFAFA;
  border-radius: 12px;
  margin-bottom: 5px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  background: #F5F5F5;
}

.faq-question {
  width: 100%;
  padding: 25px 28px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--saino-pink);
}

.faq-icon {
  font-size: 24px;
  color: var(--saino-pink);
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 28px 0;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 14px;
}

/* ========================================
   CONTACT CTA
   ======================================== */
.contact-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF9F5 0%, #FFE8F0 100%);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.cta-email {
  font-size: 28px;
  color: var(--saino-pink);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s;
  word-break: break-word;
}

.cta-email:hover {
  transform: scale(1.05);
}

#home section {
  margin-bottom: 80px;
}



/* ======================================== 
   COMPLETE MOBILE RESPONSIVE CSS - MATCHES DESIGN
   Replace everything from @media (max-width: 768px) onwards in index.css
======================================== */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
    width: 100%;
  }

  #home section {
    margin-bottom: 0;
  }

  /* ========================================
     HERO SECTION
  ======================================== */
  .hero-section {
    padding: 20px 0 0;
    overflow: hidden;
    background: #FBFBFB;
  }

  .hero-container {
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-title {
    font-size: 36px !important;
    line-height: 1.3;
    padding: 0;
    margin-bottom: 6px;
    color: var(--saino-pink);
  }

  .hero-subtitle {
    font-size: 24px !important;
    padding: 6px 0 0;
    line-height: 1.5;
    color: #444;
    text-align: center;
  }

  /* Hero Carousel - 3 CARDS, BLEED TO EDGES LIKE DESIGN */
  .hero-carousel {
    min-height: 420px;
    padding: 24px 0 0;
    overflow: visible;
    /* allow side cards to bleed to edges */
    width: 100%;
  }

  .card-stack {
    gap: 0;
    justify-content: center;
    width: 100%;
    padding: 0;
    align-items: flex-end;
    overflow: visible;
  }

  /* HIDE cards 1 and 5 — only show 3 cards on mobile */
  .stack-card:nth-child(1),
  .stack-card:nth-child(5) {
    display: none !important;
  }

  /* Left card (2nd) — bleeds left edge */
  .stack-card:nth-child(2) {
    height: 320px !important;
    width: 160px !important;
    margin-bottom: 28px !important;
    border-radius: 0 !important;
    /* no radius — bleeds to edge */
    display: block !important;
    flex-shrink: 0;
  }

  /* Center card (3rd) */
  .stack-card:nth-child(3) {
    height: 370px !important;
    width: 200px !important;
    margin-bottom: 0 !important;
    display: block !important;
    flex-shrink: 0;
  }

  /* Right card (4th) — bleeds right edge */
  .stack-card:nth-child(4) {
    height: 320px !important;
    width: 160px !important;
    margin-bottom: 28px !important;
    border-radius: 0 !important;
    /* no radius — bleeds to edge */
    display: block !important;
    flex-shrink: 0;
  }

  .stack-card.is-center {
    width: 220px !important;
    height: 390px !important;
    border: 8px solid transparent;
    margin-bottom: 0 !important;
    border-radius: 26px !important;
  }

  .stack-card.is-center img {
    border-radius: 12px;
  }

  .profile-info {
    height: 52px;
    padding: 6px 8px;
  }

  .profile-name {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .profile-location {
    font-size: 9px;
  }

  .carousel-dots {
    margin-top: 14px;
    padding: 0 10px;
    height: 12px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.active {
    width: 10px;
    height: 10px;
  }

  /* ========================================
     FEATURE PILLS - DISPLAYED LIKE DESKTOP, RIGHT AFTER CAROUSEL
  ======================================== */

  .how-it-works .section-container {
    display: flex;
    flex-direction: column;
  }

  .how-it-works .feature-pills {
    order: -1;
    display: flex !important;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    margin-top: 0;
    margin-bottom: 24px;
    padding: 16px 12px;
    background: #FBFBFB;
    border-bottom: 1px solid #f0f0f0;
  }

  .pill {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
    padding: 8px 4px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }

  .pill-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pill-icon img {
    width: 36px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }

  /* Visually scale up icons without breaking flexbox layout */
  .pill-icon img[alt="Encryption"],
  .pill-icon img[alt="AI Bot"] {
    transform: scale(1.3);
  }

  .pill-text {
    font-size: 13.5px !important;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    font-weight: 400;
  }

  .how-it-works .section-title {
    order: 0;
    font-size: 28.6 px !important;
  }

  .how-it-works .section-subtitle {
    order: 0;
    font-size: 20px !important;
  }

  .how-it-works .how-content {
    order: 0;
  }

  /* ========================================
     HOW IT WORKS
  ======================================== */
  .how-it-works {
    padding: 30px 16px 24px;
    background: white;
  }

  .section-container {
    max-width: 100%;
    padding: 0;
  }

  .section-title {
    font-size: 28.6px !important;
    padding: 0;
    line-height: 1.5;
    margin-bottom: 6px;
    font-weight: 700;
  }

  .section-subtitle {
    font-size: 20px !important;
    padding: 0;
    margin-bottom: 22px;
    text-align: center;
    line-height: 1.6;
    color: #555;
  }

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

  .phone-mockup {
    order: -1;
    padding: 20px 0 10px;
    margin: 0;
    background: #FBFBFB;
    border-radius: 12px;
  }

  .phone-frame {
    width: 190px;
  }

  .phone-frame-image {
    width: 100%;
  }

  .phone-frame-video {
    top: 5px;

    width: 100%;
    height: 98%;
  }

  .steps-list {
    padding-left: 0;
    order: 1;
    gap: 14px;
  }

  .steps-list::before {
    left: 15px;
    top: 50px;
    bottom: 50px;
    width: 2px;
  }

  .step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .step-number {
    width: 36px;
    height: 58px;
    font-size: 14px;
    flex-shrink: 0;
    background: #f4dada;
    border: 2px solid var(--saino-pink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--saino-pink);
    position: relative;
    z-index: 1;
  }

  .step-content {
    flex: 1;
    padding-top: 4px;
  }

  .step-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--saino-pink);
    font-weight: 700;
  }

  .step-content p {
    font-size: 14.5px;
    line-height: 1.55;
    color: #555;
  }

  /* ========================================
     TESTIMONIAL SECTION
  ======================================== */
  .testimonial-section {
    padding: 30px 16px 24px;
    background: #FBFBFB;
  }

  .testimonial-container {
    max-width: 100%;
  }

  .testimonial-slide {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 18px;
    min-width: 100%;
  }

  .testimonial-image {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    border: 1px solid #FFDC6F;
    box-shadow: 0 0 0 5px #F8F8F8, 0 0 0 6px #FFDC6F;
  }

  .testimonial-content {
    flex: 1;
  }

  .testimonial-text {
    font-size: 18px !important;
    line-height: 1.5;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 700;
  }

  .testimonial-author {
    font-size: 12px;
    margin-bottom: 0;
  }

  .carousel-controls {
    margin-top: 12px;
  }

  .testimonial-dots {
    gap: 8px;
  }

  .testimonial-dot {
    height: 3px;
  }

  .testimonial-dot.active {
    background: #343756;
  }

  /* ========================================
     MORE THAN DATING
  ======================================== */
  .more-than-dating {
    padding: 30px 16px 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .dating-card {
    height: 240px;
    border-radius: 18px;
    width: 310px;
    margin: 0 auto;
  }

  .card-tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    font-size: 13px;
    padding: 7px 18px;
    white-space: nowrap;
  }

  .read-more-section {
    text-align: center;
    margin-top: 18px;
  }

  .read-more-split {
    justify-content: center;
  }

  .read-more-btn {
    font-size: 14px;
  }

  /* ========================================
     WORLD MAP SECTION
  ======================================== */
  .world-section {
    padding: 30px 16px 24px;
  }

  .map-container {
    margin-top: 22px;
    margin-bottom: 0;
  }

  .map-container img {
    border-radius: 12px;
    width: 100%;
  }

  /* ========================================
     PRICING SECTION
  ======================================== */
  .pricing-section {
    padding: 30px 16px 24px;
  }

  .currency-toggle-container {
    justify-content: flex-end;
    margin-right: 0;
    margin-bottom: 7px;
    margin-right: 36px;
  }

  .currency-option {
    padding: 6px 18px;
    font-size: 13px;
    background-color: #E5E7EB;
  }

  .currency-option:first-child {
    border-radius: 20px 0 0 20px;
  }

  .currency-option:last-child {
    border-radius: 0 20px 20px 0;
  }

  /* .currency-option:not :active { color: #E5E7EB;} */

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 100px;
  }

  .pricing-card {
    width: 81%;
    max-width: 90%;
    height: auto;
    min-height: auto;
    margin: 0 auto;
    padding: 22px 24px;
    text-align: center;
  }

  .plan-features {
    margin-bottom: 18px;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
    text-align: left;
  }

  .plan-features li {
    padding: 6px 12px;
    font-size: 13.5px;
    justify-content: flex-start;
  }

  .plan-name {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .plan-price-wrapper {
    min-height: auto;
    margin-bottom: 16px;
  }

  .plan-price {
    font-size: 30px;
  }

  .plan-price-original {
    font-size: 36px !important;
  }

  .plan-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

  /* ========================================
     DOWNLOAD SECTION — CENTERED ALL CONTENT
  ======================================== */
  .download-section {
    height: 820px;
    width: 100%;
    max-width: 100%;
    padding: 60px 16px 0;
    margin: 0;
    background: #fde0e5;
    position: relative;
    overflow: hidden;
  }

  .download-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    justify-items: center;
  }

  .qr-code-box img {
    width: 147px;
    height: 110px;
    object-fit: contain;
  }

  .download-left-content {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .download-heading {
    font-size: 30px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 12px;
    padding: 0;
    width: 100%;
    font-weight: 800;
  }

  .download-description {
    font-size: 16px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 24px;
    padding: 0;
    line-height: 1.5;
    color: #333;
    width: 100%;
    max-width: 320px;
  }

  .download-qr-stores {
    width: 100%;
    max-width: 340px;
    height: auto;
    padding: 20px 20px 20px !important;
    margin: 0 auto;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  }

  .download-qr-stores>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .download-qr-stores>div>p {
    font-size: 13px;
    text-align: center;
    margin-bottom: 20px;
    margin-left: 0;
    line-height: 1.4;
    font-weight: 500;
  }

  .qr-and-stores {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .qr-code-box {
    width: 110px;
    height: 110px;
    padding: 8px;
    flex-shrink: 0;
  }

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

  .store-link img {
    height: 38px;
    width: auto;
  }

  .download-right-preview {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mockups-container {
    display: flex !important;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    transform: scale(0.85);
    transform-origin: top center;
    margin: 20px auto 30px;
    min-height: 460px;
  }

  .mockup-phone {
    border-radius: 28px;
  }

  .mockup-phone img {
    border-radius: 28px;
  }

  .mockup-phone-1 {
    width: 210px;
    height: 450px;
    z-index: 2;
    position: relative;
    margin-right: -35px;
  }

  .mockup-phone-2 {
    width: 207px;
    height: 400px;
    z-index: 1;
    position: relative;
    margin-top: 27px;
    margin-left: 10px;
  }

  feature-badge {
    display: flex !important;
    font-size: 13px;
    padding: 4px 11px;
    height: auto;
    gap: 8px;
    white-space: nowrap;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .feature-badge-icon {
    width: 14px;
    height: 14px;
    font-size: 13px;
  }

  .badge-1 {
    top: 10px;
    left: -85px;
  }

  .badge-2 {
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
  }

  .badge-3 {
    bottom: 40px;
    left: -95px;
  }

  .badge-4 {
    top: 0px;
    right: -85px;
  }

  .badge-5 {
    top: 50% !important;
    right: -86px !important;
    transform: translateY(-50%) !important;
  }

  .badge-6 {
    bottom: 30px;
    right: -85px;
  }

  .mobile-features-list {
    display: none !important;
  }

  /* ========================================
     FAQ SECTION
  ======================================== */
  .faq-section {
    padding: 30px 16px 24px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-item {
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .faq-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .faq-answer-content {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-cta {
    padding: 30px 16px;
  }

  .cta-box {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .cta-box h3 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .cta-email {
    font-size: 18px;
    word-break: break-word;
  }
}

/* ======================================== 
   SMALL MOBILE — 480px
======================================== */
@media (max-width: 480px) {

  .hero-title {
    font-size: 23px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-carousel {
    min-height: 380px;
    padding: 20px 0 0;
  }

  .stack-card:nth-child(2) {
    height: 295px !important;
    width: 126px !important;
    margin-bottom: 24px !important;
  }

  .stack-card:nth-child(3) {
    height: 340px !important;
    width: 180px !important;
  }

  .stack-card:nth-child(4) {
    height: 295px !important;
    width: 126px !important;
    margin-bottom: 24px !important;
  }

  .stack-card.is-center {
    width: 200px !important;
    height: 358px !important;
    border: 7px solid transparent;
  }

  .feature-pills {
    padding: 12px 10px 16px;
    gap: 4px;
  }

  .pill-icon {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .pill-icon img {
    width: 30px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }

  /* Visually scale up icons without breaking flexbox */
  .pill-icon img[alt="Encryption"],
  .pill-icon img[alt="AI Bot"] {
    transform: scale(1.3);
  }

  .pill-text {
    font-size: 9.5px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .phone-frame {
    width: 178px;
  }

  .testimonial-image {
    width: 68px;
    height: 68px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .dating-card {
    height: 225px;
    width: 310px;
    margin: 0 auto;
  }

  .download-heading {
    font-size: 26px;
  }

  .download-qr-stores {
    padding: 24px 16px;
  }

  .qr-code-box {
    width: 100px;
    height: 100px;
  }

  .mockups-container {
    transform: scale(0.75);
    min-height: 400px;
    margin-top: 10px;
  }

  .badge-1 {
    left: -85px;
  }

  .badge-2 {
    left: -80px;
  }

  .badge-3 {
    top: 377px;
    left: -81px;
  }

  .badge-4 {
    right: -85px;
  }

  .badge-5 {
    right: -105px;
  }

  .badge-6 {
    right: -85px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 13px;
  }

  .faq-answer-content {
    padding: 0 16px 14px;
    font-size: 12.5px;
  }
}

/* ======================================== 
   EXTRA SMALL — 375px
======================================== */
@media (max-width: 375px) {

  .hero-container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 21px;
  }

  .hero-subtitle {
    font-size: 12.5px;
  }

  .hero-carousel {
    min-height: 355px;
    padding: 18px 0 0;
  }

  .stack-card:nth-child(2) {
    height: 275px !important;
    width: 112px !important;
    margin-bottom: 22px !important;
  }

  .stack-card:nth-child(3) {
    height: 318px !important;
    width: 162px !important;
  }

  .stack-card:nth-child(4) {
    height: 275px !important;
    width: 112px !important;
    margin-bottom: 22px !important;
  }

  .stack-card.is-center {
    width: 182px !important;
    height: 336px !important;
    border: 6px solid transparent;
  }

  .feature-pills {
    padding: 10px 8px 16px;
    gap: 3px;
  }

  .pill-icon {
    width: 30px;
    height: 30px;
  }

  .pill-icon img {
    width: 22px;
    height: 22px;
  }

  .pill-text {
    font-size: 9px;
  }

  .section-title {
    font-size: 21px;
  }

  .section-subtitle {
    font-size: 12.5px;
  }

  .phone-frame {
    width: 165px;
  }

  .step-number {
    width: 34px;
    height: 54px;
    font-size: 13px;
  }

  .step-content h4 {
    font-size: 13px;
  }

  .step-content p {
    font-size: 11.5px;
  }

  .testimonial-slide {
    gap: 11px;
    padding: 13px 11px;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonial-text {
    font-size: 12.5px;
  }

  .dating-card {
    height: 210px;
    width: 310px;
    margin: 0 auto;
  }

  .card-tag {
    font-size: 12px;
    padding: 6px 14px;
  }

  .download-heading {
    font-size: 24px;
  }

  .download-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .download-qr-stores {
    padding: 24px 12px;
  }

  .qr-code-box {
    width: 100px;
    height: 100px;
  }

  .store-link img {
    height: 36px;
  }

  .mockups-container {
    transform: scale(0.72);
    min-height: 380px;
  }

  .badge-1 {
    left: -80px;
  }

  .badge-2 {
    left: -75px;
  }

  .badge-3 {
    left: -90px;
  }

  .badge-4 {
    right: -80px;
  }

  .badge-5 {
    right: -100px;
  }

  .badge-6 {
    right: -80px;
  }

  .pricing-card {
    padding: 20px 16px;
  }

  .plan-name {
    font-size: 16px;
  }

  .plan-price {
    font-size: 28px;
  }

  .plan-features li {
    font-size: 13px;
  }

  .plan-button {
    padding: 11px 20px;
    font-size: 13px;
  }

  .faq-question {
    padding: 13px 14px;
    font-size: 12.5px;
  }

  .faq-answer-content {
    padding: 0 14px 13px;
    font-size: 12px;
  }

  .cta-box {
    padding: 28px 16px;
  }

  .cta-box h3 {
    font-size: 20px;
  }

  .cta-email {
    font-size: 16px;
  }
}