:root {
  --bg: #fffdf7;
  --bg-2: #f6f1e7;
  --panel: #ffffff;
  --panel-2: #fbf7ef;
  --text: #151515;
  --muted: #64635f;
  --line: rgba(21, 21, 21, 0.12);
  --red: #d00000;
  --red-soft: rgba(208, 0, 0, 0.14);
  --blue: #243bff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 24, 16, 0.12);
  --radius: 10px;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Manrope, Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.section {
  padding: 108px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px var(--red-soft);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head h2,
.method-copy h2,
.fit-card h2,
.final-box h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 0.98;
  font-weight: 850;
}

.section-head p,
.method-copy p,
.final-box p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #a80000, #ee2222);
  box-shadow: 0 14px 34px rgba(208, 0, 0, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(208, 0, 0, 0.28);
}

.wa-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #a80000;
  background: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.btn-secondary:hover {
  border-color: rgba(21, 21, 21, 0.24);
  background: #ffffff;
}

.btn-large {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.nav.is-scrolled {
  padding: 7px 0;
  background: rgba(255, 253, 247, 0.97);
  box-shadow: 0 14px 42px rgba(28, 24, 16, 0.08);
}

.nav-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo-img {
  width: 178px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(21, 21, 21, 0.66);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.18s ease;
}

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

.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  padding: 10px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 253, 247, 0.98);
  transform: translateY(-100%);
  transition: transform 0.32s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: transparent;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(38px, 12vw, 72px);
  line-height: 0.95;
  font-weight: 850;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  display: grid;
  gap: 2px;
  min-width: 260px;
  padding: 13px 16px;
  border: 1px solid rgba(208, 0, 0, 0.32);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-whatsapp span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.sticky-whatsapp strong {
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 18%, rgba(208, 0, 0, 0.11), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(36, 59, 255, 0.055), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f7f2e8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(208, 0, 0, 0.28) 1px, transparent 1.8px);
  background-size: 26px 26px;
  opacity: 0.07;
  mask-image: radial-gradient(circle at 28% 24%, black 0%, transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 154px);
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1;
  font-weight: 830;
  text-wrap: balance;
}

.hero-accent {
  position: relative;
  display: inline-block;
  color: var(--text);
}

.hero-accent::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: 0.04em;
  z-index: -1;
  height: 0.22em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(208, 0, 0, 0.24), rgba(36, 59, 255, 0.2));
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust span,
.final-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #383833;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 8%, rgba(208, 0, 0, 0.11), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(208, 0, 0, 0.045), transparent 32%),
    radial-gradient(circle at 88% 88%, rgba(36, 59, 255, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 231, 0.86));
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 24px;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.hero-calm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 46%);
  pointer-events: none;
}

.hero-calm-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  border: 1px solid rgba(208, 0, 0, 0.18);
}

.hero-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(21, 21, 21, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(208, 0, 0, 0.12);
}

.hero-card-main {
  position: relative;
  z-index: 3;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
}

.hero-card-main span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.hero-card-main strong {
  display: block;
  font-family: var(--font-heading);
  max-width: 420px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.hero-card-main p {
  max-width: 390px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.hero-plan-list {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.hero-plan-list div {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-plan-list span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.hero-plan-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.2;
}

.hero-plan-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.hero-message-preview {
  position: relative;
  z-index: 3;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #a80000, #ee2222);
  box-shadow: 0 18px 40px rgba(208, 0, 0, 0.18);
}

.hero-message-preview small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-message-preview strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.1;
}

.problem,
.services,
.faq {
  background: #fffdf7;
}

.method,
.services,
.pricing,
.faq {
  position: relative;
  overflow: hidden;
}

.method > .container,
.services > .container,
.pricing > .container,
.faq > .container {
  position: relative;
  z-index: 2;
}

.cards-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.insight-card,
.service-card,
.method-step,
.pricing-card,
.fit-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
}

.insight-card,
.service-card {
  min-height: 250px;
  padding: 24px;
}

.insight-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

.insight-card h3,
.service-card h3,
.method-step h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 820;
}

.insight-card p,
.service-card p,
.method-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.method {
  background:
    radial-gradient(circle at 80% 20%, rgba(208, 0, 0, 0.1), transparent 25%),
    #f6f1e7;
}

.method-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 120px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--red);
  font-weight: 850;
}

.method-steps {
  display: grid;
  gap: 16px;
}

.method-step {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 239, 0.9)),
    #ffffff;
  box-shadow:
    0 20px 50px rgba(28, 24, 16, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.method-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #031211;
  background: var(--red);
  font-weight: 850;
}

