/* styles.css - Theme #1DA995, big fonts, responsive, large CTAs, nav CTA */
:root {
  --theme: #1DA995;
  --theme-dark: #158f7e;
  --theme-light: #e0f7f4;
  --text: #1e2b2a;
  --bg: #ffffff;
  --alt-bg: #f5fcfb;
  --button-text: #ffffff;
  --font-main: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
  color: #0b2b27;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

p, li, dd, dt {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

/* Header & Navigation */
.site-header {
  background: white;
  border-bottom: 1px solid #d4ede8;
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--theme-dark);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.desktop-nav a {
  text-decoration: none;
  color: #1e3b36;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.4rem 0;
}
.desktop-nav a:hover {
  color: var(--theme);
}
/* Small CTA button on right of nav */
.nav-cta-btn {
  background: var(--theme);
  color: white !important;
  padding: 0.6rem 1.6rem !important;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.1rem !important;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: #14806f;
  color: white !important;
}

/* CTA Buttons – large and friendly */
.cta-button {
  display: inline-block;
  background: var(--theme);
  color: var(--button-text);
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin: 1.2rem 0;
  box-shadow: 0 8px 18px rgba(29,169,149,0.3);
  line-height: 1.3;
}
.cta-button:hover {
  background: #17917f;
  transform: translateY(-2px);
}
.large-cta {
  font-size: 1.7rem;
  padding: 1.4rem 3rem;
}
.massive-cta {
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  background: #0f7b6e;
  box-shadow: 0 12px 24px rgba(15,123,110,0.4);
}

/* Redefined Hero sections */
.hero-top {
  background: linear-gradient(135deg, #e0f7f3 0%, #ffffff 100%);
  text-align: center;
  padding: 2rem 0 2rem;
}
.hero-sub {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0c4b41;
  margin-top: 0.5rem;
}

.hero-two-col {
  background: #ffffff;
  padding: 2rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
/* Hero Product Image Styles */
.hero-image .image-placeholder {
  background: #d9f2ed;
  border-radius: 28px;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(29,169,149,0.12);
}

.hero-product-image {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  transition: transform 0.3s ease;
}

.hero-product-image:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 750px) {
  .hero-product-image {
    max-height: 280px;
  }
}
.hero-text-content h3 {
  font-size: 1.7rem;
  margin: 1.5rem 0 0.8rem;
}
.hero-benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}
.hero-benefit-list li {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.ready-text {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}
/* Hero Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  font-weight: 600;
  color: #0c4b41;
  font-size: 0.95rem;
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(29,169,149,0.08);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.hero-trust-badges span:hover {
  background: rgba(29,169,149,0.15);
  transform: translateY(-1px);
}

/* Highlight the money back guarantee badge */
.hero-trust-badges span:nth-child(2) {
  background: rgba(29,169,149,0.15);
  border: 1px solid rgba(29,169,149,0.25);
  color: #0b5e52;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-trust-badges {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-trust-badges span {
    width: fit-content;
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
  }
}

/* What Is The Last Wish Section Styles */
.what-is-section {
  background: #f5fcfb; /* Light theme background */
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative element */
.what-is-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29,169,149,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.what-is-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(29,169,149,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.what-is-section .container {
  position: relative;
  z-index: 1;
}

h2 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0b2b27;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

/* Subtle underline accent */
h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #1DA995;
  border-radius: 2px;
}

p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #1e2b2a;
  margin-bottom: 1.2rem;
}

/* Highlighted quote styling for the core idea */
.what-is-section p:nth-of-type(3) {
  font-weight: 600;
  color: #0c4b41;
  font-size: 1.35rem;
  background: rgba(29,169,149,0.08);
  padding: 1rem 1.5rem;
  border-left: 5px solid #1DA995;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
}

.listen-list {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.listen-list li {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1e2b2a;
  background: white;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(29,169,149,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listen-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29,169,149,0.15);
}

.listen-list li::before {
  content: "🎧 ";
  margin-right: 2px;
}

/* Responsive adjustments */
@media (max-width: 750px) {
  .what-is-section {
    padding: 3rem 0;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  p {
    font-size: 1.15rem;
  }
  
  .what-is-section p:nth-of-type(3) {
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
  }
  
  .listen-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .listen-list li {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Why Are So Many People Interested in Manifestation Section Styles */
.why-section {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
}

/* Subtle top border accent */
.why-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1DA995, #158f7e);
  border-radius: 2px;
}

.lead-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0c4b41;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.emphasis-text {
  font-weight: 600;
  color: #0c4b41;
  font-size: 1.3rem;
}

/* Negative thoughts blockquote styling */
.negative-thoughts {
  background: #fef6f6;
  border-left: 5px solid #e57373;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 1.8rem 0;
  position: relative;
}

.negative-thoughts::before {
  content: "💭";
  position: absolute;
  top: -15px;
  left: 15px;
  font-size: 1.8rem;
  background: white;
  padding: 0 8px;
  border-radius: 50%;
}

.thought-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.thought-list li {
  font-size: 1.2rem;
  font-style: italic;
  color: #5d4037;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.6;
}

.thought-list li::before {
  content: "❝";
  position: absolute;
  left: 0;
  color: #e57373;
  font-weight: bold;
  font-size: 1.3rem;
  opacity: 0.7;
}

/* Positive actions list styling */
.positive-actions {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.positive-actions li {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1e2b2a;
  background: #f0faf8;
  padding: 0.9rem 1.3rem;
  border-radius: 10px;
  border: 1px solid rgba(29,169,149,0.15);
  transition: all 0.2s ease;
  position: relative;
  padding-left: 2.2rem;
}

.positive-actions li::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  color: #1DA995;
  font-weight: bold;
  font-size: 1.2rem;
}

.positive-actions li:hover {
  background: #e0f7f3;
  border-color: #1DA995;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29,169,149,0.12);
}

/* Last sentence emphasis */
.why-section p:last-of-type {
  font-weight: 700;
  color: #0b4b41;
  font-size: 1.3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(29,169,149,0.08), rgba(29,169,149,0.04));
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 750px) {
  .why-section {
    padding: 3rem 0;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  p {
    font-size: 1.15rem;
  }
  
  .lead-text {
    font-size: 1.3rem;
  }
  
  .negative-thoughts {
    padding: 1.2rem 1.5rem;
  }
  
  .thought-list li {
    font-size: 1.1rem;
  }
  
  .positive-actions {
    grid-template-columns: 1fr;
  }
  
  .positive-actions li {
    font-size: 1.1rem;
  }
  
  .why-section p:last-of-type {
    font-size: 1.15rem;
    padding: 1rem;
  }
}

/* ============ Mid-Page CTA Section with Product Image ============ */
.mid-cta-section {
  background: linear-gradient(160deg, #1DA995 0%, #158f7e 40%, #0f7b6e 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Background pattern overlay */
.mid-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  z-index: 0;
}

/* Dot pattern */
.mid-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  opacity: 0.5;
}

.mid-cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.mid-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* ============ Left Column: Product Image ============ */
.mid-cta-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.cta-product-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.cta-product-image:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Glow effect behind image */
.image-glow {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 24px;
  z-index: 1;
  filter: blur(20px);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

/* Floating badge */
.floating-badge {
  position: absolute;
  top: -15px;
  right: -10px;
  background: #ffffff;
  color: #0f7b6e;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: float-badge 3.5s ease-in-out infinite;
}

.badge-star {
  font-size: 1.1rem;
}

@keyframes float-badge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ============ Right Column: CTA Content ============ */
.mid-cta-content {
  text-align: left;
}

.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}

.mid-cta-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Highlights Row */
.cta-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.cta-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
}

.cta-highlight-item:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.2rem;
}

/* CTA Button */
.cta-button.pulse-cta {
  display: inline-block;
  background: #ffffff;
  color: #0f7b6e;
  padding: 1.2rem 2.6rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: pulse-cta 2.5s infinite;
  margin-bottom: 1.2rem;
}

.cta-button.pulse-cta:hover {
  background: #f0faf8;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
  animation: none;
}

@keyframes pulse-cta {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  }
  50% {
    box-shadow: 0 8px 44px rgba(255,255,255,0.5), 0 0 0 14px rgba(255,255,255,0.08);
  }
}

/* ============ Mid-Page CTA Trust Row ============ */
.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  justify-content: center;
}

.cta-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
}

