/* Nathalia Prado site styles (static) */

:root {
  --pink: #e94876;
  --pink-hover: rgb(255, 87, 127);
  --pink-soft: rgb(255, 141, 162);
  --navy: #1c2d49;
  --blue-link: #285eb4;
  --cream: #fcfaf7;
  --yellow-plan: #fff5d9;
  --purple: rgb(82, 70, 103);
  --white: #ffffff;
  --wa-green: rgb(37, 211, 102);

  --container: 1200px;
  --radius-lg: 18px;
  --shadow: 0 20px 60px rgba(28, 45, 73, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Source Sans Pro", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--cream);
}

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

a {
  color: var(--blue-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 34px;
  border-radius: 150px;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  user-select: none;
  will-change: transform;
  box-shadow: 0 14px 28px rgba(28, 45, 73, 0.16), 0 8px 24px rgba(233, 72, 118, 0.22);
}

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

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(28, 45, 73, 0.18), 0 10px 28px rgba(233, 72, 118, 0.32);
}

.btn-primary:hover {
  background: var(--pink-hover);
  box-shadow: 0 18px 34px rgba(28, 45, 73, 0.2), 0 12px 32px rgba(233, 72, 118, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 14px 30px rgba(28, 45, 73, 0.12);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 72px 0;
}

.section-title-kicker {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--pink);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.h1,
h1,
.h2,
h2,
.h3,
h3 {
  font-family: Anton, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
}

.lead {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin: 0;
}

.divider {
  width: 140px;
  height: 3px;
  background: var(--pink);
  border-radius: 3px;
  margin: 18px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(28, 45, 73, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand img {
  width: 140px;
  height: auto;
}

.brand-crn {
  color: var(--navy);
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--navy);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-nav a:hover {
  background: rgba(233, 72, 118, 0.1);
  color: var(--pink);
  text-decoration: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 45, 73, 0.18);
  background: var(--white);
  color: var(--navy);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(233, 72, 118, 0.55);
  text-decoration: none;
}

.hamburger {
  width: 54px;
  height: 44px;
  border-radius: 999px;
  background: var(--pink-hover);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger-lines {
  width: 22px;
  height: 14px;
  position: relative;
}

.hamburger-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.hamburger-lines span:nth-child(1) {
  top: 0;
}
.hamburger-lines span:nth-child(2) {
  top: 6px;
}
.hamburger-lines span:nth-child(3) {
  bottom: 0;
}

.mobile-nav {
  display: none;
  padding: 0 0 16px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--navy);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  border-top: 1px solid rgba(28, 45, 73, 0.08);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  padding: clamp(72px, 10vh, 120px) 0 clamp(112px, 15vh, 160px);
  background: #fff3f6;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -54px;
  z-index: 1;
  height: clamp(120px, 14vw, 190px);
  background: #ee8da1;
  clip-path: polygon(
    0 40%,
    8% 34%,
    17% 31%,
    27% 35%,
    38% 47%,
    49% 52%,
    60% 43%,
    72% 30%,
    84% 28%,
    94% 34%,
    100% 40%,
    100% 70%,
    90% 75%,
    78% 76%,
    66% 68%,
    55% 58%,
    44% 62%,
    32% 75%,
    19% 82%,
    8% 76%,
    0 68%
  );
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 -14px 28px rgba(233, 72, 118, 0.12));
}

.hero-bg,
.hero-overlay,
.hero-person {
  position: absolute;
  pointer-events: none;
}

.hero-bg {
  inset: -7%;
  z-index: -3;
  background-image: url("Planos/assets/fundo-hero.png");
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.08);
  transform: translate3d(0, var(--hero-bg-shift, 0px), 0) scale(1.08);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.hero-overlay {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 247, 249, 0.94) 0%, rgba(255, 247, 249, 0.76) 44%, rgba(255, 179, 195, 0.16) 72%, rgba(255, 247, 249, 0.2) 100%),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.74), transparent 28%),
    linear-gradient(135deg, rgba(255, 141, 162, 0.28), rgba(233, 72, 118, 0.12));
}

.hero-person {
  z-index: 2;
  right: clamp(18px, 5vw, 94px);
  bottom: 0;
  width: min(44vw, 560px);
  max-height: 92%;
  object-fit: contain;
  object-position: bottom right;
  clip-path: inset(8% 0 0 0);
  filter: drop-shadow(0 30px 48px rgba(28, 45, 73, 0.18));
  transform: translate3d(0, 0, 0);
  animation: heroPersonIntro 0.9s ease-out both;
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 50px;
  align-items: center;
  animation: heroTextIntro 0.75s ease-out both;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.02;
  color: var(--navy);
  max-width: 650px;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero h2,
.hero-subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: rgba(28, 45, 73, 0.92);
  margin-top: 14px;
}

.hero p {
  margin-top: 10px;
  color: rgba(28, 45, 73, 0.92);
  text-align: justify;
}

.hero-cta {
  margin-top: 18px;
  font-weight: 600;
}

.hero-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes heroTextIntro {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes heroPersonIntro {
  from {
    opacity: 0;
    transform: translate3d(26px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transition: none;
    transform: scale(1.08);
  }

  .hero-grid,
  .hero-person {
    animation: none;
  }
}

/* About preview */
.about-preview {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://nathaliaprado.com/wp-content/uploads/2025/07/ChatGPT-Image-7-de-jul.-de-2025-08_19_41.png");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.about-preview .container {
  position: relative;
  z-index: 1;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.card-photo {
  justify-self: center;
  width: min(340px, 100%);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #FFD0DC;
  box-shadow: 0 18px 44px rgba(28, 45, 73, 0.1);
  background: #fff;
  transform: translate3d(0, var(--about-photo-shift, 0px), 0) scale(var(--about-photo-scale, 1));
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.card-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .card-photo {
    transform: none;
    transition: none;
  }
}

.about-preview h2,
.about-preview-heading {
  font-size: 42px;
  color: var(--navy);
}

.about-preview-heading {
  font-family: Anton, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

.about-preview p:not(.section-title-kicker) {
  margin-top: 14px;
  text-align: justify;
}

.about-preview .btn {
  margin-top: 18px;
}

/* About page */
.about-page {
  background: var(--cream);
}

.about-hero h1 {
  max-width: 620px;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-hero h1 span {
  display: inline-block;
  margin-top: 8px;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(28px, 3.9vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.about-story {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 208, 220, 0.42), transparent 30%),
    linear-gradient(180deg, #fff9fb 0%, #ffffff 100%);
  pointer-events: none;
}

.about-story .container {
  position: relative;
  z-index: 1;
}

.about-story h2,
.about-formation h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.04;
  color: var(--navy);
}

.about-split-title {
  max-width: 980px;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
  color: #2b2b2b;
}

.about-split-title strong {
  display: block;
  color: #2b2b2b;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(28px, 2.65vw, 36px);
  font-weight: 800;
  line-height: 1.04;
  white-space: nowrap;
}

.about-split-title span {
  display: block;
  margin-top: 6px;
  color: #333333;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(26px, 2.55vw, 34px);
  font-weight: 300;
  line-height: 1.18;
  text-transform: none;
  white-space: nowrap;
}

.about-story p:not(.section-title-kicker),
.about-formation p,
.about-list {
  color: rgba(28, 45, 73, 0.9);
}

.about-story p:not(.section-title-kicker) {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}

.about-pink-divider {
  position: relative;
  height: 92px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 224, 213, 0.42) 0 9%, transparent 9% 100%),
    #fffaf7;
}

.about-pink-divider::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 14px;
  height: 54px;
  background: linear-gradient(90deg, #ff7f9b 0%, #ff8aa5 48%, #ff7896 100%);
  transform: rotate(-2deg);
  transform-origin: center;
  box-shadow: 0 10px 26px rgba(220, 30, 90, 0.08);
}

.about-formation {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(247, 224, 213, 0.72) 0 90px, transparent 92px),
    radial-gradient(circle at -8% 80%, rgba(247, 224, 213, 0.66) 0 220px, transparent 222px),
    linear-gradient(145deg, rgba(250, 228, 218, 0.22) 0 1px, transparent 1px),
    linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
  background-size: auto, auto, 28px 28px, auto;
}

.about-formation::before,
.about-formation::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.55;
}

.about-formation::before {
  left: -8%;
  top: 18%;
  width: 52vw;
  height: 38vw;
  border: 3px solid rgba(247, 224, 213, 0.72);
  border-color: rgba(247, 224, 213, 0.72) transparent transparent rgba(247, 224, 213, 0.72);
  transform: rotate(21deg);
}

.about-formation::after {
  right: -8%;
  bottom: 12%;
  width: 46vw;
  height: 22vw;
  border: 4px solid rgba(248, 211, 80, 0.42);
  border-color: rgba(248, 211, 80, 0.42) transparent transparent rgba(248, 211, 80, 0.42);
  transform: rotate(-16deg);
}

.about-formation .container {
  position: relative;
  z-index: 1;
}

.about-formation .card-photo {
  width: min(430px, 100%);
}

.about-formation-title strong {
  color: #2b2b2b;
}

.about-formation-title span {
  color: #333333;
}

@media (max-width: 720px) {
  .about-split-title strong,
  .about-split-title span {
    white-space: normal;
  }
}

.about-formation p:not(.section-title-kicker) {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}

.formation-highlights {
  margin: 24px 0 0;
  display: grid;
  gap: 22px;
}

.formation-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.25;
}