.pricing {
  background: #f6f1e7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  box-shadow:
    0 22px 62px rgba(28, 24, 16, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pricing-card.featured {
  border-color: rgba(208, 0, 0, 0.58);
  background:
    radial-gradient(circle at 24% 0%, rgba(208, 0, 0, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbf8);
  transform: translateY(-10px);
}

.popular-label {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #031211;
  background: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.pricing-top span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-top strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
}

.pricing-top p {
  margin: 8px 0 24px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-card ul,
.fit-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.pricing-card li,
.fit-card li {
  position: relative;
  padding-left: 22px;
  color: #363632;
  line-height: 1.55;
  font-weight: 650;
}

.pricing-card li::before,
.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.fit {
  background: var(--bg);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fit-card {
  padding: 32px;
}

.fit-card h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.fit-card.muted {
  opacity: 0.86;
}

.fit-card.muted li::before {
  background: var(--red);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 780;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding: 112px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(208, 0, 0, 0.14), transparent 34%),
    #fffdf7;
}

.final-box {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  border: 1px solid rgba(208, 0, 0, 0.24);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
  box-shadow: var(--shadow);
}

.final-box h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.socials-feature {
  background:
    radial-gradient(circle at 15% 10%, rgba(208, 0, 0, 0.12), transparent 26%),
    #fffdf7;
}

.socials-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.socials-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
}

.socials-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
  box-shadow: 0 18px 54px rgba(28, 24, 16, 0.1);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.social-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(28, 24, 16, 0.16);
}

.social-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.95;
}

.social-feature-card > * {
  position: relative;
  z-index: 1;
}

.platform-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.platform-head > span:last-child {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
}

.platform-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.instagram-icon {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 52%, #962fbf 76%, #4f5bd5 100%);
}

.tiktok-icon {
  background: #111111;
  box-shadow: inset 3px 0 0 #25f4ee, inset -3px 0 0 #fe2c55;
}

.facebook-icon {
  background: #1877f2;
}

.instagram-card {
  border-color: rgba(214, 41, 118, 0.24);
  background:
    linear-gradient(135deg, rgba(254, 218, 117, 0.24), rgba(250, 126, 30, 0.08) 34%, rgba(214, 41, 118, 0.11) 66%, rgba(79, 91, 213, 0.13)),
    #fff8fb;
  box-shadow: 0 20px 60px rgba(214, 41, 118, 0.12);
}

.instagram-card::before {
  background:
    radial-gradient(circle at 14% 14%, rgba(254, 218, 117, 0.5), transparent 30%),
    radial-gradient(circle at 92% 2%, rgba(150, 47, 191, 0.2), transparent 35%),
    radial-gradient(circle at 88% 88%, rgba(79, 91, 213, 0.12), transparent 34%);
}

.instagram-card .platform-head > span:last-child {
  color: #d62976;
}

.instagram-card:hover {
  border-color: rgba(214, 41, 118, 0.42);
  box-shadow: 0 30px 80px rgba(214, 41, 118, 0.2);
}

.tiktok-card {
  border-color: rgba(17, 17, 17, 0.24);
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.14), rgba(255, 255, 255, 0.84) 42%, rgba(254, 44, 85, 0.12)),
    #f9fffe;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.1);
}

.tiktok-card::before {
  background:
    radial-gradient(circle at 15% 14%, rgba(37, 244, 238, 0.28), transparent 32%),
    radial-gradient(circle at 93% 6%, rgba(254, 44, 85, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(37, 244, 238, 0.18) 0, transparent 24%, transparent 76%, rgba(254, 44, 85, 0.14) 100%);
}

.tiktok-card .platform-head > span:last-child {
  color: #111111;
}

.tiktok-card:hover {
  border-color: rgba(17, 17, 17, 0.38);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.18);
}

.facebook-card {
  border-color: rgba(24, 119, 242, 0.24);
  background:
    linear-gradient(135deg, rgba(24, 119, 242, 0.18), rgba(255, 255, 255, 0.86) 46%, rgba(24, 119, 242, 0.1)),
    #f5f9ff;
  box-shadow: 0 20px 60px rgba(24, 119, 242, 0.12);
}

.facebook-card::before {
  background:
    radial-gradient(circle at 14% 14%, rgba(24, 119, 242, 0.28), transparent 32%),
    radial-gradient(circle at 94% 4%, rgba(24, 119, 242, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(24, 119, 242, 0.08), transparent 62%);
}

.facebook-card .platform-head > span:last-child {
  color: #1877f2;
}

.facebook-card:hover {
  border-color: rgba(24, 119, 242, 0.42);
  box-shadow: 0 30px 80px rgba(24, 119, 242, 0.2);
}

.social-feature-card strong {
  display: block;
  margin: 22px 0 10px;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.1;
}

.social-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  padding: 52px 0 0;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
  background:
    radial-gradient(circle at 18% 0%, rgba(208, 0, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #f6f1e7 0%, #eee6d7 100%);
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr;
  gap: 48px;
}

.footer-logo {
  width: 220px;
  height: auto;
  display: block;
  background: transparent;
  border: 0;
}

.footer p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 650;
}

.footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(21, 21, 21, 0.52);
  font-size: 13px;
}

/* ── Pricing enhancements ─────────────────────────────── */
.included-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(208, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(208, 0, 0, 0.06);
}

.included-items {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.included-items span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(208, 0, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
  color: var(--text);
}

.three-month-badge {
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(208, 0, 0, 0.09);
  border: 1px solid rgba(208, 0, 0, 0.2);
  color: #006b5e;
  font-size: 13px;
  font-weight: 750;
}

/* ── Add-ons ──────────────────────────────────────────── */
.addons {
  background: var(--bg-2);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.addon-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.1);
}

.addon-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 820;
}

.addon-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.addon-price {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.addon-price span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.addon-price strong {
  color: var(--text);
  font-weight: 800;
}

.addon-price em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.addon-price .text-link {
  margin-top: 0;
}

/* ── Payment strip ────────────────────────────────────── */
.payment-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.1);
}

.payment-methods,
.payment-policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-badges span {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.payment-policy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.payment-policy li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.payment-policy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .hero-grid,
  .method-grid,
  .fit-grid,
  .socials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .cards-grid,
  .social-card-grid,
  .service-grid,
  .pricing-grid,
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-strip {
    grid-template-columns: 1fr;
  }

  .method-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .brand-logo-img {
    width: 152px;
    height: 52px;
  }

  .cards-grid,
  .social-card-grid,
  .service-grid,
  .pricing-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .included-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: 0;
    text-align: center;
  }

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

@media (prefers-reduced-motion: reduce) {
  .social-feature-card,
  .btn {
    transition: none;
  }
}
