:root {
  --tomato: #C33F0E;
  --tomato-deep: #C0251A;
  --tomato-light: #EC5E39;
  --tomato-glow: rgba(232, 57, 42, 0.35);
  --cream: #FFF8F6;
  --dark: #181818;
  --dark-mid: #2E1512;
  --leaf: #3A7D44;
  --leaf-light: #5CB85C;
  --text-muted: rgba(26, 11, 9, 0.562);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  /* Change flex to grid */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* 3 columns: side, center, side */
  align-items: center;

  padding: 1.4rem 4rem;
  background: rgba(255, 248, 246, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 57, 42, 0.1);
  animation: slideDown 0.7s ease both;
}

.nav-logo {
  grid-column: 1;
  justify-content: flex-start;
  font-family: 'Quicksand', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}
.nav-logo span {
  color: var(--tomato);
}

.nav-logo .tomato-icon {
  width: 28px;
  height: 28px;
  position: relative;
  animation: gentleBob 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  grid-column: 2;
  /* Forces links into the middle column */
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--tomato);
  transition: right 0.3s ease;
}

.nav-links a:hover {
  color: var(--tomato);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  background: var(--tomato);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--tomato-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--tomato-glow);
}

.inline-icon {
  height: 1em;
  width: auto;
  vertical-align: middle;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(232, 57, 42, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(255, 92, 77, 0.1) 0%, transparent 60%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--tomato);
  opacity: 0.06;
  animation: floatBlob linear infinite;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  animation-duration: 20s;
}

.blob-2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -80px;
  animation-duration: 25s;
  animation-delay: -8s;
}

.blob-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  left: 15%;
  animation-duration: 18s;
  animation-delay: -3s;
  opacity: 0.04;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 57, 42, 0.1);
  border: 1px solid rgba(232, 57, 42, 0.25);
  color: var(--tomato);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.2s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tomato);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Quicksand', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.02;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-title em {
  font-style: normal;
  color: var(--tomato);
  position: relative;
  display: inline-block;
  /* Ensures the width is captured correctly */
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  right: 0;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='10' viewBox='0 0 200 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q25 1 50 5 Q75 9 100 5 Q125 1 150 5 Q175 9 200 5' stroke='%23EC5E39' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
  background-size: 200px 10px;

  /* The Magic: Create a mask that moves */
  -webkit-mask: linear-gradient(to right, #000 100%, transparent 100%) no-repeat;
  mask: linear-gradient(to right, #000 100%, transparent 100%) no-repeat;
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;

  animation: revealLine 1.5s 1.2s ease-out forwards;
}

.hero-sub {
  max-width: 1013px;
  margin: 2.5rem auto 3rem;
  font-size: 2.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.65s ease both;
}

.btn-primary {
  background: var(--tomato);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 8px 30px var(--tomato-glow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--tomato-glow);
}

.btn-secondary {
  border: 1.5px solid rgba(26, 11, 9, 0.2);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}

.timer-showcase {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  animation: fadeUp 0.8s 0.8s ease both;
}

.timer-card {
  background: var(--dark);
  border-radius: 32px;
  padding: 3rem 4rem;
  box-shadow: 0 40px 100px rgba(26, 11, 9, 0.3), 0 0 0 1px rgba(232, 57, 42, 0.2);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.timer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 57, 42, 0.15), transparent 70%);
}

.timer-ring-container {
  position: relative;
  width: 220px;
  height: 220px;
}

.timer-ring {
  width: 220px;
  height: 220px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 8;
}

.ring-progress {
  fill: none;
  stroke: var(--tomato);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 628;
  stroke-dashoffset: 150;
  animation: ringDrain 25s linear infinite;
  filter: drop-shadow(0 0 8px var(--tomato));
}

.timer-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.timer-time {
  font-family: 'Quicksand', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}

.timer-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.timer-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.ctrl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  font-size: 1rem;
}

.ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.ctrl-btn.play {
  width: 60px;
  height: 60px;
  background: var(--tomato);
  color: white;
  border-color: var(--tomato);
  box-shadow: 0 0 24px var(--tomato-glow);
  font-size: 1.3rem;
  animation: breathe 2s ease-in-out infinite;
}

.ctrl-btn.play:hover {
  transform: scale(1.08);
}

.timer-session-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  position: relative;
}

.session-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 0.5rem;
}

.session-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.session-dot.done {
  background: var(--tomato);
  box-shadow: 0 0 6px var(--tomato-glow);
}