.formation-checklist li {
  position: relative;
  padding-left: 32px;
}

.formation-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #ff5f88;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.formation-bars {
  display: grid;
  gap: 20px;
}

.formation-bar span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.formation-bar-track {
  height: 12px;
  overflow: hidden;
  background: rgba(255, 208, 220, 0.42);
  box-shadow: inset 0 0 0 1px rgba(220, 30, 90, 0.08);
}

.formation-bar-track i {
  display: block;
  width: 0;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0 12px, transparent 12px 24px),
    linear-gradient(90deg, #f14b7c 0%, #ec3f74 100%);
  transition: width 4s cubic-bezier(0.22, 1, 0.36, 1);
}

.formation-highlights.is-visible .formation-bar-track i {
  width: var(--bar-target);
}

.about-final-cta {
  position: relative;
  overflow: hidden;
  background: #ec879c;
  padding: 52px 0;
}

.about-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.95) 58.15% 100%);
  pointer-events: none;
}

.about-final-cta::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12));
  transform: rotate(-6deg);
  pointer-events: none;
}

.about-final-cta .container {
  position: relative;
  z-index: 1;
}

.about-final-cta .cta-card {
  position: relative;
  min-height: 390px;
  max-width: 1180px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(28, 45, 73, 0.18);
}

.about-final-cta .cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 132, 157, 0.76) 0 56%, transparent 56.15% 100%);
  pointer-events: none;
  z-index: 0;
}

.about-final-cta .cta-left {
  background: transparent;
  padding: 56px 76px;
  clip-path: none;
}

.about-final-cta .cta-left h2 {
  max-width: 500px;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.32;
  color: #2f3236;
  text-transform: none;
}

.about-final-cta .cta-left h2 span {
  display: block;
  font-family: inherit;
}

.about-final-cta .cta-left h2 strong {
  display: inline;
  max-width: none;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: 0;
}

.about-final-cta .cta-left .btn {
  margin-top: 74px;
}

.about-final-cta .cta-right {
  align-items: flex-end;
  padding: 28px 70px 0 0;
  background: transparent;
}

.about-final-cta .cta-right img {
  width: min(300px, 100%);
  max-height: 365px;
  object-fit: contain;
}

.about-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.about-list li {
  position: relative;
  padding-left: 28px;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(233, 72, 118, 0.12);
}

.about-skills {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.about-skill p {
  color: var(--navy);
}

.about-skill > div {
  height: 10px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(28, 45, 73, 0.12);
}

.about-skill span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--pink-hover));
}

.about-formation .btn {
  margin-top: 24px;
}

/* Counters */
.counters {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  color: var(--navy);
  padding: 58px 0;
}

.counters::before,
.counters::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.32;
}

.counters::before {
  width: 360px;
  height: 360px;
  top: -210px;
  left: 38%;
  border: 3px solid rgba(255, 214, 72, 0.5);
  border-radius: 50%;
}

.counters::after {
  width: 420px;
  height: 420px;
  top: -260px;
  right: 16%;
  border: 3px solid rgba(233, 72, 118, 0.22);
  border-radius: 50%;
}

.counters .container {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
}

.counter-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-height: 280px;
  padding: 94px clamp(34px, 6vw, 96px);
  isolation: isolate;
}

.counter-grid::before {
  content: "";
  position: absolute;
  inset: 10px -6vw;
  z-index: -1;
  background: linear-gradient(180deg, #f18aa0 0%, #ea5a7e 100%);
  border-radius: 49% 51% 48% 52% / 14% 11% 16% 13%;
  box-shadow: 0 24px 60px rgba(233, 72, 118, 0.22);
}

.counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.counter .value {
  order: 1;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(64px, 6vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

.counter .label {
  order: 2;
  margin-top: 22px;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.3;
  color: rgba(28, 45, 73, 0.92);
}

/* Plans */
.plans-page {
  background: var(--cream);
}

.plans-page-hero {
  padding: 84px 0 52px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 208, 220, 0.5), transparent 30%),
    linear-gradient(180deg, #fff9fb 0%, var(--cream) 100%);
}

.plans-page-hero h1 {
  max-width: 880px;
  margin: 6px auto 0;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.plans-page-hero p:not(.section-title-kicker) {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.plans-page-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.plans-page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(233, 72, 118, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--pink);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(156, 76, 99, 0.09);
}

.plans-page-links a:hover {
  background: #fff0f4;
  text-decoration: none;
}

/* N2 Squad page */
.n2-page {
  background: var(--cream);
}

.n2-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: stretch;
  padding: clamp(70px, 9vh, 110px) 0 0;
  isolation: isolate;
}

.n2-hero-bg,
.n2-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.n2-hero-bg {
  z-index: -3;
  background-image: url("Planos/assets/heron2.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04);
}

.n2-hero--site-photo .n2-hero-bg {
  background-image: url("Planos/assets/fundo-hero.png");
  filter: blur(2px) saturate(1.08);
  transform: scale(1.08);
}

.n2-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 247, 249, 0.93) 0%, rgba(255, 247, 249, 0.64) 38%, rgba(255, 247, 249, 0.18) 66%, rgba(255, 247, 249, 0.04) 100%),
    radial-gradient(circle at 14% 18%, rgba(255, 208, 220, 0.3), transparent 30%);
}

.n2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.78fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  min-height: calc(100vh - 74px - clamp(70px, 9vh, 110px));
}

.n2-hero-copy {
  max-width: 690px;
  align-self: center;
  padding-bottom: clamp(42px, 7vh, 86px);
}

.n2-hero h1 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  color: var(--navy);
  letter-spacing: 0.01em;
  max-width: 720px;
}

.n2-hero--start h1 {
  max-width: 560px;
}

.n2-hero-promise {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(233, 72, 118, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 38px rgba(156, 76, 99, 0.13);
  backdrop-filter: blur(8px);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.n2-hero-promise span,
.n2-hero-promise strong {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  text-align: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.52);
}

.n2-hero-promise strong {
  color: #fff;
  background: linear-gradient(135deg, #f05a8a, var(--pink));
  font-weight: 900;
}

.n2-hero-lead {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(28, 45, 73, 0.72);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.48;
}

.n2-hero-copy .btn {
  margin-top: 28px;
}

.n2-meaning-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #fff9fb 0%, #ffffff 100%);
}

.n2-meaning {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.n2-meaning article,
.n2-belief-card,
.n2-profile-card,
.n2-final-card {
  border: 1px solid rgba(255, 208, 220, 0.95);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(156, 76, 99, 0.11);
}

.n2-meaning article {
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.n2-meaning h2 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--pink);
}

.jornada-phase-desc,
.jornada-side-text {
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 2px 10px rgba(28, 45, 73, 0.45);
}

.n2-meaning p {
  margin: 8px 0 0;
  color: rgba(28, 45, 73, 0.88);
  line-height: 1.5;
}

.n2-hero-visual {
  align-self: end;
  justify-self: center;
  width: min(500px, 100%);
  filter: drop-shadow(0 30px 48px rgba(28, 45, 73, 0.18));
}

.n2-hero-visual img {
  width: 100%;
  max-height: calc(100vh - 74px - clamp(70px, 9vh, 110px));
  object-fit: contain;
  object-position: bottom center;
}

.n2-process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(233, 72, 118, 0.18), transparent 24%),
    radial-gradient(circle at 7% 92%, rgba(255, 208, 220, 0.2), transparent 28%),
    linear-gradient(135deg, #171922 0%, #1d1720 56%, #2a1620 100%);
  color: #fff;
  padding: 68px 0;
}

.n2-process::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 208, 220, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.n2-process .container {
  position: relative;
  z-index: 1;
}

.n2-process-title {
  max-width: 850px;
  margin-bottom: 24px;
}

.n2-process-value {
  width: min(100%, 720px);
  margin: 0 auto 18px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 208, 220, 0.3);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(233, 72, 118, 0.08)),
    rgba(15, 17, 25, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.n2-process-value span,
.n2-process-value strong,
.n2-process-value em {
  display: block;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.n2-process-value span {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
}

.n2-process-value strong {
  margin-top: 4px;
  color: #ffd0dc;
  font-size: clamp(22px, 3vw, 34px);
}

.n2-process-value em {
  margin-top: 2px;
  color: var(--pink);
  font-size: clamp(30px, 4.5vw, 52px);
}

.n2-process-title .section-title-kicker {
  color: #ffd0dc;
}

.n2-process-title h2 {
  color: #fff;
}

.n2-process-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.n2-process-flow {
  display: grid;
  gap: 16px;
}

.n2-process-group {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 28px);
  align-items: start;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 208, 220, 0.14);
}