/* Highlight the money back guarantee */
.cta-trust-row span:nth-child(3) {
  background: rgba(255,255,255,0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.separator {
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .cta-trust-row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .separator {
    display: none;
  }

  .cta-trust-row span {
    font-size: 0.9rem;
  }
}

/* ============ Responsive Design ============ */
@media (max-width: 900px) {
  .mid-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mid-cta-image-col {
    order: -1;
  }

  .cta-product-image {
    max-width: 320px;
  }

  .mid-cta-content {
    text-align: center;
  }

  .cta-highlights {
    justify-content: center;
  }

  .cta-trust-row {
    justify-content: center;
  }

  .mid-cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .mid-cta-section {
    padding: 3rem 0;
  }

  .cta-product-image {
    max-width: 260px;
  }

  .mid-cta-content h2 {
    font-size: 1.7rem;
  }

  .cta-description {
    font-size: 1.05rem;
  }

  .cta-button.pulse-cta {
    font-size: 1.15rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }

  .cta-highlights {
    flex-direction: column;
    align-items: center;
  }

  .cta-highlight-item {
    width: fit-content;
  }

  .separator {
    display: none;
  }

  .floating-badge {
    top: -10px;
    right: -5px;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/* ============ Pricing Section ============ */
.cta-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0 1.5rem;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
}

.pricing-regular,
.pricing-today {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

.pricing-amount {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.old-price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,100,100,0.7);
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
}

.new-price {
  font-size: 2rem;
  color: #ffd966;
  text-shadow: 0 0 20px rgba(255,217,102,0.4);
  animation: price-glow 2s ease-in-out infinite;
}

@keyframes price-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,217,102,0.4); }
  50% { text-shadow: 0 0 30px rgba(255,217,102,0.7), 0 0 40px rgba(255,217,102,0.3); }
}

.pricing-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}

.pricing-save {
  width: 100%;
  text-align: center;
  margin-top: 0.3rem;
}

.save-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  animation: pulse-save 2s ease-in-out infinite;
}

@keyframes pulse-save {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 600px) {
  .cta-pricing {
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
  }

  .pricing-arrow {
    transform: rotate(90deg);
  }

  .pricing-amount {
    font-size: 1.4rem;
  }

  .new-price {
    font-size: 1.8rem;
  }

  .old-price {
    font-size: 1.1rem;
  }
}

/* How Does The Last Wish Work Section Styles */
.how-section {
  background: linear-gradient(180deg, #f8fdfc 0%, #f0faf8 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Background decorative circles */
.how-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29,169,149,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.how-section::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(29,169,149,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.how-section .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.section-intro {
  font-size: 1.25rem;
  color: #2d4a45;
  max-width: 750px;
  margin: 0 auto 0.8rem;
  line-height: 1.7;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0c4b41;
  margin-top: 0.5rem;
}

/* Steps Container */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

/* Vertical connector line */
.steps-container::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1DA995 0%, #1DA995 60%, transparent 100%);
  border-radius: 4px;
  z-index: 0;
}

/* Step Card */
.step-card {
  display: flex;
  gap: 2rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(29,169,149,0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 32px rgba(29,169,149,0.12);
  border-color: rgba(29,169,149,0.3);
}

/* Step Icon & Number */
.step-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 80px;
  position: relative;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 14px rgba(29,169,149,0.15);
  z-index: 1;
}

.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1DA995;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(29,169,149,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}

/* Step Content */
.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 1.15rem;
  color: #3d5550;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.step-example-label {
  font-weight: 600;
  color: #0c4b41;
  margin-top: 0.8rem;
  margin-bottom: 0.6rem;
}

/* Visualization List */
.visualize-list {
  list-style: none;
  padding-left: 0;
  margin: 0.8rem 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
}

.visualize-list li {
  font-size: 1.05rem;
  color: #2d4a45;
  font-weight: 500;
  background: #f8fdfc;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(29,169,149,0.1);
  transition: all 0.2s ease;
}

.visualize-list li:hover {
  background: #e0f7f3;
  border-color: #1DA995;
  transform: translateY(-2px);
}

.list-marker {
  margin-right: 6px;
  font-size: 1.1rem;
}

/* Step Tip */
.step-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: #f8fdfc;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  margin-top: 0.8rem;
  border-left: 3px solid #1DA995;
  font-size: 1.05rem;
  color: #2d5a52;
  line-height: 1.5;
}

