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

:root {
  --bg: #fafaf8;
  --ink: #111310;
  --ink2: #444840;
  --ink3: #8a8e87;
  --teal: #009e88;
  --teal-light: #e6f5f2;
  --teal-mid: #b3e0d8;
  --red: #c94535;
  --red-light: #fdf0ee;
  --red-mid: #f2c4be;
  --cream: #f2ede4;
  --border: #111310;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--teal);
}

/* HERO */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 7rem 5% 5rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-main {
  background: var(--teal);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 158, 136, 0.3);
  transition: background 0.2s, transform 0.2s;
}

.btn-main:hover {
  background: #007d6d;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--cream);
}

hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* TRANSFORM SECTION */
.transform-section {
  padding: 5rem 5%;
  max-width: 1080px;
  margin: 0 auto;
}

.section-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 3rem;
}

/* Columns */
.table-header-cols {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  margin-bottom: 0;
}

.col-header {
  padding: 0.7rem 1.6rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.col-header-problem {
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-bottom: none;
  color: var(--red);
  border-radius: 12px 12px 0 0;
}

.col-header-mid {
  background: var(--white);
}

.col-header-solution {
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-bottom: none;
  color: var(--teal);
  border-radius: 12px 12px 0 0;
}

.color-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* Rows */
.table-row {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: stretch;
}

.problem-box {
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-right: none;
  padding: 1.5rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.solution-box {
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-left: none;
  padding: 1.5rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.arrow-cell {
  background: var(--white);
  border-top: 0px solid var(--border);
  border-bottom: 0px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arrow-icon {
  width: 30px;
  height: 30px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.table-gap {
  height: 5px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
}

.gap-problem {
  background: var(--red-light);
  border-left: 1px solid var(--red-mid);
}

.gap-mid {
  background: var(--white);
}

.gap-solution {
  background: var(--teal-light);
  border-right: 1px solid var(--teal-mid);
}

.box-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.box-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.box-desc {
  font-size: 0.81rem;
  color: var(--ink2);
  line-height: 1.55;
}

.problem-box .box-title {
  color: #a0352a;
}

.solution-box .box-title {
  color: #006e5a;
}

.table-row:last-of-type .problem-box {
  border-radius: 0 0 0 12px;
}

.table-row:last-of-type .solution-box {
  border-radius: 0 0 12px 0;
}

/* HOW IT WORKS */
.how {
  background: var(--cream);
  padding: 5rem 5%;
}

.how-in {
  max-width: 860px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.section-heading em {
  font-style: normal;
  color: var(--teal);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--ink2);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  opacity: 0.35;
}

.step {
  text-align: center;
  padding: 0 0.3rem;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.step-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--ink2);
  line-height: 1.6;
}

/* PACKAGES */
.packages-section {
  padding: 5rem 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.tier-card.highlighted {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 10px 30px rgba(0, 158, 136, 0.1);
}

.tier-top {
  padding: 1.6rem 1.6rem 1.3rem;
}

.tier-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}

.tier-number {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 0.55rem;
}

.tier-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0.55rem;
}

.tier-desc {
  font-size: 0.8rem;
  color: var(--ink2);
  line-height: 1.6;
}

.tier-divider {
  height: 1px;
  background: var(--border);
  margin: 0 1.6rem;
}

.tier-body {
  padding: 1.2rem 1.6rem 1.6rem;
}

.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tier-list li {
  font-size: 0.82rem;
  color: var(--ink2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.tier-list li::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--teal-light) url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.2 5.5L8 1' stroke='%23009e88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/9px no-repeat;
  border: 1px solid var(--teal-mid);
}

/* PRICING */
.pricing-section {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 5%;
}

.pricing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pricing-section .section-heading {
  color: var(--white);
}

.pricing-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.8rem;
  text-align: left;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.8rem;
  transition: border-color 0.25s;
}

.pricing-card:hover {
  border-color: rgba(0, 158, 136, 0.4);
}

.pricing-type {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.pricing-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.4rem;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.pricing-row span:last-child {
  color: var(--teal);
  font-weight: 600;
}

/* CTA */
.cta {
  padding: 5.5rem 5%;
  text-align: center;
  background: var(--teal-light);
  border-top: 1px solid var(--teal-mid);
  border-bottom: 1px solid var(--teal-mid);
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ink);
}

.cta h2 em {
  font-style: normal;
  color: var(--teal);
}

.cta p {
  font-size: 0.97rem;
  color: var(--ink2);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  padding: 0.9rem 1.9rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
}

.fine-print {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--ink3);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.8rem 5%;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--ink3);
}

.footer-brand {
  font-weight: 700;
  color: var(--ink);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .07s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .21s; }
.delay-4 { transition-delay: .28s; }

/* RESPONSIVE */
@media(max-width: 700px) {
  .hero { padding: 5rem 5% 3.5rem; }
  
  .table-header-cols, 
  .table-row, 
  .table-gap {
    grid-template-columns: 1fr 34px 1fr;
  }
  
  .problem-box, 
  .solution-box {
    padding: 1.1rem 1rem;
  }
  
  .box-title { font-size: 0.83rem; }
  .box-desc { font-size: 0.76rem; }
  
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  
  .tier-grid, 
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
  }
}