.n2-process-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.n2-process-heading {
  position: relative;
  display: grid;
  gap: 4px;
  padding-top: 4px;
}

.n2-process-heading > span:not(.n2-process-sticker),
.n2-process-heading > strong {
  display: block;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.n2-process-heading > span:not(.n2-process-sticker) {
  color: rgba(255, 255, 255, 0.96);
}

.n2-process-heading > strong {
  color: var(--pink);
}

.n2-process-sticker {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 208, 220, 0.4);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  background:
    linear-gradient(145deg, rgba(255, 208, 220, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.n2-process-sticker svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #ff4f87;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n2-process-image {
  width: min(128px, 78%);
  max-height: 118px;
  object-fit: contain;
  margin-top: 12px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
}

.n2-process-list {
  display: grid;
  gap: 10px;
}

.n2-process-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(233, 72, 118, 0.38);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 208, 220, 0.025)),
    rgba(16, 18, 27, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(10px);
}

.n2-process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffd0dc, var(--pink));
  opacity: 0.88;
}

.n2-process-card--wide {
  padding-bottom: 16px;
}

.n2-process-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 72, 118, 0.11);
  color: #ff4f87;
  box-shadow: inset 0 0 0 1px rgba(233, 72, 118, 0.24);
}

.n2-process-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n2-process-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.n2-process-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14.5px;
  line-height: 1.42;
}

.n2-process-card .n2-process-including {
  margin-top: 10px;
  color: #ffd0dc;
  font-weight: 800;
}

.n2-process-card ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.n2-process-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.38;
}

.n2-process-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(233, 72, 118, 0.18);
}

.n2-beliefs {
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 72, 118, 0.08), transparent 30%),
    linear-gradient(180deg, #fff9fb 0%, #ffffff 100%);
}

.n2-section-title {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.n2-section-title h2 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--navy);
  letter-spacing: 0;
}

.n2-process .n2-section-title h2 {
  color: #fff;
}

.n2-belief-grid,
.n2-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.n2-duo-grid {
  max-width: 920px;
  margin: 0 auto;
}

.n2-belief-card {
  border-radius: 22px;
  padding: 30px;
}

.n2-belief-card h3,
.n2-profile-name {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0;
}

.n2-belief-card--yes h3 {
  color: var(--pink);
}

.n2-belief-card ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.n2-belief-card li {
  position: relative;
  padding-left: 30px;
  color: rgba(28, 45, 73, 0.9);
  font-size: 17px;
  line-height: 1.45;
}

.n2-belief-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.n2-belief-card--yes li::before {
  content: "✓";
  color: #fff;
  background: var(--pink);
}

.n2-belief-card--no li::before {
  content: "×";
  color: var(--pink);
  background: #fff0f4;
}

.n2-extra-deliverables {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(233, 72, 118, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
}

.n2-extra-title {
  margin-bottom: 34px;
}

.n2-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.n2-tool-card {
  padding: 16px 16px 20px;
  border: 1px solid rgba(255, 208, 220, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(156, 76, 99, 0.1);
}

.n2-tool-media {
  margin: 0 0 14px;
  height: clamp(230px, 24vw, 300px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7f9, #fff);
  box-shadow: 0 14px 28px rgba(28, 45, 73, 0.1);
}

.n2-tool-media img {
  width: auto;
  max-width: 92%;
  height: 88%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.n2-tool-card h3,
.n2-library-head h3,
.n2-nath-materials h3,
.n2-nath-card h4 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  color: var(--navy);
  letter-spacing: 0;
}

.n2-tool-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
}

.n2-tool-card p {
  max-width: 540px;
  margin: 8px 0 0;
  color: rgba(28, 45, 73, 0.72);
  font-size: 15px;
  line-height: 1.48;
}

.n2-library-block {
  margin-bottom: 54px;
}

.n2-library-head {
  max-width: 780px;
  margin-bottom: 20px;
  text-align: left;
}

.n2-library-head h3,
.n2-nath-materials h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
}

.n2-library-head p {
  margin: 8px 0 0;
  color: rgba(28, 45, 73, 0.72);
  font-size: 17px;
  line-height: 1.5;
}

.n2-playbook-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 178px));
  justify-content: center;
  gap: 12px;
}

.n2-playbook-grid figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #08080a;
  box-shadow: 0 16px 38px rgba(28, 45, 73, 0.12);
}

.n2-playbook-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.n2-nath-materials {
  padding-top: 38px;
  border-top: 1px solid rgba(233, 72, 118, 0.22);
}

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

.n2-nath-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 158px;
  padding: 14px;
  border: 1px solid rgba(255, 208, 220, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(156, 76, 99, 0.1);
}

.n2-nath-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff8f2;
  box-shadow: 0 12px 26px rgba(28, 45, 73, 0.12);
}

.n2-nath-card h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
}