.step-tip.highlight-tip {
  background: rgba(29,169,149,0.06);
  border-left-color: #0f7b6e;
}

.tip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(29,169,149,0.15);
}

.cta-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0b4b41;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: #1DA995;
  color: #ffffff;
  padding: 1.1rem 2.6rem;
  border-radius: 50px;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(29,169,149,0.3);
  transition: all 0.25s ease;
}

.cta-button:hover {
  background: #158f7e;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(29,169,149,0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .how-section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .steps-container::before {
    left: 32px;
  }

  .step-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-icon-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-width: auto;
  }

  .step-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .visualize-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.7rem;
  }

  .step-card {
    padding: 1.2rem;
  }

  .visualize-list {
    grid-template-columns: 1fr;
  }

  .cta-button {
    font-size: 1.15rem;
    padding: 0.9rem 2rem;
    width: 100%;
    text-align: center;
  }
}

/* ============ What Makes The Last Wish Different Section ============ */
.different-section {
  background: #ffffff;
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.left-align {
  text-align: left;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.section-lead {
  font-size: 1.2rem;
  color: #4a5f5a;
  max-width: 750px;
  margin: 0 auto 0.6rem;
  line-height: 1.7;
}

.section-highlight {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0c4b41;
  max-width: 750px;
  margin: 0 auto 0.6rem;
  line-height: 1.6;
}

.section-highlight strong {
  color: #1DA995;
}

.section-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e3b36;
  margin-top: 1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: #f8fdfc;
  border: 1px solid rgba(29,169,149,0.1);
  border-radius: 18px;
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: #ffffff;
  border-color: #1DA995;
  box-shadow: 0 8px 28px rgba(29,169,149,0.1);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  flex-shrink: 0;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.4rem;
}

.feature-text p {
  font-size: 1.05rem;
  color: #3d5550;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============ Who Is The Last Wish Best For Section ============ */
.who-section {
  background: #f5fcfb;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.who-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(29,169,149,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.who-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(29,169,149,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.who-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.who-intro {
  font-size: 1.2rem;
  color: #4a5f5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 2-Column Grid */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Column Cards */
.who-column {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(29,169,149,0.08);
  transition: all 0.3s ease;
}

.who-column:hover {
  box-shadow: 0 10px 32px rgba(29,169,149,0.1);
  transform: translateY(-4px);
}

/* Column Header */
.column-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(29,169,149,0.1);
}

.column-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.column-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0b2b27;
  margin: 0;
}

/* Left Column: Ideal For */
.who-ideal {
  border-top: 4px solid #1DA995;
}

.column-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0c4b41;
  margin-bottom: 1rem;
}

.who-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(29,169,149,0.06);
  font-size: 1.05rem;
  color: #3d5550;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.who-list li:last-child {
  border-bottom: none;
}

.who-list li:hover {
  padding-left: 6px;
  color: #0b2b27;
}

