/* ================================================================
   ROSA CREATIVE LAB — STYLESHEET
   Colors: #FF006E (Rosa), #231318 (Dark), #F8F6F1 (Cream), #C1F52F (Lime)
   Fonts: Unbounded (headlines) + Poppins (body)
   ================================================================ */

/* ── 1. Custom Properties ───────────────────────────────────────── */
:root {
  --rosa:        #FF006E;
  --rosa-dark:   #CC0057;
  --rosa-glow:   rgba(255, 0, 110, 0.35);

  --dark:        #111111;
  --dark-card:   #1A1A1A;
  --dark-2:      #1A1A1A;
  --dark-3:      #222222;

  --cream:       #F8F6F1;
  --cream-soft:  #FFF9F6;
  --lime:        #C1F52F;
  --white:       #FFFFFF;

  --text-dark:   #1A1A1A;
  --text-muted:  #777777;
  --text-light:  rgba(255, 255, 255, 0.85);
  --text-dim:    rgba(255, 255, 255, 0.50);
  --text-faint:  rgba(255, 255, 255, 0.30);

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --container:    1200px;
  --pad:          2rem;
  --section-v:    100px;
  --radius:       16px;
  --radius-sm:    8px;
  --radius-pill:  50px;

  --ease:         0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── 3. Layout ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: var(--section-v) 0;
}
.section--dark   { background: var(--dark-2); color: var(--white); }
.section--darker { background: var(--dark);   color: var(--white); }
.section--light  { background: var(--white); }
.section--cream  { background: var(--cream); }

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.section--dark .section__title,
.section--darker .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section--dark .section__subtitle,
.section--darker .section__subtitle { color: var(--text-dim); }

/* ── 4. Color utilities ─────────────────────────────────────────── */
.text--rosa { color: var(--rosa); }

/* ── 5. Tag / Badge ─────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.tag--rosa    { background: rgba(255, 0, 110, 0.12); color: var(--rosa); }
.tag--dark    { background: rgba(35, 19, 24, 0.1);   color: var(--dark-2); }
.tag--cream   { background: rgba(248, 246, 241, 0.1); color: var(--cream); }
.tag--outline { border: 1px solid rgba(255, 255, 255, 0.25); color: var(--text-dim); }

/* ── 6. Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--rosa);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--rosa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--rosa-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark-2);
  border: 1.5px solid rgba(35, 19, 24, 0.25);
}
.btn--outline-dark:hover {
  background: var(--dark-2);
  color: var(--white);
  border-color: var(--dark-2);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 0, 110, 0.4);
}
.btn--outline-light:hover {
  background: rgba(255, 0, 110, 0.1);
  border-color: var(--rosa);
}
.btn--full  { width: 100%; }
.btn--large { padding: 1.1rem 2.75rem; font-size: 1rem; }
.btn--nav {
  background: var(--rosa);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
  border-radius: var(--radius-pill);
}
.btn--nav:hover { background: var(--rosa-dark); }

/* ── 7. Header / Navigation ─────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.5rem 0;
  transition: all var(--ease);
}
.header--scrolled {
  background: rgba(17, 17, 17, 0.97);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.logo em {
  font-style: normal;
  color: var(--rosa);
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links > li > a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--ease);
}
.nav__links > li > a:hover { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: calc(var(--section-v) + 90px) 0 var(--section-v);
  position: relative;
  overflow: hidden;
}
/* Atmospheric glows */
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.13) 0%, transparent 68%);
  pointer-events: none;
  animation: glow-drift 12s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 5%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.06) 0%, transparent 68%);
  pointer-events: none;
  animation: glow-drift 16s ease-in-out 4s infinite reverse;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 1.75rem;
  animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero__title span { display: block; }
.hero__title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}
.hero__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  animation: hero-fade-in 0.7s ease 1s both;
}
.hero__meta a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--ease);
}
.hero__meta a:hover { color: var(--rosa); }
.hero__meta-sep { color: rgba(255, 255, 255, 0.15); }