.n2-nath-card p {
  margin: 8px 0 0;
  color: rgba(28, 45, 73, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .n2-tools-grid,
  .n2-nath-grid {
    grid-template-columns: 1fr;
  }

  .n2-tools-grid {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 600px) {
  .n2-tool-media {
    height: 260px;
  }

  .n2-playbook-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .n2-nath-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .n2-nath-card img {
    width: 96px;
    height: 96px;
  }
}

.n2-duo {
  background: #ffffff;
}

.n2-profile-card {
  border-radius: 22px;
  padding: 24px;
}

.n2-profile-photo {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 0 14px;
  border: 2px solid #ffd0dc;
  box-shadow: 0 10px 22px rgba(156, 76, 99, 0.14);
}

.n2-profile-name {
  color: var(--pink);
  font-size: 34px;
}

.n2-profile-card h3 {
  margin-top: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.n2-profile-card p:not(.n2-profile-name) {
  margin: 12px 0 0;
  color: rgba(28, 45, 73, 0.9);
  font-size: 15px;
  line-height: 1.52;
  text-align: justify;
}

.n2-final {
  background: linear-gradient(180deg, #fff7fa 0%, var(--cream) 100%);
}

.n2-final-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 24px;
  text-align: center;
}

.n2-final-card h2 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0;
}

.n2-final-card p {
  max-width: 640px;
  margin: 14px auto 24px;
  color: rgba(28, 45, 73, 0.88);
  font-size: 18px;
}

.plans {
  background: var(--cream);
}

.plans-title {
  text-align: center;
  margin-bottom: 30px;
}

.plans-title h2,
.plans-heading {
  font-size: 46px;
  color: var(--navy);
}

.plans-heading {
  font-family: Anton, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
}

.plans-title .subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: rgba(28, 45, 73, 0.92);
  margin-top: 10px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-card {
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  min-height: 520px;
  box-shadow: 0 18px 42px rgba(28, 45, 73, 0.12);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(28, 45, 73, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 45, 73, 0.17);
}

.plan-kicker {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.plan-card h3,
.plan-card-title {
  font-family: Anton, sans-serif;
  font-weight: 400;
  color: inherit;
  font-size: 32px;
  margin: 8px 0 8px;
  letter-spacing: 0.02em;
}

.plan-summary {
  margin: 0 0 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.plan-benefits {
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.7;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.plan-benefits li {
  position: relative;
  padding-left: 24px;
}

.plan-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1ea84c;
  font-weight: 700;
}

.plan-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.plan-monthly {
  background: var(--yellow-plan);
  color: var(--navy);
}

.plan-monthly .plan-benefits {
  color: rgba(28, 45, 73, 0.92);
}

.plan-premium {
  background: linear-gradient(180deg, rgba(233, 72, 118, 0.08) 0%, rgba(255, 255, 255, 0) 55%);
  border: 1px solid rgba(233, 72, 118, 0.28);
  box-shadow: 0 22px 56px rgba(233, 72, 118, 0.14);
}

.plan-has-badge {
  padding-top: 68px;
  overflow: visible;
}

.plan-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  user-select: none;
  box-shadow: 0 22px 54px rgba(28, 45, 73, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

.plan-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 14px auto 8px;
  min-height: 42px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--pink);
  border: 0;
  box-shadow: 0 13px 28px rgba(28, 45, 73, 0.14), 0 8px 24px rgba(233, 72, 118, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.plan-card--compact {
  min-height: 240px;
  padding: 22px 18px;
}

.plan-card--compact h3 {
  font-size: 26px;
}

.plan-callout:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 16px 34px rgba(28, 45, 73, 0.16), 0 10px 28px rgba(233, 72, 118, 0.28);
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  .plan-callout {
    animation: planCalloutFloat 2.8s ease-in-out infinite;
  }
}

@keyframes planCalloutFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.plan-badge--premium {
  color: #ffffff;
  background: linear-gradient(90deg, #e94876 0%, #ff6d97 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.plan-badge--recommended {
  color: #ffffff;
  background: linear-gradient(90deg, #1c2d49 0%, #3a4d70 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.plan-card:hover .plan-badge {
  transform: translate(-50%, -52%) scale(1.03);
  box-shadow: 0 22px 54px rgba(28, 45, 73, 0.22);
  filter: saturate(1.06);
}

@media (prefers-reduced-motion: no-preference) {
  .plan-badge--premium {
    animation: planBadgePulse 2.4s ease-in-out infinite;
  }
  .plan-badge--recommended {
    animation: planBadgePulse 3s ease-in-out infinite;
  }
}

@keyframes planBadgePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -54%) scale(1.04);
  }
}

.plan-summary--price {
  opacity: 1;
  font-size: 16px;
  color: rgba(28, 45, 73, 0.98);
}

.plan-summary--price strong {
  font-size: 18px;
  color: var(--navy);
}

.price-installment {
  display: inline-block;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.price-full {
  display: inline-block;
  margin-top: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(28, 45, 73, 0.85);
}

.price-full--solo {
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--navy);
}

.plan-quarterly {
  background: var(--pink);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.plan-quarterly .plan-benefits {
  color: rgba(255, 255, 255, 0.95);
}

.plan-semiannual {
  background: linear-gradient(145deg, #3f3458 0%, #524667 100%);
  color: #fff;
}

.plan-semiannual .plan-benefits {
  color: rgba(255, 255, 255, 0.95);
}

.plan-semiannual-highlight {
  position: relative;
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(233, 72, 118, 0.18), 0 28px 70px rgba(58, 46, 85, 0.34);
}

.plan-semiannual-highlight::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.28), transparent 55%);
  pointer-events: none;
}

.plan-quarterly .plan-summary--price,
.plan-quarterly .plan-summary--price strong,
.plan-semiannual .plan-summary--price,
.plan-semiannual .plan-summary--price strong {
  color: #fff;
}

.plan-quarterly .plan-summary--price strong,
.plan-semiannual .plan-summary--price strong {
  color: #fff;
}

.plan-quarterly .price-installment,
.plan-quarterly .price-full,
.plan-semiannual .price-installment,
.plan-semiannual .price-full {
  color: #fff;
}

.plan-featured-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.plan-featured {
  width: min(640px, 100%);
  background: linear-gradient(135deg, #3a2e55 0%, #524667 100%);
  color: var(--white);
  border-radius: 26px;
  padding: 24px 22px;
  box-shadow: 0 20px 54px rgba(28, 45, 73, 0.16);
}

.plan-featured h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.plan-featured ul {
  margin: 0;
  padding-left: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.55;
}

.plan-featured .btn {
  margin-top: 14px;
}

.plan-featured-emphasis {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.plan-featured-emphasis::after {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.plan-featured-badge {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e94876 0%, #ff6d97 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 20px rgba(233, 72, 118, 0.48);
}

.plan-action {
  margin-top: auto;
  width: 100%;
  border-radius: 999px;
  border: 0;
  color: var(--white);
  background: var(--pink);
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(28, 45, 73, 0.14), 0 8px 24px rgba(233, 72, 118, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.plan-action:hover {
  background: var(--pink-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(28, 45, 73, 0.18), 0 10px 28px rgba(233, 72, 118, 0.3);
  text-decoration: none;
}

.plan-action--filled {
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(28, 45, 73, 0.14), 0 8px 24px rgba(233, 72, 118, 0.24);
}

.plan-action--filled:hover {
  background: var(--pink-hover);
  color: #ffffff;
}

.plan-quarterly .plan-action,
.plan-semiannual .plan-action {
  color: var(--pink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(28, 45, 73, 0.18);
}

.plan-quarterly .plan-action:hover,
.plan-semiannual .plan-action:hover {
  color: var(--pink);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(28, 45, 73, 0.22);
}

.plan-note {
  margin: 14px 0 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.88;
}

#n2-squad-planos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 208, 220, 0.36), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(233, 72, 118, 0.1), transparent 26%),
    linear-gradient(180deg, #fff9fb 0%, #ffffff 100%);
  color: var(--navy);
}

#n2-squad-planos::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 208, 220, 0.55);
  border-radius: 28px;
  pointer-events: none;
}

#n2-squad-planos .container {
  position: relative;
  z-index: 1;
}

#n2-squad-planos .plans-title {
  max-width: 860px;
  margin-inline: auto;
}

#n2-squad-planos .section-title-kicker,
#n2-squad-planos .plans-heading .accent {
  color: var(--pink);
}

#n2-squad-planos .plans-heading {
  color: var(--navy);
  text-shadow: none;
}

#n2-squad-planos .plans-title .subtitle {
  color: rgba(28, 45, 73, 0.72);
  letter-spacing: 0.1em;
}

#n2-squad-planos .plan-grid {
  align-items: stretch;
  gap: 18px;
}

#n2-squad-planos .plan-card {
  min-height: 0;
  padding: 30px 24px 24px;
  border: 1px solid rgba(233, 72, 118, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 240, 244, 0.65), rgba(255, 255, 255, 0) 42%),
    #fff;
  color: var(--navy);
  box-shadow: 0 22px 54px rgba(156, 76, 99, 0.14);
  backdrop-filter: none;
}

#n2-squad-planos .plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #ffd0dc, var(--pink));
}

#n2-squad-planos .plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 68px rgba(156, 76, 99, 0.2);
}

#n2-squad-planos .plan-premium {
  border: 2px solid rgba(233, 72, 118, 0.42);
  background:
    radial-gradient(circle at 50% -10%, rgba(233, 72, 118, 0.18), transparent 46%),
    linear-gradient(180deg, #fff0f4 0%, #ffffff 56%);
  transform: translateY(-10px);
  box-shadow:
    0 0 0 6px rgba(233, 72, 118, 0.07),
    0 32px 74px rgba(156, 76, 99, 0.22);
}

#n2-squad-planos .plan-premium:hover {
  transform: translateY(-16px);
}

#n2-squad-planos .plan-semiannual,
#n2-squad-planos .plan-quarterly {
  background:
    linear-gradient(180deg, rgba(255, 240, 244, 0.56), rgba(255, 255, 255, 0) 44%),
    #fff;
  color: var(--navy);
}

#n2-squad-planos .plan-semiannual-highlight {
  border-width: 1px;
  box-shadow: 0 22px 54px rgba(156, 76, 99, 0.14);
  transform: none;
}

#n2-squad-planos .plan-card h3,
#n2-squad-planos .plan-card-title {
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

#n2-squad-planos .plan-summary--price {
  margin: 8px 0 16px;
  padding: 16px;
  border: 1px solid rgba(233, 72, 118, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff6f8, #ffffff);
  opacity: 1;
}

#n2-squad-planos .price-installment {
  display: inline-block;
  color: var(--pink);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
}

#n2-squad-planos .price-full {
  display: inline-block;
  margin-top: 5px;
  color: rgba(28, 45, 73, 0.68);
  font-size: 14px;
  font-weight: 800;
}

#n2-squad-planos .plan-callout {
  width: 100%;
  min-height: 38px;
  margin: 0 0 16px;
  border: 1px solid rgba(233, 72, 118, 0.18);
  background: #fff0f4;
  color: var(--pink);
  box-shadow: none;
}

#n2-squad-planos .plan-benefits {
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(28, 45, 73, 0.84);
  font-size: 14px;
  line-height: 1.42;
}

#n2-squad-planos .plan-benefits li {
  padding-left: 26px;
}

#n2-squad-planos .plan-benefits li::before {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 2px;
  background: rgba(233, 72, 118, 0.2);
  color: var(--pink);
  font-size: 11px;
}

#n2-squad-planos .plan-action {
  min-height: 50px;
  border: 0;
  background: linear-gradient(135deg, #ff5d91, var(--pink));
  color: #fff;
  box-shadow: 0 16px 34px rgba(233, 72, 118, 0.25);
}

#n2-squad-planos .plan-action:hover {
  background: linear-gradient(135deg, #ff6c9d, #d93669);
  color: #fff;
}

#n2-squad-planos .plan-badge {
  top: 10px;
  background: linear-gradient(135deg, var(--pink), #ff6d97);
  color: #fff;
  box-shadow: 0 12px 30px rgba(233, 72, 118, 0.24);
}

/* Journey */
.student-feedbacks {
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

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

.feedbacks-title h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
}

.feedbacks-title p:not(.section-title-kicker) {
  margin: 10px auto 0;
  color: rgba(28, 45, 73, 0.72);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.4;
}

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