.check-icon {
  color: #1DA995;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Right Column: Not For */
.who-not-for {
  border-top: 4px solid #f0a060;
}

.not-for-content p {
  font-size: 1.05rem;
  color: #5d5d5d;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.reminder-box {
  background: linear-gradient(135deg, #fef9f4, #fdf4ea);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px solid rgba(240,160,96,0.2);
}

.reminder-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.reminder-box p {
  font-size: 1rem;
  color: #5d4a3a;
  line-height: 1.6;
  margin-bottom: 0;
}

.reminder-box strong {
  color: #0b2b27;
}

/* ============ Responsive Design ============ */
@media (max-width: 850px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .who-column {
    padding: 1.8rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .who-section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .who-column {
    padding: 1.4rem;
  }

  .column-header h3 {
    font-size: 1.2rem;
  }

  .who-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .not-for-content p {
    font-size: 1rem;
  }
}

/* ============ Why Building a Positive Mindset Matters Section ============ */
.mindset-section {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.mindset-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(29,169,149,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mindset-section::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(29,169,149,0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mindset-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.mindset-intro {
  font-size: 1.2rem;
  color: #4a5f5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 2-Column Grid */
.mindset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Column Cards */
.mindset-column {
  background: #fafdfc;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(29,169,149,0.08);
  transition: all 0.3s ease;
}

.mindset-column:hover {
  box-shadow: 0 10px 32px rgba(29,169,149,0.1);
  transform: translateY(-4px);
}

/* Column Header */
.column-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(29,169,149,0.1);
}

.column-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.column-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0b2b27;
  margin: 0;
}

/* ============ Left Column: Key Insights ============ */
.mindset-insights {
  border-top: 4px solid #1DA995;
}

.insights-content p {
  font-size: 1.05rem;
  color: #3d5550;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* Insight Points */
.insight-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-point {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(29,169,149,0.08);
  transition: all 0.25s ease;
}

.insight-point:hover {
  background: #f0faf8;
  border-color: rgba(29,169,149,0.2);
  transform: translateX(4px);
}

.point-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e0f7f3, #d4f3ef);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-point strong {
  display: block;
  font-size: 1.05rem;
  color: #0b2b27;
  margin-bottom: 0.2rem;
}

.insight-point p {
  font-size: 0.95rem;
  color: #5d6f6b;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============ Right Column: Solution & CTA ============ */
.mindset-solution {
  border-top: 4px solid #1DA995;
  background: linear-gradient(180deg, #f8fdfc 0%, #f0faf8 100%);
}

.solution-content p {
  font-size: 1.05rem;
  color: #3d5550;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* Solution Benefits */
.solution-benefits {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: #2d4a45;
  font-weight: 500;
}

.benefit-check {
  color: #1DA995;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* CTA Box */
.solution-cta-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.8rem;
  margin-top: 1.5rem;
  text-align: center;
  border: 2px solid rgba(29,169,149,0.15);
  box-shadow: 0 6px 20px rgba(29,169,149,0.08);
}

.solution-cta-box p {
  color:rgb(11, 43, 39);
} 

.cta-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.4rem;
}

.cta-info {
  font-size: 1rem;
  color: #5d6f6b;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.cta-button.solution-cta {
  display: inline-block;
  background: #1DA995;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(29,169,149,0.3);
  transition: all 0.25s ease;
  margin-bottom: 0.6rem;
}

.cta-button.solution-cta:hover {
  background: #158f7e;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(29,169,149,0.4);
}

.cta-link {
  display: block;
  font-size: 0.95rem;
  color: #1DA995;
  text-decoration: underline;
  font-weight: 500;
}

.cta-link:hover {
  color: #0f7b6e;
}

/* ============ Responsive Design ============ */
@media (max-width: 850px) {
  .mindset-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mindset-column {
    padding: 1.8rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .mindset-section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .mindset-column {
    padding: 1.4rem;
  }

  .column-header h3 {
    font-size: 1.2rem;
  }

  .insights-content p,
  .solution-content p {
    font-size: 1rem;
  }

  .insight-point {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
  }

  .solution-cta-box {
    padding: 1.3rem;
  }

  .cta-button.solution-cta {
    font-size: 1.05rem;
    padding: 0.8rem 1.6rem;
    width: 100%;
    text-align: center;
  }
}

/* ============ Testimonials Section ============ */
.testimonials-section {
  background: linear-gradient(180deg, #f8fdfc 0%, #f0faf8 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29,169,149,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.testimonials-intro {
  font-size: 1.15rem;
  color: #4a5f5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ Overall Rating Summary ============ */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.8rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(29,169,149,0.08);
  border: 1px solid rgba(29,169,149,0.1);
  flex-wrap: wrap;
}

.overall-stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.8rem;
  line-height: 1;
}

.star.filled {
  color: #f5a623;
}

.star.half {
  color: #f5a623;
  position: relative;
}

.star.half::after {
  content: "★";
  position: absolute;
  left: 0;
  color: #d4d4d4;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.overall-score {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.score-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b2b27;
  line-height: 1;
}

.score-label {
  font-size: 0.95rem;
  color: #6b7a77;
  font-weight: 500;
}

.overall-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1DA995;
}

.count-label {
  font-size: 0.85rem;
  color: #6b7a77;
}

/* ============ Testimonials Grid ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  border: 1px solid rgba(29,169,149,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(29,169,149,0.12);
  border-color: rgba(29,169,149,0.2);
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* User Avatar */
.user-avatar {
  flex-shrink: 0;
  position: relative;
}

.avatar-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0f7f3;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1DA995, #158f7e);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e0f7f3;
}

/* User Info */
.user-info {
  flex: 1;
  min-width: 120px;
}

.user-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b2b27;
  margin: 0 0 2px;
}

.user-location {
  font-size: 0.9rem;
  color: #7a8a87;
}

/* Individual Rating */
.individual-rating {
  display: flex;
  gap: 1px;
  margin-left: auto;
}

.individual-rating .star {
  font-size: 1.2rem;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1.05rem;
  color: #3d5550;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1rem;
  flex: 1;
  position: relative;
  padding-left: 1.2rem;
  border-left: 3px solid rgba(29,169,149,0.2);
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(29,169,149,0.08);
  font-size: 0.85rem;
}

.verified-badge {
  color: #1DA995;
  font-weight: 600;
}

.review-date {
  color: #9aabA7;
}

/* ============ Trust Bar ============ */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(29,169,149,0.06);
  border: 1px solid rgba(29,169,149,0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2d4a45;
}

.trust-icon {
  font-size: 1.3rem;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .overall-rating {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
  }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .testimonial-card {
    padding: 1.3rem;
  }

  .testimonial-header {
    gap: 0.6rem;
  }

  .avatar-image,
  .avatar-placeholder {
    width: 48px;
    height: 48px;
  }

  .individual-rating .star {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* ============ Pre-Included CTA Section ============ */
.pre-included-cta-section {
  background: linear-gradient(160deg, #1DA995 0%, #158f7e 40%, #0f7b6e 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Background pattern */
.pre-included-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  z-index: 0;
}

.pre-included-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  opacity: 0.4;
}

.pre-included-cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.pre-included-wrapper {
  text-align: center;
}

.pre-included-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Badge */
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* Heading */
.pre-included-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* ============ Product Image After Heading - Fixed 520x433 ============ */
.pre-included-image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pre-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  display: inline-block;
  width: 520px;
  max-width: 100%;
}

.pre-product-image {
  width: 520px;
  height: 433px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.4s ease;
  max-width: 100%;
}

.pre-product-image:hover {
  transform: scale(1.02);
}

/* Image Placeholder */
.pre-image-placeholder {
  width: 520px;
  height: 433px;
  max-width: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.2);
}

.placeholder-icon {
  font-size: 4rem;
}

.pre-image-placeholder span:last-child {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Floating Badge */
.pre-image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #0f7b6e;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-star {
  font-size: 1rem;
}

/* Text */
.pre-included-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

/* ============ Pricing ============ */
.pre-included-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

.pricing-value {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.pricing-value.old {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255,100,100,0.6);
  color: rgba(255,255,255,0.55);
  font-size: 1.5rem;
}

.pricing-value.new {
  color: #ffd966;
  font-size: 2.8rem;
  text-shadow: 0 0 25px rgba(255,217,102,0.5);
  animation: price-glow 2s ease-in-out infinite;
}

@keyframes price-glow {
  0%, 100% { text-shadow: 0 0 25px rgba(255,217,102,0.5); }
  50% { text-shadow: 0 0 40px rgba(255,217,102,0.8), 0 0 50px rgba(255,217,102,0.4); }
}

.savings-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 15px;
  animation: pulse-save 2s ease-in-out infinite;
}

@keyframes pulse-save {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-icon {
  font-size: 2rem;
  animation: bounce-divider 1.5s ease-in-out infinite;
}

@keyframes bounce-divider {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============ Highlights ============ */
.pre-included-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.highlight-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  transition: all 0.25s ease;
}

.highlight-badge:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.highlight-dot {
  font-size: 1rem;
}

/* ============ CTA Button ============ */
.cta-button.pre-included-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #0f7b6e;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: pulse-btn 2.5s infinite;
  margin-bottom: 1.2rem;
}

.cta-button.pre-included-cta-btn:hover {
  background: #f0faf8;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
  animation: none;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 8px 44px rgba(255,255,255,0.5), 0 0 0 14px rgba(255,255,255,0.06); }
}

/* ============ Trust Row ============ */
.pre-included-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.trust-divider {
  color: rgba(255,255,255,0.4);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .pre-included-content h2 {
    font-size: 2rem;
  }

  .pre-image-wrapper,
  .pre-product-image,
  .pre-image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 433;
  }

  .pre-product-image {
    height: auto;
  }

  .pre-image-placeholder {
    height: auto;
    aspect-ratio: 520 / 433;
  }

  .pre-included-pricing {
    gap: 1rem;
  }

  .pricing-value {
    font-size: 1.8rem;
  }

  .pricing-value.new {
    font-size: 2.4rem;
  }

  .pricing-value.old {
    font-size: 1.3rem;
  }
}

@media (max-width: 500px) {
  .pre-included-cta-section {
    padding: 3.5rem 0;
  }

  .pre-included-content h2 {
    font-size: 1.7rem;
  }

  .pre-included-text {
    font-size: 1.05rem;
  }

  .pre-included-pricing {
    flex-direction: column;
    gap: 0.8rem;
  }

  .pricing-divider {
    transform: rotate(90deg);
  }

  .pre-included-highlights {
    flex-direction: column;
    align-items: center;
  }

  .cta-button.pre-included-cta-btn {
    font-size: 1.15rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }

  .pre-included-trust {
    flex-direction: column;
    gap: 0.3rem;
  }

  .trust-divider {
    display: none;
  }

  .pre-image-badge {
    top: 8px;
    right: 8px;
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}

/* ============ What's Included Section ============ */
.included-section {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.included-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.included-intro {
  font-size: 1.2rem;
  color: #4a5f5a;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.7;
}

.included-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4b41;
  margin-bottom: 0.8rem;
}

.included-description {
  font-size: 1.15rem;
  color: #3d5550;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.7;
}

.included-note {
  font-size: 1.05rem;
  color: #6b7a77;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.6;
  font-style: italic;
}

.included-cta-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0b2b27;
  margin-top: 0.5rem;
}

/* ============ Core Features Grid ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: #f8fdfc;
  border: 1px solid rgba(29,169,149,0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: #ffffff;
  border-color: #1DA995;
  box-shadow: 0 10px 32px rgba(29,169,149,0.12);
  transform: translateY(-5px);
}

.feature-icon-wrap {
  margin-bottom: 1rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(29,169,149,0.1);
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.feature-content p {
  font-size: 1rem;
  color: #3d5550;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-list li {
  font-size: 0.95rem;
  color: #2d4a45;
  padding: 0.35rem 0;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}

.feature-list li::before {
  content: "✓";
  color: #1DA995;
  font-weight: bold;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.35rem;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.6rem;
  }

  .feature-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 1.3rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .feature-list li {
    font-size: 0.9rem;
  }
}

/* ============ Benefits Section ============ */
.benefits-wrapper {
  margin: 3rem 0;
  padding: 2.5rem;
  background: #f5fcfb;
  border-radius: 24px;
  border: 1px solid rgba(29,169,149,0.1);
}

.subsection-header {
  text-align: center;
  margin-bottom: 2rem;
}

.subsection-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.6rem;
}

.subsection-header p {
  font-size: 1.1rem;
  color: #4a5f5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(29,169,149,0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(29,169,149,0.1);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.benefit-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.98rem;
  color: #3d5550;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============ Free Gifts Section ============ */
.free-gifts-wrapper {
  margin: 3.5rem 0;
}

.gifts-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gifts-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3e0, #fde8c8);
  color: #c77d20;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  border: 2px dashed #f0b860;
  animation: gift-glow 2s ease-in-out infinite;
}

@keyframes gift-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,160,96,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(240,160,96,0); }
}