.stats {
  background: var(--dark);
  padding: 3rem 4rem;
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tomato), transparent);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Quicksand', serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-num span {
  color: var(--tomato-light);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.features {
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  color: var(--tomato);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Quicksand', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4rem;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@property --border-draw {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

.feature-card {
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(26, 11, 9, 0.08);
  background: white;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  /* Removed 'overflow: hidden' so the new border overlay doesn't get clipped */
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px; /* Expands slightly to cover the existing 1px border */
  border-radius: inherit; /* Inherits the 24px radius */
  padding: 2px; /* Thickness of your new hover stroke */
  
  /* Creates the circular drawing effect */
  background: conic-gradient(from 0deg, var(--tomato) var(--border-draw), transparent var(--border-draw));
  
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  
  pointer-events: none; /* Ensures the border doesn't block mouse interactions */
  transition: --border-draw 0.5s ease-in-out;
}

/* Base hover effects */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 11, 9, 0.1);
}
.feature-card:hover::before {
  --border-draw: 100%;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(232, 57, 42, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(232, 57, 42, 0.2);
}


.feature-name {
  font-family: 'Quicksand', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.how {
  background: var(--dark);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how .section-title {
  color: white;
}

.how .section-tag {
  color: var(--tomato-light);
}

.steps {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.step:hover {
  background: rgba(255, 255, 255, 0.07);
}

.step-num {
  font-family: 'Quicksand', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--tomato-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Quicksand', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.7rem;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.466);
  line-height: 1.7;
  font-weight: 300;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  color: var(--tomato-light);
  font-size: 1.5rem;
}

.testimonials {
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.test-card {
  background: white;
  border: 1px solid rgba(26, 11, 9, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s;
  position: relative;
}

.test-card:nth-child(2) {
  transform: translateY(-20px);
}

.test-card:hover {
  transform: translateY(-6px);
}

.test-card:nth-child(2):hover {
  transform: translateY(-26px);
}

.test-stars {
  color: var(--tomato);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.test-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tomato), var(--tomato-deep));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}

.test-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.test-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cta-section {
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 57, 42, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Quicksand', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

footer {
  background: var(--dark);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  border-top: 1px solid rgba(232, 57, 42, 0.15);
}

.footer-logo {
  font-family: 'Quicksand', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
}

.footer-logo span {
  color: var(--tomato-light);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--tomato-light);
}

.tomato-hero {
  width: 80px;
  height: 80px;
  animation: gentleBob 3s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px var(--tomato-glow));
  margin-bottom: -1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes gentleBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes ringDrain {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 628;
  }
}

@keyframes breathe {

  0%,
  100% {
    box-shadow: 0 0 24px var(--tomato-glow);
  }

  50% {
    box-shadow: 0 0 42px rgba(232, 57, 42, 0.6);
  }
}

@keyframes drawLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes revealLine {
  0% {
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }

  100% {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1.2rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .features-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step-connector {
    display: none;
  }

  .test-card:nth-child(2) {
    transform: none;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .stats {
    gap: 3rem;
    padding: 3rem 2rem;
  }

  .features,
  .testimonials,
  .cta-section {
    padding: 5rem 2rem;
  }

  .how {
    padding: 5rem 2rem;
  }

  .timer-card {
    padding: 2rem;
  }
}

.legal-container {
  max-width: 800px;
  margin: 10rem auto 6rem;
  padding: 0 2rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
}

.legal-title {
  font-family: 'Quicksand', serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-content h2 {
  font-family: 'Quicksand', serif;
  font-size: 1.8rem;
  margin: 3rem 0 1rem;
  color: var(--tomato);
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

footer {
  background: var(--dark);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(232, 57, 42, 0.15);
}

.footer-logo {
  font-family: 'Quicksand', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
}

.footer-logo span {
  color: var(--tomato-light);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--tomato-light);
}

@media (max-width: 900px) {
  nav {
    padding: 1.2rem 2rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.pricing-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
}

.hero-bg-pricing {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(232, 57, 42, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(255, 92, 77, 0.1) 0%, transparent 60%);
}

.blob-pricing {
  position: absolute;
  border-radius: 50%;
  background: var(--tomato);
  opacity: 0.06;
  animation: floatBlob linear infinite;
  pointer-events: none;
  z-index: 0;
}

.blob-1-pricing {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  animation-duration: 20s;
}

.blob-2-pricing {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -80px;
  animation-duration: 25s;
  animation-delay: -8s;
}

.header-content-pricing {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.hero-badge-pricing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 57, 42, 0.1);
  border: 1px solid rgba(232, 57, 42, 0.25);
  color: var(--tomato);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.pricing-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  animation: fadeUp 0.8s 0.35s ease both;
}

.pricing-title em {
  font-style: normal;
  color: var(--tomato);
  position: relative;
  display: inline-block;
}

.pricing-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  right: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='10' viewBox='0 0 200 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q25 1 50 5 Q75 9 100 5 Q125 1 150 5 Q175 9 200 5' stroke='%23C33F0E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
  background-size: 200px 10px;
  -webkit-mask: linear-gradient(to right, #000 100%, transparent 100%) no-repeat;
  mask: linear-gradient(to right, #000 100%, transparent 100%) no-repeat;
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  animation: revealLine 1.5s 1.2s ease-out forwards;
}

.pricing-card {
  background: var(--dark);
  border-radius: 32px;
  padding: 3.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 100px rgba(26, 11, 9, 0.3), 0 0 0 1px rgba(232, 57, 42, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: fadeUp 0.8s 0.6s ease both;
  color: white;
  text-align: center;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 57, 42, 0.15), transparent 70%);
  pointer-events: none;
}
/* Default (Mobile) styles: Stack one under the other */
.pricing-cards-wrapper {
  display: flex;
  flex-direction: column; 
  align-items: center; /* Centers the cards horizontally */
  gap: 24px;
}

/* Large screens (768px and wider): Place side-by-side */
@media (min-width: 768px) {
  .pricing-cards-wrapper {
    flex-direction: row; 
    justify-content: center; /* Centers the group of cards on the page */
  }
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 2rem;
  vertical-align: super;
  color: var(--tomato-light);
}

.price-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.features-list-pricing {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
}

.feature-item-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon-pricing {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232, 57, 42, 0.15);
  color: var(--tomato-light);
  flex-shrink: 0;
}

.btn-primary-pricing {
  background: var(--tomato);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 30px var(--tomato-glow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--tomato-glow);
}

.guarantee {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}