.feedback-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 220, 0.95);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 246, 0.92));
  box-shadow: 0 18px 42px rgba(156, 76, 99, 0.12);
}

.feedback-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.journey {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://nathaliaprado.com/wp-content/uploads/2025/07/ChatGPT-Image-7-de-jul.-de-2025-08_53_59.png");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.journey .container {
  position: relative;
  z-index: 1;
}

.journey h2 {
  font-size: 44px;
  text-align: center;
}

.steps {
  position: relative;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  isolation: isolate;
}

.steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(233, 72, 118, 0.18), rgba(233, 72, 118, 0.65), rgba(233, 72, 118, 0.18));
  z-index: -1;
}

.step-card {
  position: relative;
  min-height: 262px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 8px;
  padding: 26px 22px 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 249, 0.9)),
    var(--white);
  border: 1px solid rgba(255, 208, 220, 0.92);
  border-radius: 18px;
  box-shadow: 0 20px 52px rgba(28, 45, 73, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(233, 72, 118, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(233, 72, 118, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.step-card:hover,
.step-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(233, 72, 118, 0.38);
  box-shadow: 0 28px 70px rgba(28, 45, 73, 0.15);
  outline: none;
}

.step-card:hover::before,
.step-card:focus-visible::before {
  opacity: 1;
}

.step-number {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4f86, var(--pink));
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(233, 72, 118, 0.3);
}

.step-card h3 {
  position: relative;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.step-card p {
  position: relative;
  color: rgba(28, 45, 73, 0.72);
  font-size: 15px;
  line-height: 1.52;
  margin: 0;
}

.step-signal {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--pink);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-signal::before {
  content: "";
  width: 22px;
  height: 2px;
  margin-right: 8px;
  background: currentColor;
  border-radius: 999px;
}

/* FAQ */
.faq {
  position: relative;
  overflow: hidden;
  padding: 46px 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(233, 72, 118, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff6f8 100%);
}

.faq::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -210px;
  border: 1px solid rgba(255, 208, 220, 0.9);
  border-radius: 50%;
  pointer-events: none;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-title {
  max-width: 980px;
  margin: 0 auto 20px;
  text-align: center;
}

.faq-title h2 {
  font-size: clamp(28px, 2.45vw, 32px);
  white-space: normal;
  text-wrap: balance;
  color: var(--navy);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #FFD0DC;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(28, 45, 73, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(233, 72, 118, 0.4);
  box-shadow: 0 14px 34px rgba(28, 45, 73, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--pink);
  background: #fff0f4;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--white);
  background: var(--pink);
  transform: rotate(180deg);
}

.faq-item h3 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin: 0;
}

.faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(28, 45, 73, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.faq-item .faq-geo {
  margin-top: -6px;
  color: rgba(28, 45, 73, 0.54);
  font-size: 12px;
  font-style: italic;
}

/* Transformations carousel */
.transformations {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(233, 72, 118, 0.1), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, #fff6f8 100%);
}

.transformations h2,
.transformations-heading {
  font-size: 46px;
  text-align: center;
  color: var(--navy);
}

.transformations h2 .accent,
.transformations-heading .accent {
  color: var(--pink);
}

.carousel {
  margin-top: 28px;
  position: relative;
  padding: 22px;
  border: 1px solid rgba(233, 72, 118, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(28, 45, 73, 0.1);
  backdrop-filter: blur(8px);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 27vw, 330px);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 18px;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.carousel-item {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(233, 72, 118, 0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(28, 45, 73, 0.12);
  scroll-snap-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(28, 45, 73, 0.16);
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  pointer-events: none;
}

.carousel-item img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(255, 246, 248, 0.82), rgba(255, 255, 255, 0.98));
}

.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 76px;
  width: 72px;
  pointer-events: none;
  z-index: 2;
}

.carousel::before {
  left: 0;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.carousel::after {
  right: 0;
  border-radius: 0 24px 24px 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(233, 72, 118, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: var(--pink);
  backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(233, 72, 118, 0.12);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  background: #fff6f8;
  box-shadow: 0 16px 30px rgba(233, 72, 118, 0.18);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.carousel-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex: 0 1 auto;
  max-width: min(560px, 60vw);
  flex-wrap: wrap;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(233, 72, 118, 0.22);
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.dot.active {
  background: var(--pink);
  width: 24px;
}

/* Follow formats */
.follow-formats {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 208, 220, 0.42), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(233, 72, 118, 0.12), transparent 30%),
    linear-gradient(180deg, #fff9fb 0%, #ffffff 56%, #fff4f7 100%);
  color: var(--text);
}

.follow-formats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(233, 72, 118, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(233, 72, 118, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.32), transparent 70%);
  pointer-events: none;
}

.follow-formats .container {
  position: relative;
  z-index: 1;
}

.follow-title {
  max-width: 980px;
  margin: 0 auto 26px;
  text-align: center;
}

.follow-title h2 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

.follow-title h2 span {
  display: inline;
  color: var(--pink);
}

.follow-title p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.follow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.follow-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 20px;
  border: 1px solid rgba(255, 208, 220, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 249, 0.9)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(156, 76, 99, 0.11);
  text-align: center;
}

.follow-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff2d72 0%, #e94876 100%);
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(233, 72, 118, 0.28);
}

.follow-icon {
  width: 92px;
  height: 92px;
  margin: 18px auto 12px;
  display: grid;
  place-items: center;
}

.follow-icon svg {
  width: 100%;
  height: 100%;
}

.follow-icon-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.follow-icon-img--n2 {
  width: 66px;
  filter: drop-shadow(0 10px 18px rgba(233, 72, 118, 0.16));
}

.follow-icon-img--start {
  width: 82px;
  border-radius: 18px;
  filter: drop-shadow(0 12px 22px rgba(156, 76, 99, 0.14));
}

.icon-soft {
  fill: rgba(255, 208, 220, 0.34);
}

.icon-line {
  stroke: #27333a;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-accent {
  fill: var(--pink);
}

.icon-accent-line {
  stroke: var(--pink);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.follow-card h3 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 0.95;
  color: var(--text);
  margin: 0;
}

.follow-card h3 span {
  display: inline;
  color: var(--pink);
}

.follow-badge {
  margin: 10px 0 14px;
  padding: 8px 13px;
  border-radius: 8px;
  background: linear-gradient(90deg, #a91d4c, #e94876);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: nowrap;
}

.follow-divider {
  width: 100%;
  height: 1px;
  margin: 16px 0 14px;
  background: rgba(233, 72, 118, 0.22);
}

.follow-card > p:not(.follow-badge) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
}

.follow-card:nth-child(2) > p:not(.follow-badge) {
  font-size: 13px;
  line-height: 1.42;
  margin-bottom: 10px;
}

.follow-action {
  width: 100%;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff2d72 0%, #e94876 100%);
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 16px 34px rgba(233, 72, 118, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.follow-action:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 20px 44px rgba(233, 72, 118, 0.36);
  text-decoration: none;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, #ff8da2 0%, #ff577f 100%);
  color: var(--white);
  padding: 30px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(28, 45, 73, 0.12);
  backdrop-filter: blur(6px);
}

.contact h2,
.contact-heading {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-cards {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.contact-instagram-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 9px 10px;
}

.contact-card--link {
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-card--link:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
  text-decoration: none;
}

.contact-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
}

.contact-badge--wa {
  background: var(--wa-green);
}

.contact-badge--ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}

.contact-badge--mail {
  background: var(--pink);
}

.contact-badge--pin {
  background: var(--navy);
}

.contact-badge svg {
  display: block;
}

.contact-card h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.32;
  color: var(--white);
  margin: 0;
}

.contact-card p {
  color: var(--white);
  margin: 0;
  font-size: 13px;
  line-height: 1.32;
}

.contact-place {
  margin-top: 4px !important;
  font-weight: 600;
}

.contact-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.contact-figure img {
  width: min(225px, 100%);
  max-height: 300px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

/* Final CTA */
.final-cta {
  background: var(--cream);
  padding: 64px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 340px;
  max-width: 1120px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 62px rgba(28, 45, 73, 0.16);
}

.cta-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #ff829d;
  padding: 42px 76px;
  color: var(--navy);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  text-align: left;
}

.cta-left h2 {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  max-width: 560px;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--navy);
}

.cta-left h2 .cta-heading-regular {
  display: block;
  font-family: inherit;
  font-weight: 300;
  font-size: 40px;
  text-transform: none;
}

