:root {
  --navy-deep: #0B1730;
  --navy-mid: #132545;
  --coral-pink: #E84167;
  --warm-coral: #F08A6A;
  --golden-glow: #F0B63F;
  --ink: #0B1730;
  --muted: #6d7890;
  --paper: #f7f9fd;
  --white: #ffffff;
  --accent-gradient: linear-gradient(135deg, var(--coral-pink) 0%, var(--coral-pink) 42%, var(--warm-coral) 74%, var(--golden-glow) 100%);
  --pink-glow: rgba(232, 65, 103, 0.24);
  --shadow: 0 24px 70px rgba(11, 23, 48, 0.24);
  --whatsapp-green: #25D366;
  --whatsapp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16.04 3.2c-7.03 0-12.75 5.63-12.75 12.56 0 2.22.6 4.38 1.73 6.28L3.2 28.8l6.95-1.8a12.9 12.9 0 0 0 5.89 1.45c7.03 0 12.76-5.63 12.76-12.56S23.07 3.2 16.04 3.2Zm0 22.98c-1.86 0-3.68-.5-5.26-1.44l-.38-.22-4.12 1.06 1.1-4-.25-.4a10.2 10.2 0 0 1-1.57-5.42c0-5.68 4.7-10.3 10.48-10.3 5.79 0 10.49 4.62 10.49 10.3 0 5.7-4.7 10.42-10.49 10.42Zm5.75-7.72c-.31-.16-1.85-.9-2.14-1-.29-.1-.5-.16-.71.16-.21.31-.82 1-.99 1.2-.18.21-.36.24-.67.08-.31-.16-1.31-.48-2.5-1.52-.92-.81-1.55-1.81-1.73-2.12-.18-.31-.02-.48.14-.64.14-.14.31-.36.47-.54.16-.18.21-.31.31-.52.1-.21.05-.39-.03-.55-.08-.16-.71-1.68-.97-2.31-.26-.62-.52-.54-.71-.55h-.61c-.21 0-.55.08-.84.39-.29.31-1.1 1.06-1.1 2.58s1.13 3 1.29 3.2c.16.21 2.23 3.34 5.4 4.68.75.32 1.34.51 1.8.65.76.24 1.45.21 2 .13.61-.09 1.85-.74 2.11-1.46.26-.72.26-1.34.18-1.46-.08-.13-.29-.21-.6-.37Z'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.floating-wa:focus-visible,
.mobile-sticky-cta:focus-visible {
  outline: 2px solid var(--golden-glow);
  outline-offset: 4px;
}

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

p,
li,
td {
  text-align: justify;
}

.site-header {
  position: relative;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 23, 48, 0.94), rgba(19, 37, 69, 0.9));
  box-shadow: 0 10px 34px rgba(11, 23, 48, 0.18);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 65, 103, 0), rgba(232, 65, 103, 0.7), rgba(240, 182, 63, 0));
  opacity: 0.72;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(13px, 1.75vw, 24px);
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links a {
  padding: 10px 0;
  border-radius: 999px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--coral-pink);
  transform: translateY(-1px);
}

.nav-links a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: 8px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: var(--whatsapp-green);
  font-size: 0;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.nav-links a:last-child::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  mask: var(--whatsapp-icon) center / contain no-repeat;
  -webkit-mask: var(--whatsapp-icon) center / contain no-repeat;
}

.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 23, 48, 0.92) 0%, rgba(11, 23, 48, 0.7) 42%, rgba(11, 23, 48, 0.16) 74%),
    linear-gradient(180deg, rgba(11, 23, 48, 0.5) 0%, rgba(11, 23, 48, 0) 35%, rgba(11, 23, 48, 0.5) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateX(20vw);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 72px;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--coral-pink);
  outline: none;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.48);
}

.breadcrumbs [aria-current="page"] {
  color: rgba(255, 255, 255, 0.72);
}

.blog-tabs-section {
  padding-bottom: 0;
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.blog-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(232, 65, 103, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-deep);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(11, 23, 48, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.blog-tabs a:hover,
.blog-tabs a:focus-visible,
.blog-tabs a[aria-current="page"] {
  transform: translateY(-2px);
  border-color: transparent;
  background: var(--accent-gradient);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-gradient);
}

.section-kicker {
  color: var(--coral-pink);
  text-align: center;
}

.section-dark .section-kicker {
  color: var(--coral-pink);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4.7vw, 4.15rem);
  line-height: 1;
}

.hero-copy {
  max-width: 820px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.78;
}

.section {
  padding: clamp(74px, 9vw, 116px) 0;
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 16%, rgba(232, 65, 103, 0.28), transparent 25%),
    radial-gradient(circle at 92% 76%, rgba(232, 65, 103, 0.14), transparent 30%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

.section-title {
  max-width: 930px;
  margin: 0 auto 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  line-height: 1.04;
  text-align: center;
}

.section-copy {
  max-width: 880px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.section-dark .section-copy,
.section-dark p,
.section-dark li,
.section-dark td {
  color: rgba(255, 255, 255, 0.78);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

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

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

.card,
.dark-card,
.plan-card,
.faq-item {
  position: relative;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card::before,
.dark-card::before,
.plan-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--coral-pink), rgba(232, 65, 103, 0.14));
  opacity: 0.78;
}

.card {
  padding: 26px;
  border: 1px solid rgba(19, 37, 69, 0.1);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(11, 23, 48, 0.1);
}

.dark-card,
.plan-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(19, 37, 69, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.card:hover,
.dark-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 65, 103, 0.46);
  box-shadow: 0 26px 74px rgba(232, 65, 103, 0.16);
}

.card h3,
.dark-card h3,
.plan-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p,
.dark-card p,
.plan-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card .button,
.plan-card .button {
  margin-top: 18px;
}