.gifts-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2b27;
  margin: 0;
}

/* Gifts List Container */
.gifts-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Gift Row */
.gift-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(145deg, #fffdf8, #fef9f0);
  border: 2px solid #f5d78c;
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gift-row::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(240,160,96,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.gift-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(240,160,96,0.15);
  border-color: #f0b860;
}

/* Reverse layout for alternating rows */
.gift-row-reverse {
  grid-template-columns: 2fr 1fr;
}

.gift-row-reverse .gift-content-col {
  order: 1;
}

.gift-row-reverse .gift-image-col {
  order: 2;
}

/* Gift Image Column */
.gift-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gift-image-wrap {
  width: 200px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 3px solid #f5d78c;
  box-shadow: 0 8px 24px rgba(240,160,96,0.15);
  position: relative;
}

.gift-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gift-row:hover .gift-image {
  transform: scale(1.05);
}

/* Image Placeholder */
.gift-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #fef9f0, #fdf4ea);
  color: #c77d20;
}

.placeholder-icon {
  font-size: 3rem;
  line-height: 1;
}

.gift-image-placeholder span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gift Content Column */
.gift-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gift-label {
  display: inline-block;
  background: #fef3e0;
  color: #c77d20;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  width: fit-content;
  border: 1px solid #f5d78c;
}