.cta-left h2 strong {
  display: block;
  max-width: 410px;
  font-family: inherit;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.cta-left .btn {
  margin-top: 58px;
  min-width: 250px;
  padding: 16px 34px;
  background: var(--pink);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(28, 45, 73, 0.14), 0 8px 24px rgba(233, 72, 118, 0.24);
}

.cta-right {
  background: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 70px 0 12px;
}

.cta-right img {
  width: min(265px, 100%);
  max-height: 340px;
  object-fit: cover;
  object-position: center top;
}

.home-final-cta {
  position: relative;
  overflow: hidden;
  background: #ec879c;
  padding: 58px 0;
}

.home-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.94) 58.15% 100%);
  pointer-events: none;
}

.home-final-cta::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12));
  transform: rotate(-5deg);
  pointer-events: none;
}

.home-final-cta .container {
  position: relative;
  z-index: 1;
}

.home-final-cta .cta-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 80px rgba(28, 45, 73, 0.18);
}

.home-final-cta .cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 132, 157, 0.74) 0 56%, transparent 56.12% 100%);
  pointer-events: none;
}

.home-final-cta .cta-left {
  position: relative;
  z-index: 1;
  background: transparent;
  clip-path: none;
}

.home-final-cta .cta-right {
  position: relative;
  z-index: 1;
  background: transparent;
}

.home-final-cta .cta-left h2,
.home-final-cta .cta-heading {
  color: #2f3236;
}

.home-final-cta .cta-heading {
  margin: 0;
  max-width: 560px;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  line-height: 1.22;
}

.home-final-cta .cta-left h2 .cta-heading-regular,
.home-final-cta .cta-heading .cta-heading-regular {
  display: block;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 300;
  text-transform: none;
}

.home-final-cta .cta-heading strong {
  display: block;
  max-width: 480px;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.about-final-cta {
  position: relative;
  overflow: hidden;
  background: #ec879c;
  padding: 52px 0;
}

.about-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.94) 58.15% 100%);
  pointer-events: none;
}

.about-final-cta::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12));
  transform: rotate(-5deg);
  pointer-events: none;
}

.about-final-cta .container {
  position: relative;
  z-index: 1;
}

.about-final-cta .cta-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  max-width: 1180px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(28, 45, 73, 0.18);
}

.about-final-cta .cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 132, 157, 0.74) 0 56%, transparent 56.12% 100%);
  pointer-events: none;
  z-index: 0;
}

.about-final-cta .cta-left {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 56px 76px;
  clip-path: none;
}

.about-final-cta .cta-left h2 {
  max-width: 500px;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.32;
  color: #2f3236;
  text-transform: none;
}

.about-final-cta .cta-left h2 span {
  display: block;
  font-family: inherit;
}

.about-final-cta .cta-left h2 strong {
  display: inline;
  max-width: none;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: 0;
}

.about-final-cta .cta-left .about-final-strong {
  display: block;
}

.about-final-cta .cta-left .btn {
  margin-top: 76px;
}

.about-final-cta .cta-right {
  position: relative;
  z-index: 1;
  align-items: flex-end;
  padding: 28px 70px 0 0;
  background: transparent;
}

.about-final-cta .cta-right img {
  width: min(300px, 100%);
  max-height: 365px;
  object-fit: contain;
}

.formation-bar-track i {
  transition-duration: 4s;
}

/* Blog */
.blog-page {
  background: var(--cream);
}

.blog-hero-old {
  background: linear-gradient(180deg, #ff8da2 0%, #ff6f92 62%, #ffffff 100%);
  color: #fff;
  padding: 48px 0 0;
  overflow: hidden;
}

.section.blog-hero-old {
  padding-bottom: 0;
}

.blog-hero-old-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.blog-hero-old h1 {
  color: #fff;
  font-size: 56px;
}

.blog-hero-old .lead {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 54px;
}

.blog-hero-old-image {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  align-self: end;
  margin-left: -58px;
}

.blog-hero-old-image img {
  width: min(390px, 112%);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 208, 220, 0.42), transparent 26%),
    linear-gradient(135deg, #fff7fa 0%, #fff 52%, #ffe7ee 100%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -34px;
  height: 92px;
  background: #ec879c;
  transform: rotate(-2.2deg);
  opacity: 0.9;
  pointer-events: none;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.blog-hero h1 {
  max-width: 760px;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.blog-hero .lead {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(28, 45, 73, 0.84);
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.blog-hero-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(233, 72, 118, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 52px rgba(28, 45, 73, 0.12);
  backdrop-filter: blur(10px);
}

.blog-hero-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.blog-hero-card span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(233, 72, 118, 0.12);
}

.blog-index {
  background: var(--cream);
}

.blog-intro {
  margin-bottom: 34px;
  text-align: center;
}

.blog-intro h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
}

.blog-category {
  margin-top: 34px;
}

.blog-category-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.blog-category-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(233, 72, 118, 0.22);
}

.blog-category-head h2 {
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.blog-category-head p {
  margin: 5px 0 0;
  color: rgba(28, 45, 73, 0.68);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 45, 73, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(28, 45, 73, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.blog-card::before {
  content: "";
  display: block;
  height: 126px;
  background:
    radial-gradient(circle at 24% 58%, rgba(112, 169, 93, 0.92) 0 18%, transparent 18.5%),
    radial-gradient(circle at 31% 49%, rgba(238, 89, 94, 0.92) 0 4%, transparent 4.5%),
    radial-gradient(circle at 18% 45%, rgba(238, 89, 94, 0.85) 0 4%, transparent 4.5%),
    radial-gradient(circle at 73% 53%, rgba(245, 176, 68, 0.95) 0 20%, transparent 20.5%),
    linear-gradient(135deg, #9a6336 0%, #6e421f 100%);
  background-size: cover;
}

.blog-card--image::before {
  display: none;
}

.blog-card-image {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
  object-position: center;
}

.blog-card:nth-child(2)::before,
.blog-card:nth-child(5)::before {
  background:
    radial-gradient(circle at 35% 54%, rgba(255, 255, 255, 0.92) 0 14%, transparent 14.5%),
    radial-gradient(circle at 64% 45%, rgba(255, 208, 220, 0.92) 0 18%, transparent 18.5%),
    linear-gradient(135deg, #ff8da2 0%, #e94876 100%);
}

.blog-card:nth-child(3)::before,
.blog-card:nth-child(6)::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 18%, transparent 18% 100%),
    radial-gradient(circle at 68% 50%, rgba(28, 45, 73, 0.84) 0 20%, transparent 20.5%),
    linear-gradient(135deg, #f8dbe3 0%, #ff8da2 100%);
}

.blog-card:nth-child(4)::before,
.blog-card:nth-child(7)::before {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 0 10px, transparent 10px 20px),
    radial-gradient(circle at 72% 38%, rgba(255, 208, 220, 0.94) 0 18%, transparent 18.5%),
    linear-gradient(135deg, #1c2d49 0%, #e94876 100%);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 72, 118, 0.26);
  box-shadow: 0 20px 52px rgba(28, 45, 73, 0.12);
  text-decoration: none;
}

.blog-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--pink);
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(233, 72, 118, 0.22);
}

.blog-author {
  margin: 18px 18px 0;
  color: var(--pink);
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 8px 18px 0;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.blog-card p:not(.blog-author) {
  margin: 10px 18px 0;
  color: #285eb4;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.blog-card::after {
  content: "LER POST »";
  display: block;
  margin: 18px 18px 22px;
  color: var(--pink);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.blog-post-page {
  background: var(--cream);
}

.blog-post-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 208, 220, 0.48), transparent 28%),
    linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
  padding: 64px 0 54px;
}

.blog-post-hero .container {
  max-width: 980px;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--pink);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-post-meta {
  margin: 0 0 12px;
  color: var(--pink);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post-hero h1 {
  max-width: 920px;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.blog-post-hero p:not(.blog-post-meta) {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(28, 45, 73, 0.86);
  font-size: 19px;
  line-height: 1.62;
  text-align: justify;
}

.blog-post-content {
  padding-top: 54px;
}

.blog-post-container {
  max-width: 920px;
}

.blog-post-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  margin-bottom: 34px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 58%, rgba(255, 255, 255, 0.92) 0 15%, transparent 15.4%),
    radial-gradient(circle at 68% 52%, rgba(233, 72, 118, 0.88) 0 22%, transparent 22.4%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 13px, transparent 13px 26px),
    linear-gradient(135deg, #ff8da2 0%, #1c2d49 100%);
  box-shadow: 0 22px 58px rgba(28, 45, 73, 0.12);
}

.blog-post-cover span {
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 12px 28px rgba(28, 45, 73, 0.2);
}

.blog-post-cover--carb {
  background:
    radial-gradient(circle at 24% 60%, rgba(255, 255, 255, 0.92) 0 14%, transparent 14.4%),
    radial-gradient(circle at 72% 45%, rgba(255, 225, 135, 0.9) 0 18%, transparent 18.5%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #ff8da2 0%, #e94876 52%, #1c2d49 100%);
}

.blog-post-cover-image {
  width: min(92%, 760px);
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(28, 45, 73, 0.12);
}

.blog-post-cover-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.blog-post-content h2 {
  margin-top: 42px;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.blog-post-content p,
.blog-post-content li {
  color: rgba(28, 45, 73, 0.9);
  font-size: 18px;
  line-height: 1.76;
}

.blog-post-content p {
  margin: 16px 0 0;
  text-align: justify;
}

.blog-post-content ul {
  margin: 18px 0 0;
  padding-left: 24px;
}

.blog-table-wrap {
  margin: 24px 0 0;
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(28, 45, 73, 0.08);
}

.blog-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}

.blog-table-wrap th,
.blog-table-wrap td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(28, 45, 73, 0.08);
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 16px;
  text-align: left;
}

.blog-table-wrap th {
  background: #ffeff4;
  color: var(--pink);
  font-weight: 800;
}

.blog-table-wrap tr:last-child td {
  border-bottom: 0;
}

.blog-callout {
  margin: 24px 0 0;
  padding: 20px 22px;
  border: 1px solid rgba(233, 72, 118, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7fa 0%, #ffffff 100%);
  box-shadow: 0 14px 36px rgba(28, 45, 73, 0.07);
}

.blog-callout h3 {
  margin: 0;
  color: var(--pink);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.blog-callout p {
  margin-top: 10px;
}

.blog-callout a {
  color: var(--pink);
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

.method-pillars {
  position: relative;
  overflow: hidden;
  margin: 34px 0 10px;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 208, 220, 0.72), transparent 28%),
    linear-gradient(135deg, #fff7fa 0%, #ffffff 58%, #fff0f5 100%);
  box-shadow: 0 22px 58px rgba(28, 45, 73, 0.1);
}

.method-pillars::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(233, 72, 118, 0.24), transparent);
  transform: rotate(-3deg);
  pointer-events: none;
}

.method-pillars-head {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.method-pillars-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-pillars-head h2 {
  margin-top: 12px;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.method-pillars-head p {
  margin-top: 12px;
  color: rgba(28, 45, 73, 0.78);
  font-size: 16px;
  line-height: 1.58;
  text-align: center;
}

.method-pillars-grid,
.method-pillars-pyramid {
  position: relative;
  z-index: 1;
  display: grid;
}

.method-pillars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.method-pillars-pyramid {
  gap: 12px;
  justify-items: center;
}

.method-pillars-pyramid .method-pillar-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 20px 22px;
}

.method-pillars-pyramid .method-pillar-card:nth-child(1) {
  order: 3;
  max-width: 100%;
}

.method-pillars-pyramid .method-pillar-card:nth-child(2) {
  order: 2;
  max-width: 78%;
}

.method-pillars-pyramid .method-pillar-card:nth-child(3) {
  order: 1;
  max-width: 56%;
}

.method-pillars-pyramid .method-pillar-card h3 {
  margin: 0;
}

.method-pillars-pyramid .method-pillar-card p {
  grid-column: 2;
  margin-top: -4px;
}

.method-pillar-card {
  min-height: 245px;
  padding: 22px 18px;
  border: 1px solid rgba(233, 72, 118, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(28, 45, 73, 0.08);
}

.method-pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6f92 0%, var(--pink) 100%);
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(233, 72, 118, 0.24);
}

.method-pillar-card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.method-pillar-card p {
  margin: 12px 0 0;
  color: rgba(28, 45, 73, 0.82);
  font-size: 15px;
  line-height: 1.58;
  text-align: justify;
}

.blog-post-faq {
  margin-top: 46px;
}

.blog-post-faq details {
  margin-top: 12px;
  border: 1px solid rgba(233, 72, 118, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(28, 45, 73, 0.06);
}

.blog-post-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--navy);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.blog-post-faq details p {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 16px;
  line-height: 1.65;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 208, 220, 0.52), transparent 28%),
    linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
  padding: 54px 0 38px;
}