/* Hero visual ornament */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  animation: hero-scale-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both,
             float-y 6s ease-in-out 1.5s infinite;
}
.hero__orbit {
  position: relative;
  width: 220px;
  height: 220px;
}
.orbit__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 110, 0.2);
  animation: spin 18s linear infinite;
}
.orbit__ring--outer {
  inset: -14px;
  border-color: rgba(255, 0, 110, 0.1);
  animation-duration: 28s;
  animation-direction: reverse;
}
.orbit__dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--rosa);
  border-radius: 50%;
  top: -4px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 10px var(--rosa-glow);
}
.orbit__core {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: rgba(255, 0, 110, 0.06);
  border: 1px solid rgba(255, 0, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit__label {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--rosa);
  text-align: center;
  line-height: 1.8;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rosa);
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.4); }
}
.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: hero-fade-in 0.7s ease 1.4s both;
}
.hero__scroll-arrow { animation: bounce 2s ease-in-out infinite; font-style: normal; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Hero entrance keyframes & staggered title lines */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-scale-in {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0,     0)    scale(1);    }
  40%       { transform: translate(35px, -28px) scale(1.1);  }
  70%       { transform: translate(-18px, 16px) scale(0.95); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.hero__title span:nth-child(1) { animation: hero-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
.hero__title span:nth-child(2) { animation: hero-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s  both; }
.hero__title span:nth-child(3) { animation: hero-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both; }

/* ── 9. Problem Section ─────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.problem-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  color: var(--white);
  transition: transform var(--ease), border-color var(--ease);
}
.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 110, 0.28);
}
.problem-card__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--rosa);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.problem-card p {
  font-size: 0.855rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.problem__result {
  text-align: center;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  font-size: 1.1rem;
  color: var(--text-dim);
}
.problem__result strong { color: var(--white); }

/* ── 10. Opportunity Section ───────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.split-grid .section__title { text-align: left; }
.lead {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefit-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.benefit-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--rosa);
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
  min-width: 26px;
  flex-shrink: 0;
}
.benefit-list strong {
  display: block;
  color: var(--white);
  font-size: 0.935rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.benefit-list p {
  font-size: 0.845rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Bar Chart */
.chart-block {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 2rem;
}
.chart__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.chart__subtitle {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 2rem;
}
.bar-chart {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 0.5rem;
}
.bar-group__bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  width: 100%;
  justify-content: center;
}
.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: opacity var(--ease);
}
.bar:hover .bar__label { opacity: 1; }
.bar__label {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--text-dim);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}
.bar--a { background: rgba(255, 0, 110, 0.22); }
.bar--b { background: rgba(255, 0, 110, 0.55); }
.bar--c { background: var(--rosa); }
.bar-group__label {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.04em;
}
.chart__legend {
  display: flex;
  gap: 1.5rem;
  font-size: 0.73rem;
  color: var(--text-dim);
}
.chart__legend span { display: flex; align-items: center; gap: 0.4rem; }
.legend-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 2px;
}
.legend-dot--a { background: rgba(255, 0, 110, 0.22); }
.legend-dot--b { background: rgba(255, 0, 110, 0.55); }
.legend-dot--c { background: var(--rosa); }

/* ── 11. Services Section ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
  border-color: rgba(255, 0, 110, 0.2);
}
.service-card--featured {
  background: var(--dark-2);
  border-color: transparent;
  color: var(--white);
}
.service-card--featured:hover {
  box-shadow: 0 22px 55px rgba(255, 0, 110, 0.18);
  border-color: rgba(255, 0, 110, 0.3);
}
.service-card__badge {
  display: inline-block;
  background: var(--rosa);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.service-card__icon {
  color: var(--rosa);
  margin-bottom: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 110, 0.08);
  border-radius: var(--radius-sm);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.service-card--featured h3 { color: var(--white); }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-card--featured .service-list li { color: rgba(255, 255, 255, 0.6); }
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--rosa);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── 12. Packages Section ──────────────────────────────────────── */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}
.pack-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: border-color var(--ease);
}
.pack-card:hover { border-color: rgba(255, 0, 110, 0.4); }
.pack-card--featured {
  background: rgba(255, 0, 110, 0.06);
  border-color: rgba(255, 0, 110, 0.3);
}
.pack-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rosa);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pack-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.pack-card__volume {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vol-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--rosa);
  line-height: 1;
}
.vol-text {
  display: flex;
  flex-direction: column;
  font-size: 0.73rem;
  color: var(--text-dim);
  line-height: 1.35;
}
.vol-sep {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 300;
  padding: 0 0.25rem;
}
.pack-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pack-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.pack-list li::before {
  content: '✓';
  color: var(--rosa);
  font-weight: 700;
  font-size: 0.78rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.packs-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-faint);
  max-width: 580px;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}