.gift-content-col h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.gift-content-col p {
  font-size: 1rem;
  color: #5d4a3a;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============ Responsive Design ============ */
@media (max-width: 768px) {
  .gift-row,
  .gift-row-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.8rem;
    text-align: center;
  }

  .gift-row-reverse .gift-content-col {
    order: 1;
  }

  .gift-row-reverse .gift-image-col {
    order: 2;
  }

  .gift-image-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .gift-label {
    margin-left: auto;
    margin-right: auto;
  }

  .gifts-header h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .gift-row,
  .gift-row-reverse {
    padding: 1.3rem;
    gap: 1.2rem;
    border-radius: 18px;
  }

  .gift-image-wrap {
    width: 140px;
    height: 140px;
  }

  .gift-content-col h4 {
    font-size: 1.15rem;
  }

  .gift-content-col p {
    font-size: 0.95rem;
  }

  .gifts-header h3 {
    font-size: 1.5rem;
  }

  .gifts-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }
}

/* ============ Section CTA ============ */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.cta-button.large-cta {
  display: inline-block;
  background: #1DA995;
  color: #ffffff;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(29,169,149,0.3);
  transition: all 0.3s ease;
}

.cta-button.large-cta:hover {
  background: #158f7e;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(29,169,149,0.4);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .included-section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .gifts-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-wrapper {
    padding: 1.8rem;
  }

  .subsection-header h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.7rem;
  }

  .feature-card {
    padding: 1.4rem;
  }

  .gift-card {
    padding: 1.3rem;
  }

  .gift-image-wrap {
    width: 60px;
    height: 60px;
  }

  .cta-button.large-cta {
    font-size: 1.15rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}