.dark-card {
  padding: 26px;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

.pillar-number,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-gradient);
  font-weight: 900;
}

.not-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.not-list li,
.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.not-list li::before,
.check-list li::before {
  position: absolute;
  left: 18px;
  top: 16px;
  font-weight: 900;
}

.not-list li::before {
  content: "X";
  color: var(--coral-pink);
}

.check-list li::before {
  content: "✓";
  color: var(--coral-pink);
}

.quote-box {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 28px;
  border-left: 4px solid var(--coral-pink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.75;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.basic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.plan-card {
  position: relative;
  padding: 30px 24px;
  color: var(--white);
}

.plan-card.featured {
  border-color: rgba(232, 65, 103, 0.56);
  transform: translateY(-8px);
}

.price {
  margin: 14px 0 8px;
  font-size: 1.65rem;
  font-weight: 900;
}

.installments {
  color: var(--coral-pink);
  font-weight: 800;
}

.plan-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.comparison {
  width: 100%;
  margin-top: 34px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison th,
.comparison td {
  padding: 18px;
  border-bottom: 1px solid rgba(19, 37, 69, 0.08);
}

.comparison th {
  color: var(--white);
  background: var(--navy-mid);
  text-align: left;
}

.comparison td:not(:first-child) {
  text-align: center;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--white);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--coral-pink);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.result-placeholder {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 23, 48, 0.06), rgba(11, 23, 48, 0.9)),
    linear-gradient(135deg, rgba(232, 65, 103, 0.3), rgba(232, 65, 103, 0.12)),
    var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stats-bar span {
  padding: 22px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.stats-bar strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.stats-bar small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.article-layout {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  box-shadow: 0 0 18px rgba(232, 65, 103, 0.34);
}

.article-toc {
  margin: 0 0 34px;
  padding: 20px;
  border: 1px solid rgba(19, 37, 69, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 23, 48, 0.08);
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-deep);
}

.article-toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--coral-pink);
  outline: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.article-meta span,
.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-content {
  padding: clamp(58px, 8vw, 96px) 0;
  background: var(--paper);
}

.article-content h2,
.article-content h3 {
  color: var(--ink);
}

.article-content h2 {
  margin: 48px 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.article-content h3 {
  margin: 30px 0 12px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.86;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content strong {
  color: var(--ink);
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding: 15px 18px 15px 44px;
  border: 1px solid rgba(19, 37, 69, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 23, 48, 0.06);
}

.article-list li::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 18px;
  color: var(--coral-pink);
  font-weight: 900;
}

.highlight-box {
  margin: 34px 0;
  padding: 26px;
  border-left: 4px solid var(--coral-pink);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 16%, rgba(232, 65, 103, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  box-shadow: var(--shadow);
}

.highlight-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.article-faq {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.article-faq .faq-item {
  background: var(--navy-mid);
}

.article-cta {
  margin-top: 52px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 65, 103, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  box-shadow: var(--shadow);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.article-cta .profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.article-card-link {
  display: block;
  height: 100%;
}

.article-card-link:hover .card,
.article-card-link:hover .dark-card {
  transform: translateY(-4px);
  border-color: rgba(232, 65, 103, 0.46);
  box-shadow: 0 26px 74px rgba(232, 65, 103, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 65, 103, 0.28);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--whatsapp-green);
  font-size: 0;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before {
  content: "";
  width: 28px;
  height: 28px;
  background: currentColor;
  mask: var(--whatsapp-icon) center / contain no-repeat;
  -webkit-mask: var(--whatsapp-icon) center / contain no-repeat;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(37, 211, 102, 0.44);
}

.mobile-sticky-cta {
  display: none;
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  background: rgba(11, 23, 48, 0.86);
  box-shadow: 0 18px 44px rgba(11, 23, 48, 0.28);
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(11, 23, 48, 0.38);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.footer {
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #071021;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer strong,
.footer a {
  color: var(--white);
}

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .plans-grid,
  .basic-grid,
  .faq-grid,
  .results-gallery,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  p,
  li,
  td {
    text-align: left;
  }

  .site-header {
    padding: 18px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  .brand-logo {
    width: 48px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 40;
    width: min(318px, calc(100vw - 36px));
    padding: 10px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(11, 23, 48, 0.18);
  }

  .nav-links a {
    padding: 13px 14px;
    text-align: left;
  }

  .nav-links a:last-child {
    width: 46px;
    height: 46px;
    margin-left: 0;
    padding: 0;
    border: 0;
    align-self: center;
    background: var(--whatsapp-green);
    color: var(--white);
    font-size: 0;
    text-align: center;
  }

  .nav-links a:last-child::before {
    content: "";
    width: 22px;
    height: 22px;
    background: currentColor;
    mask: var(--whatsapp-icon) center / contain no-repeat;
    -webkit-mask: var(--whatsapp-icon) center / contain no-repeat;
  }

  .page-hero {
    min-height: 94svh;
  }

  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(11, 23, 48, 0.46) 0%, rgba(11, 23, 48, 0.86) 62%, rgba(11, 23, 48, 0.95) 100%),
      linear-gradient(90deg, rgba(11, 23, 48, 0.78) 0%, rgba(11, 23, 48, 0.2) 100%);
  }

  .hero-image {
    top: 0;
    bottom: auto;
    left: -88vw;
    width: 245vw;
    min-width: 0;
    height: auto;
    opacity: 1;
    object-position: center center;
    transform: none;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    min-height: 98svh;
    padding: 250px 0 48px;
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 3.4rem);
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--accent-gradient);
    box-shadow: 0 18px 44px rgba(232, 65, 103, 0.32);
    font-weight: 900;
  }

  .mobile-sticky-cta ~ .floating-whatsapp {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
  }
}