.packs-note a { color: var(--rosa); }
.packs-note a:hover { text-decoration: underline; }

/* ── 13. Process Section ───────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.process-card {
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rosa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.process-card:hover::before { transform: scaleX(1); }
.process-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--rosa);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 0.75rem;
}
.process-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 14. Portfolio Section ─────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.portfolio-item { border-radius: var(--radius-sm); overflow: hidden; }
.portfolio-item--tall { grid-row: span 2; }
.portfolio-item--wide { grid-column: span 2; }

.p-placeholder {
  width: 100%; height: 100%;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease);
  cursor: default;
}
.p-placeholder:hover { transform: scale(1.015); }
.p-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 0, 110, 0.1) 0%, transparent 55%);
}
.p-placeholder--1 { background: var(--dark-3); }
.p-placeholder--2 { background: #222222; }
.p-placeholder--3 { background: #1f1f1f; }
.p-placeholder--3::before { background: linear-gradient(145deg, rgba(193, 245, 47, 0.12) 0%, transparent 55%); }
.p-placeholder--4 { background: #1a1a1a; }
.p-placeholder--4::before { background: linear-gradient(145deg, rgba(58, 134, 255, 0.1) 0%, transparent 55%); }
.p-placeholder--5 { background: #202020; }

.p-placeholder .p-label {
  position: relative;
  z-index: 1;
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}
.p-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  z-index: 0;
}

/* ── 15. How to Start Section ──────────────────────────────────── */
.timeline-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3.5rem;
}
.timeline-item {
  flex: 1;
  text-align: center;
  padding: 0 1.25rem;
}
.timeline-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rosa) 0%, rgba(255, 0, 110, 0.15) 100%);
  margin-top: 2.625rem;
}
.timeline-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--rosa);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px var(--rosa-glow);
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 0.5rem;
}
.timeline-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.comecar__cta { text-align: center; }

/* ── 16. Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__logo span { color: var(--rosa); }
.footer__brand > p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: 2rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: all var(--ease);
}
.social-link:hover {
  border-color: var(--rosa);
  color: var(--rosa);
  background: rgba(255, 0, 110, 0.08);
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
}
.contact-item {
  margin-bottom: 1.25rem;
}
.contact-item__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.2rem;
}
.contact-item__value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--ease);
}
.contact-item__value:hover { color: var(--rosa); }
.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--ease);
}
.footer__links-list a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ── 17. Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .split-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .split-grid .section__title { text-align: center; }
  .hero__inner         { grid-template-columns: 1fr; }
  .hero__visual        { display: none; }
}
@media (max-width: 900px) {
  .problem-grid        { grid-template-columns: repeat(2, 1fr); }
  .services-grid       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process-grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__top         { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root {
    --section-v: 64px;
    --pad: 1.25rem;
  }
  /* Mobile nav */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 6, 8, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 250;
  }
  .nav__links.nav--open { display: flex; }
  .nav__links > li > a { font-size: 1.2rem; color: var(--white); }
  .hamburger { display: flex; }

  .hero__title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .section__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  .packs-grid          { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 2rem; }
  .portfolio-grid      { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-item--tall { grid-row: auto; }
  .portfolio-item--wide { grid-column: auto; }

  .timeline-wrap       { flex-direction: column; align-items: center; gap: 0; }
  .timeline-connector  { width: 2px; height: 36px; background: linear-gradient(180deg, var(--rosa) 0%, rgba(255,0,110,0.12) 100%); margin: 0; }
  .timeline-item       { max-width: 340px; }

  .footer__top         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom      { flex-direction: column; align-items: flex-start; }
  .problem-grid        { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__actions       { flex-direction: column; }
  .hero__actions .btn  { width: 100%; }
  .portfolio-grid      { grid-template-columns: 1fr; }
}