/* ============ Is The Last Wish Right for You Section ============ */
.right-section {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
.right-section::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29,169,149,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.right-section::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(29,169,149,0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.right-section .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

/* 2-Column Wrapper */
.right-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ============ Left Column: Checklist ============ */
.right-checklist-col {
  background: #f8fdfc;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(29,169,149,0.1);
  transition: all 0.3s ease;
}

.right-checklist-col:hover {
  box-shadow: 0 8px 28px rgba(29,169,149,0.08);
}

.right-header {
  margin-bottom: 1.5rem;
}

.right-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.right-intro {
  font-size: 1.15rem;
  color: #4a5f5a;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.right-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0c4b41;
  margin-bottom: 0;
}

/* Checklist */
.right-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.right-checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  font-size: 1.05rem;
  color: #2d4a45;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.right-checklist li:hover {
  background: #ffffff;
  border-color: rgba(29,169,149,0.15);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(29,169,149,0.06);
}

.check-icon {
  color: #1DA995;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(29,169,149,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ Right Column: Note & CTA ============ */
.right-note-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.note-card {
  background: linear-gradient(160deg, #fefdf8, #fdf9f2);
  border: 2px solid #f0d78c;
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.note-card:hover {
  box-shadow: 0 10px 30px rgba(240,160,96,0.1);
  transform: translateY(-4px);
}

.note-icon-wrap {
  margin-bottom: 0.8rem;
}

.note-icon {
  font-size: 2.2rem;
  width: 56px;
  height: 56px;
  background: #fef9f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f5d78c;
}

.note-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 1rem;
}

.note-card p {
  font-size: 1rem;
  color: #5d4a3a;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.note-card p:last-of-type {
  font-weight: 600;
  color: #4a3a2a;
}

/* Note CTA */
.note-cta {
  background: linear-gradient(135deg, #1DA995, #158f7e);
  border-radius: 20px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(29,169,149,0.2);
}

.cta-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #0f7b6e;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #f0faf8;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* ============ Responsive Design ============ */
@media (max-width: 900px) {
  .right-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .right-header h2 {
    font-size: 2rem;
  }

  .right-checklist-col {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .right-section {
    padding: 3rem 0;
  }

  .right-header h2 {
    font-size: 1.7rem;
  }

  .right-checklist-col {
    padding: 1.5rem;
  }

  .right-checklist li {
    font-size: 0.98rem;
    padding: 0.55rem 0.8rem;
  }

  .note-card {
    padding: 1.5rem;
  }

  .note-cta {
    padding: 1.4rem;
  }

  .cta-button {
    font-size: 1.05rem;
    padding: 0.85rem 1.8rem;
    width: 100%;
    text-align: center;
  }
}

/* ============ How to Get Started Section ============ */
.started-section {
  background: linear-gradient(180deg, #f5fcfb 0%, #ffffff 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.started-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29,169,149,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.started-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.started-intro {
  font-size: 1.15rem;
  color: #4a5f5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ Timeline Steps ============ */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

/* Step Marker (Number + Line) */
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1DA995, #158f7e);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(29,169,149,0.3);
  z-index: 2;
  position: relative;
}

.step-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, #1DA995 0%, #d4ede8 100%);
  border-radius: 2px;
  min-height: 40px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.timeline-step:last-child .step-line {
  display: none;
}

/* Step Card */
.step-card-horizontal {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(29,169,149,0.1);
  border-radius: 20px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.step-card-horizontal:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 28px rgba(29,169,149,0.1);
  border-color: rgba(29,169,149,0.25);
}

.step-icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-emoji {
  font-size: 1.6rem;
}

.step-body {
  flex: 1;
}

.step-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 1rem;
  color: #3d5550;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* Step Link */
.step-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #1DA995;
  text-decoration: underline;
  margin-top: 0.3rem;
  transition: color 0.2s;
}

.step-link:hover {
  color: #0f7b6e;
}

/* Routine Tags */
.routine-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.routine-tag {
  background: #f0faf8;
  color: #2d4a45;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(29,169,149,0.15);
  transition: all 0.2s;
}

.routine-tag:hover {
  background: #e0f7f3;
  border-color: #1DA995;
}

.step-note {
  font-size: 0.95rem;
  color: #6b7a77;
  font-style: italic;
  margin-top: 0.4rem;
}

/* ============ Bottom CTA ============ */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(29,169,149,0.1);
}

.cta-prompt {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b4b41;
  margin-bottom: 1rem;
}

.cta-button.large-cta {
  display: inline-block;
  background: #1DA995;
  color: #ffffff;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(29,169,149,0.3);
  transition: all 0.3s ease;
}

.cta-button.large-cta:hover {
  background: #158f7e;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(29,169,149,0.4);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .started-section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .timeline-step {
    gap: 1rem;
  }

  .step-marker {
    width: 40px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .step-card-horizontal {
    padding: 1.4rem;
    flex-direction: column;
    gap: 0.8rem;
  }

  .step-icon-box {
    width: 46px;
    height: 46px;
  }

  .step-body h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.7rem;
  }

  .step-card-horizontal {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }

  .routine-options {
    flex-direction: column;
    gap: 0.4rem;
  }

  .routine-tag {
    text-align: center;
  }

  .cta-button.large-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}

/* ============ Tips to Get the Most Section ============ */
.tips-section {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.tips-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.tips-intro {
  font-size: 1.15rem;
  color: #4a5f5a;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ Tips Grid ============ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

/* Tip Card */
.tip-card {
  background: #f8fdfc;
  border: 1px solid rgba(29,169,149,0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-card:hover {
  background: #ffffff;
  border-color: #1DA995;
  box-shadow: 0 12px 32px rgba(29,169,149,0.1);
  transform: translateY(-5px);
}

/* Highlighted card */
.tip-card-highlight {
  background: linear-gradient(145deg, #f0faf8, #e8f6f3);
  border-color: rgba(29,169,149,0.2);
  grid-column: 1 / -1;
}

.tip-card-highlight:hover {
  background: linear-gradient(145deg, #e8f6f3, #dff3ef);
}

.tip-icon-wrap {
  flex-shrink: 0;
}

.tip-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.tip-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b2b27;
  margin-bottom: 0.5rem;
}

.tip-content p {
  font-size: 1rem;
  color: #3d5550;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Action Examples */
.action-examples {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.98rem;
  color: #2d4a45;
  font-weight: 500;
  border: 1px solid rgba(29,169,149,0.1);
  transition: all 0.2s;
}

.action-item:hover {
  background: #f0faf8;
  border-color: #1DA995;
  transform: translateX(4px);
}

.action-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tip-highlight-text {
  font-weight: 600;
  color: #0c4b41;
  font-size: 1.05rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(29,169,149,0.15);
}

/* ============ Bottom CTA ============ */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-button.large-cta {
  display: inline-block;
  background: #1DA995;
  color: #ffffff;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(29,169,149,0.3);
  transition: all 0.3s ease;
}

.cta-button.large-cta:hover {
  background: #158f7e;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(29,169,149,0.4);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .tips-section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  .tip-card-highlight {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.7rem;
  }

  .tip-card {
    padding: 1.4rem;
  }

  .tip-content h3 {
    font-size: 1.15rem;
  }

  .action-item {
    font-size: 0.9rem;
    padding: 0.55rem 0.8rem;
  }

  .cta-button.large-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}

/* ============ FAQ Accordion Section ============ */
.faq-section {
  background: #f5fcfb;
  padding: 5rem 0;
  position: relative;
}

.faq-section .container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
}

/* ============ Accordion ============ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(29,169,149,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(29,169,149,0.2);
  box-shadow: 0 4px 16px rgba(29,169,149,0.06);
}

.faq-item.active {
  border-color: #1DA995;
  box-shadow: 0 6px 20px rgba(29,169,149,0.1);
}

/* Question Button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fdfc;
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b2b27;
  line-height: 1.4;
  flex: 1;
}

/* Plus/Minus Icon */
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  background: rgba(29,169,149,0.1);
  transition: all 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #1DA995;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
  background: #1DA995;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: #ffffff;
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer Panel */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-inner p {
  font-size: 1.02rem;
  color: #3d5550;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .faq-section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1.1rem 1.2rem;
  }

  .faq-question-text {
    font-size: 1.05rem;
  }

  .faq-answer-inner {
    padding: 0 1.2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.7rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-answer-inner p {
    font-size: 0.95rem;
  }
}

/* ============ Ready to Take the First Step Section ============ */
.final-cta-section {
  background: linear-gradient(160deg, #eafaf7 0%, #2c9f8a 40%, #186a5a 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(29,169,149,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(29,169,149,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.final-cta-section .container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 24px;
}

/* Wrapper */
.final-cta-wrapper {
  background: #ffffff;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 16px 48px rgba(29,169,149,0.1);
  border: 1px solid rgba(29,169,149,0.12);
  text-align: center;
}

/* ============ Content ============ */
.final-cta-content {
  width: 100%;
}

.final-cta-header {
  margin-bottom: 1.8rem;
}

.section-badge {
  display: inline-block;
  background: rgba(29,169,149,0.12);
  color: #0c7a6b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  margin-bottom: 0.8rem;
}

.final-cta-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0b2b27;
  line-height: 1.3;
  margin: 0;
}

/* ============ Product Image After Heading - Fixed 520x433 ============ */
.final-image-top {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.final-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(29,169,149,0.15);
  display: inline-block;
  width: 520px;
  max-width: 100%;
}

.final-product-image {
  width: 520px;
  height: 433px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.4s ease;
  max-width: 100%;
}

.final-product-image:hover {
  transform: scale(1.02);
}

/* Image Placeholder */
.final-image-placeholder {
  width: 520px;
  height: 433px;
  max-width: 100%;
  background: linear-gradient(145deg, #e0f7f3, #c8f0e8);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #1DA995;
}

.placeholder-icon {
  font-size: 4rem;
}

.final-image-placeholder span:last-child {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Floating Badge */
.image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #0f7b6e;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-star {
  font-size: 1rem;
}

/* Text Content */
.final-cta-text {
  font-size: 1.15rem;
  color: #3d5550;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0c4b41;
  margin-bottom: 0.8rem;
}

.final-cta-subtext {
  font-size: 1.3rem;
  color: #0b2b27;
  margin-bottom: 1.5rem;
}

/* ============ Benefits Grid ============ */
.final-benefits-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  max-width: 550px;
}

.benefit-grid-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #f8fdfc;
  border: 1px solid rgba(29,169,149,0.1);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 0.98rem;
  color: #2d4a45;
  font-weight: 500;
  transition: all 0.25s ease;
}

.benefit-grid-item:hover {
  background: #e8f6f3;
  border-color: #1DA995;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29,169,149,0.08);
}

.benefit-grid-full {
  grid-column: 1 / -1;
}

.benefit-icon-circle {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #e0f7f3, #c8f0e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* CTA Button */
.cta-button.massive-cta {
  display: inline-block;
  background: #1DA995;
  color: #ffffff;
  padding: 1.3rem 2.8rem;
  border-radius: 50px;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(29,169,149,0.35);
  transition: all 0.3s ease;
  margin-bottom: 1.2rem;
}

.cta-button.massive-cta:hover {
  background: #0f7b6e;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(29,169,149,0.45);
}

/* Trust Row */
.final-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.95rem;
  color: #6b7a77;
  font-weight: 500;
}

.trust-separator {
  color: #c0ceca;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .final-image-wrapper,
  .final-product-image,
  .final-image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 433;
  }

  .final-product-image {
    height: auto;
  }

  .final-image-placeholder {
    height: auto;
    aspect-ratio: 520 / 433;
  }
}

@media (max-width: 600px) {
  .final-cta-section {
    padding: 3rem 0;
  }

  .final-cta-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .final-cta-header h2 {
    font-size: 1.8rem;
  }

  .final-benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .benefit-grid-full {
    grid-column: 1;
  }

  .benefit-grid-item {
    font-size: 0.93rem;
    padding: 0.7rem 0.9rem;
  }

  .cta-button.massive-cta {
    font-size: 1.15rem;
    padding: 1rem 2rem;
    width: 100%;
  }

  .final-trust-row {
    flex-direction: column;
    gap: 0.3rem;
  }

  .trust-separator {
    display: none;
  }

  .image-badge {
    top: 8px;
    right: 8px;
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}

@media (max-width: 380px) {
  .final-cta-header h2 {
    font-size: 1.6rem;
  }
}

/* ============ Final CTA Pricing Section ============ */
.final-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  background: #f8fdfc;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(29,169,149,0.15);
  flex-wrap: wrap;
}

.final-pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.final-pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7a77;
}

.final-pricing-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #0b2b27;
}

.final-pricing-value.old {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #e57373;
  color: #9aabA7;
  font-size: 1.4rem;
}

.final-pricing-value.new {
  color: #1DA995;
  font-size: 2.6rem;
  animation: final-price-glow 2s ease-in-out infinite;
}

@keyframes final-price-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(29,169,149,0.3); }
  50% { text-shadow: 0 0 20px rgba(29,169,149,0.5), 0 0 30px rgba(29,169,149,0.2); }
}

.final-savings-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 15px;
  animation: pulse-save 2s ease-in-out infinite;
}