.footer-inner {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  font-family: Anton, sans-serif;
  font-weight: 400;
  color: var(--pink);
  font-size: 26px;
  letter-spacing: 0.01em;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.copyright {
  color: rgba(28, 45, 73, 0.78);
  font-size: 14px;
}

/* Floating buttons */
.floating-wa,
.scroll-top {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(28, 45, 73, 0.18);
  z-index: 60;
}

.floating-wa {
  left: 24px;
  background: var(--wa-green);
  color: var(--white);
}

.scroll-top {
  right: 24px;
  background: var(--pink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .cta-card,
  .n2-hero-grid,
  .n2-belief-grid,
  .n2-duo-grid,
  .blog-hero-grid,
  .blog-hero-old-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-old {
    padding: 48px 0 0;
  }

  .blog-hero-old h1 {
    font-size: 42px;
  }

  .blog-hero-old-image {
    justify-content: flex-start;
    margin-left: -24px;
  }

  .blog-hero-old-image img {
    width: min(318px, 108%);
  }

  .blog-hero {
    padding-bottom: 88px;
  }

  .blog-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .blog-hero .lead {
    font-size: 16px;
  }

  .blog-hero-card {
    padding: 20px;
  }

  .blog-category-head {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .blog-category-head > span {
    justify-self: center;
  }

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

  .blog-card {
    min-height: auto;
    padding: 0;
  }

  .blog-post-hero {
    padding: 46px 0 38px;
  }

  .blog-post-hero p:not(.blog-post-meta),
  .blog-post-content p,
  .blog-post-content li {
    font-size: 16px;
  }

  .blog-post-cover {
    min-height: 180px;
    border-radius: 22px;
  }

  .method-pillars {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .method-pillars-grid,
  .method-pillars-pyramid {
    grid-template-columns: 1fr;
  }

  .method-pillars-pyramid .method-pillar-card:nth-child(1) {
    max-width: 100%;
  }

  .method-pillars-pyramid .method-pillar-card:nth-child(2) {
    max-width: 88%;
  }

  .method-pillars-pyramid .method-pillar-card:nth-child(3) {
    max-width: 76%;
  }

  .method-pillar-card {
    min-height: auto;
  }

  .hero h1 {
    font-size: 37px;
    max-width: 560px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 247, 249, 0.96) 0%, rgba(255, 247, 249, 0.9) 55%, rgba(255, 247, 249, 0.86) 100%),
      linear-gradient(135deg, rgba(255, 141, 162, 0.2), rgba(233, 72, 118, 0.1));
  }

  .hero-bg {
    opacity: 0.5;
  }

  .hero .container {
    order: 1;
    position: relative;
    z-index: 3;
    display: block;
  }

  .hero-person {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    width: min(380px, 84vw);
    max-height: none;
    margin: 20px auto 0;
    opacity: 1;
    clip-path: none;
    z-index: 2;
  }

  .hero-grid > div {
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(28, 45, 73, 0.08);
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 18px;
    min-height: 360px;
    padding: 78px 34px;
  }

  .counter-grid::before {
    inset: 10px -12vw;
    border-radius: 48% 52% 50% 50% / 9% 12% 11% 12%;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

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

  .follow-card {
    min-height: 370px;
  }

  .about-preview .two-col,
  .about-story .two-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .about-preview .two-col > .card-photo,
  .about-story .two-col > .card-photo {
    order: -1;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .about-hero .hero-grid > div {
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(28, 45, 73, 0.08);
  }

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

  .feedback-card {
    min-height: 0;
  }

  .plan-semiannual-highlight {
    transform: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps::before {
    display: none;
  }

  .step-card {
    min-height: auto;
    margin: 0;
  }

  .cta-left {
    clip-path: none;
  }

  .about-final-cta .cta-left {
    clip-path: none;
    padding: 42px 28px;
  }

  .about-final-cta .cta-left h2 {
    max-width: 430px;
    font-size: 22px;
    line-height: 1.32;
    text-align: center;
  }

  .about-final-cta .cta-left h2 strong {
    font-size: inherit;
  }

  .home-final-cta .cta-heading .cta-heading-regular {
    font-size: 30px;
  }

  .home-final-cta .cta-heading strong {
    font-size: 34px;
  }

  .about-final-cta .cta-left .btn {
    margin-top: 34px;
  }

  .about-final-cta .cta-right {
    padding: 18px 24px 0;
  }

  .cta-card {
    max-width: 620px;
  }

  .cta-left {
    align-items: center;
    padding: 42px 28px;
    text-align: center;
  }

  .cta-left h2 {
    max-width: 420px;
  }

  .cta-left h2 .cta-heading-regular {
    font-size: 32px;
  }

  .cta-left h2 strong {
    font-size: 36px;
  }

  .cta-left .btn {
    margin-top: 34px;
  }

  .cta-right {
    padding: 18px 24px 0;
  }

  .n2-hero {
    min-height: auto;
    padding: 70px 0 0;
  }

  .n2-hero-grid {
    min-height: 0;
  }

  .n2-hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .n2-hero-visual {
    width: min(360px, 74vw);
    margin-top: 10px;
  }

  .n2-meaning {
    grid-template-columns: 1fr;
  }

  .n2-process::before {
    inset: 18px;
    border-radius: 24px;
  }

  .n2-process-group {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .n2-process-heading {
    position: static;
    padding-top: 0;
  }

  .n2-process-heading > span:not(.n2-process-sticker),
  .n2-process-heading > strong {
    display: inline;
    font-size: clamp(32px, 7vw, 46px);
  }

  .n2-process-sticker {
    width: 54px;
    height: 54px;
    margin-bottom: 7px;
  }

  .n2-process-sticker svg {
    width: 31px;
    height: 31px;
  }

  .n2-process-image {
    width: min(116px, 44vw);
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    justify-items: stretch;
    gap: 8px 12px;
    padding: 10px 0 12px;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }

  .header-actions {
    grid-area: actions;
    justify-content: flex-end;
  }

  .header-nav {
    grid-area: nav;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-nav a {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 7px 11px;
    white-space: nowrap;
  }
}

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

  .header-inner {
    gap: 8px 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .brand img {
    width: 112px;
  }

  .brand-crn {
    font-size: 9px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 70px 28px;
  }

  .counter-grid::before {
    inset: 10px -28vw;
    border-radius: 45% 55% 47% 53% / 5% 7% 6% 8%;
  }

  .counter .label {
    margin-top: 10px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feedbacks-title h2 {
    white-space: normal;
  }

  .feedback-card {
    min-height: 0;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 72px;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 38px);
    max-width: 430px;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero h2 {
    max-width: 430px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero p {
    text-align: justify;
    max-width: 430px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-person {
    position: relative;
    order: 2;
    right: auto;
    bottom: auto;
    width: min(300px, 82vw);
    max-height: none;
    opacity: 1;
    grid-row: auto;
    margin: 22px auto 0;
    clip-path: none;
    filter: drop-shadow(0 18px 32px rgba(28, 45, 73, 0.14));
    align-self: center;
  }

  .hero .container {
    order: 1;
    width: min(100% - 28px, var(--container));
  }

  .hero-bg,
  .hero-overlay {
    position: absolute;
    inset: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 247, 249, 0.98) 0%, rgba(255, 247, 249, 0.94) 62%, rgba(255, 247, 249, 0.88) 100%),
      linear-gradient(135deg, rgba(255, 141, 162, 0.18), rgba(233, 72, 118, 0.08));
  }

  .hero-bg {
    opacity: 0.42;
  }

  .hero-grid > div {
    position: relative;
    z-index: 2;
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(28, 45, 73, 0.08);
  }

  .hero::after {
    bottom: -44px;
    height: 105px;
  }

  .hero-grid {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding-inline: 18px;
    letter-spacing: 0.08em;
  }

  .section {
    padding: 56px 0;
  }

  .section.blog-hero-old {
    padding-bottom: 0;
  }

  .plans-page-hero {
    padding: 58px 0 38px;
  }

  .plans-page-hero h1 {
    font-size: 40px;
  }

  .plans-page-hero p:not(.section-title-kicker) {
    font-size: 16px;
  }

  .plans-page-links a {
    width: 100%;
    max-width: 280px;
    font-size: 13px;
  }

  .plans-title {
    margin-bottom: 22px;
  }

  .plans-title h2,
  .plans-heading {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.08;
  }

  .plans-title .subtitle {
    font-size: 14px;
    line-height: 1.45;
  }

  .plan-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .plan-card h3,
  .plan-card-title {
    font-size: 28px;
  }

  .plan-benefits {
    gap: 8px;
  }

  .plan-benefits li {
    font-size: 14px;
    line-height: 1.45;
  }

  .n2-hero {
    padding: 48px 0 0;
  }

  .n2-hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 247, 249, 0.9) 0%, rgba(255, 247, 249, 0.62) 50%, rgba(255, 247, 249, 0.16) 100%),
      radial-gradient(circle at 20% 12%, rgba(255, 208, 220, 0.28), transparent 34%);
  }

  .n2-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .n2-hero-promise {
    width: 100%;
    max-width: 360px;
    grid-template-columns: 1fr;
    font-size: 13px;
  }

  .n2-hero-promise span,
  .n2-hero-promise strong {
    min-height: 44px;
    padding: 10px 12px;
  }

  .n2-hero-lead {
    max-width: 390px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.48;
  }

  .n2-meaning {
    margin: 22px 0 22px;
  }

  .n2-meaning article {
    padding: 16px;
  }

  .n2-meaning h2 {
    font-size: 26px;
  }

  .n2-meaning p,
  .n2-profile-card p:not(.n2-profile-name),
  .n2-belief-card li {
    font-size: 15px;
  }

  .n2-hero-visual {
    width: min(300px, 88vw);
  }

  .n2-process {
    padding: 52px 0;
  }

  .n2-process::before {
    inset: 10px;
    border-radius: 18px;
  }

  .n2-process-title {
    margin-bottom: 24px;
  }

  .n2-process-value {
    padding: 16px 14px;
    border-radius: 17px;
  }

  .n2-process-value span {
    font-size: clamp(24px, 7.4vw, 34px);
  }

  .n2-process-value strong {
    font-size: clamp(18px, 5.8vw, 26px);
  }

  .n2-process-value em {
    font-size: clamp(26px, 8.4vw, 38px);
  }

  .n2-process-flow {
    gap: 18px;
  }

  .n2-process-group {
    padding-bottom: 20px;
  }

  .n2-process-heading > span:not(.n2-process-sticker),
  .n2-process-heading > strong {
    font-size: clamp(28px, 8vw, 38px);
  }

  .n2-process-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 14px 13px;
    border-radius: 16px;
  }

  .n2-process-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .n2-process-icon svg {
    width: 22px;
    height: 22px;
  }

  .n2-process-card h3 {
    font-size: 19px;
  }

  .n2-process-card p,
  .n2-process-card li {
    font-size: 14px;
  }

  .n2-section-title h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .n2-process .n2-section-title h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .n2-belief-card,
  .n2-profile-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .n2-profile-photo {
    width: 78px;
    height: 78px;
    margin-bottom: 12px;
  }

  .n2-profile-name {
    font-size: 30px;
  }

  .n2-final-card {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .n2-final-card h2 {
    font-size: 32px;
  }

  .n2-final-card p {
    font-size: 16px;
  }

  .follow-formats {
    padding: 54px 0;
  }

  .follow-title {
    margin-bottom: 26px;
  }

  .follow-title h2 {
    font-size: clamp(22px, 6vw, 38px);
    line-height: 0.98;
    white-space: nowrap;
  }

  .follow-title p {
    font-size: 16px;
    margin-top: 16px;
  }

  .follow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .follow-card {
    min-height: auto;
    padding: 24px 20px 22px;
    border-radius: 18px;
  }

  .follow-number {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .follow-icon {
    width: 82px;
    height: 82px;
    margin: 26px auto 14px;
  }

  .follow-card h3 {
    font-size: 27px;
  }

  .follow-card > p:not(.follow-badge) {
    font-size: 13px;
  }

  .follow-action {
    margin-top: 24px;
    font-size: 14px;
  }

  .faq-title h2 {
    font-size: 28px;
    white-space: normal;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 14px 14px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 14px 14px;
    font-size: 14px;
  }

  .cta-left h2 .cta-heading-regular {
    font-size: 25px;
  }

  .cta-left h2 strong {
    font-size: 29px;
  }

  .home-final-cta .cta-heading .cta-heading-regular {
    font-size: 26px;
  }

  .home-final-cta .cta-heading strong {
    font-size: 30px;
  }

  .about-final-cta .cta-left h2 {
    font-size: 19px;
  }

  .about-final-cta .cta-left h2 strong {
    font-size: inherit;
  }

  .cta-left .btn {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 13px;
  }

  .carousel-track {
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
  }

  .carousel-item {
    scroll-snap-align: start;
  }

  .carousel {
    padding: 14px;
    border-radius: 18px;
  }

  .carousel-item {
    border-radius: 18px;
  }

  .carousel-item img {
    height: 340px;
  }

  .carousel::before,
  .carousel::after {
    width: 34px;
    bottom: 72px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }
}

@media (max-width: 560px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .method-pillars-pyramid .method-pillar-card:nth-child(1),
  .method-pillars-pyramid .method-pillar-card:nth-child(2),
  .method-pillars-pyramid .method-pillar-card:nth-child(3) {
    max-width: 100%;
  }

  .blog-post-content img,
  .blog-post-cover img,
  .blog-hero-old-image img {
    width: 100%;
    height: auto;
  }

  .contact-grid,
  .plan-grid,
  .n2-belief-grid {
    gap: 16px;
  }

  .about-split-title strong,
  .about-split-title span {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.2;
  }
}