@keyframes pulse-save {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.final-pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-divider-icon {
  font-size: 1.8rem;
  animation: bounce-divider 1.5s ease-in-out infinite;
}

@keyframes bounce-divider {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Updated Trust Row */
.final-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.95rem;
  color: #6b7a77;
  font-weight: 500;
}

.final-trust-row span:nth-child(3) {
  background: rgba(29,169,149,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  color: #0c4b41;
}

.trust-separator {
  color: #c0ceca;
}

/* ============ Responsive ============ */
@media (max-width: 600px) {
  .final-pricing {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
  }

  .final-pricing-divider {
    transform: rotate(90deg);
  }

  .final-pricing-value {
    font-size: 1.6rem;
  }

  .final-pricing-value.new {
    font-size: 2.2rem;
  }

  .final-pricing-value.old {
    font-size: 1.2rem;
  }

  .final-trust-row {
    flex-direction: column;
    gap: 0.3rem;
  }

  .trust-separator {
    display: none;
  }
}

/* ============ Footer Section ============ */
.site-footer {
  background: #1a2b28;
  padding: 4rem 0 0;
  color: #d0dcd9;
  position: relative;
}

.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
  padding-right: 1rem;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #a8bab6;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Links Columns */
.footer-links h4,
.footer-support h4,
.footer-trust h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-support h4::after,
.footer-trust h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #1DA995;
  border-radius: 1px;
}

.footer-links ul,
.footer-support ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-support ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a,
.footer-support ul li a {
  color: #a8bab6;
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-links ul li a:hover,
.footer-support ul li a:hover {
  color: #1DA995;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trust-badges span {
  font-size: 0.93rem;
  color: #a8bab6;
  font-weight: 500;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.copyright {
  font-size: 0.9rem;
  color: #7d9490;
  margin: 0;
}

/* ============ Disclaimer Section ============ */
.disclaimer-section {
  background: #121f1d;
  padding: 1.5rem 0;
}

.disclaimer-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.disclaimer-content {
  text-align: center;
}

.disclaimer-content p {
  font-size: 0.85rem;
  color: #6b807c;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-content strong {
  color: #8a9e9a;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-right: 0;
  }

  .footer-links h4::after,
  .footer-support h4::after,
  .footer-trust h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links,
  .footer-support,
  .footer-trust {
    text-align: center;
  }

  .trust-badges {
    align-items: center;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }

  .footer-logo {
    font-size: 1.4rem;
  }

  .trust-badges {
    align-items: center;
  }

  .disclaimer-content p {
    font-size: 0.8rem;
  }
}
@media (max-width: 750px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 1.4rem;
  }
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .desktop-nav {
    margin-top: 0.8rem;
    gap: 0.8rem;
  }
  .cta-button, .large-cta, .massive-cta {
    font-size: 1.3rem;
    padding: 1rem 2rem;
  }
}