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

:root {
  --white:      #FDFCFB;
  --off-white:  #F7F4F1;
  --rose-light: #FEF5EF;
  --warm-light: #F0E8E2;
  --dark:       #271D18;
  --ink:        #1A1614;
  --muted:      #7A736D;
  --border:     #E8E3DD;
  --rose:       #C99B85;
  --rose-dark:  #B38570;
  --brown:      #796B5F;
}

html { scroll-behavior: smooth; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stats-grid .fade-in { transform: none; }
.stats-grid .fade-in.is-visible { transform: none; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-photo-wrap { animation: heroIn .9s cubic-bezier(.16,1,.3,1) both .05s; }
.hero-eyebrow    { animation: heroIn .65s cubic-bezier(.16,1,.3,1) both .15s; }
.hero h1         { animation: heroIn .75s cubic-bezier(.16,1,.3,1) both .3s; }
.hero-desc       { animation: heroIn .75s cubic-bezier(.16,1,.3,1) both .5s; }
.hero-btns       { animation: heroIn .65s cubic-bezier(.16,1,.3,1) both .7s; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(253,252,251,.96);
  backdrop-filter: blur(10px);
  padding: 1.1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1rem; font-weight: 700;
  color: var(--ink); letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
}
.nav-logo em { font-style: normal; color: var(--rose); }
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-link {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brown); text-decoration: none;
  transition: color .2s;
}
.nav-link:hover,
.nav-link.active { color: var(--rose); }
.nav-cta {
  font-size: .7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--rose); color: var(--white);
  border: none; padding: .65rem 1.6rem;
  border-radius: 50px; cursor: pointer;
  text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--rose-dark); }

/* ── PAGE HERO (páginas internas) ────────────── */
.page-hero {
  background: var(--dark);
  padding: 10rem 3rem 6rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201,155,133,.14) 0%, transparent 62%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero .hero-eyebrow {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .9rem;
}
.page-hero .hero-eyebrow::before {
  content: ''; width: 32px; height: 2px;
  background: var(--rose); display: block; flex-shrink: 0;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white); letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: normal; color: var(--rose); }
.page-hero p {
  font-size: .93rem; color: rgba(253,252,251,.5);
  line-height: 1.85; max-width: 520px;
}

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: var(--rose-light);
  padding: 7rem 3rem;
  text-align: center;
}
.cta-section .section-title-wrap { display: inline-block; }
.cta-section .section-title-wrap::before { margin-left: auto; margin-right: auto; }
.cta-section .section-sub {
  max-width: 500px; margin-left: auto; margin-right: auto; text-align: center;
}
.cta-section .btn-primary { display: inline-block; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  background: linear-gradient(to right,
    rgb(17,12,10)  0%,
    rgb(19,14,11)  5%,
    rgb(21,15,13) 10%,
    rgb(23,17,14) 15%,
    rgb(26,18,16) 20%,
    rgb(29,21,18) 25%,
    rgb(33,24,20) 30%,
    rgb(36,27,22) 35%,
    rgb(39,29,24) 40%,
    rgb(43,30,24) 45%,
    rgb(47,32,24) 50%,
    rgb(51,33,24) 55%,
    rgb(55,35,24) 60%,
    rgb(58,36,24) 65%,
    rgb(63,40,27) 70%,
    rgb(68,43,29) 75%,
    rgb(73,47,32) 80%,
    rgb(78,50,34) 85%,
    rgb(83,54,36) 90%,
    rgb(88,58,38) 95%,
    rgb(92,61,40) 100%);
  display: flex; align-items: flex-end;
  min-height: 100vh;
  padding: 7rem 0 6rem 3rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201,155,133,.14) 0%, transparent 62%);
  pointer-events: none;
}
.hero-inner {
  max-width: clamp(29rem, 52vw, 55rem);
  position: relative; z-index: 2;
}
.hero-content { max-width: 820px; padding-left: 2rem; }
.hero-title-block { width: 100%; }
.hero-eyebrow {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 2rem;
  display: flex; align-items: center; gap: .9rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px;
  background: var(--rose); display: block; flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 2rem;
  letter-spacing: -1px;
}
.hero h1 em { font-style: normal; color: var(--rose); }
.hero-desc {
  font-size: .93rem; color: rgba(253,252,251,.5);
  line-height: 1.85; margin-bottom: 2.8rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  font-size: .7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--rose); color: var(--white);
  border: none; padding: .95rem 2.4rem;
  border-radius: 50px; cursor: pointer;
  text-decoration: none; transition: background .2s, transform .18s;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-outline {
  font-size: .7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: transparent; color: rgba(253,252,251,.6);
  border: 1px solid rgba(253,252,251,.22);
  padding: .95rem 2.4rem; border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: rgba(253,252,251,.6); color: var(--white); }

/* Hero photo frame */
.hero-photo-wrap {
  position: absolute;
  right: 0; bottom: 0;
  width: 48%;
  z-index: 1;
}
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right,
    #302018 0%,
    rgba(48,32,24,.97) 4%,
    rgba(48,32,24,.91) 8%,
    rgba(48,32,24,.82) 12%,
    rgba(48,32,24,.71) 16%,
    rgba(48,32,24,.58) 20%,
    rgba(48,32,24,.45) 24%,
    rgba(48,32,24,.33) 28%,
    rgba(48,32,24,.22) 32%,
    rgba(48,32,24,.12) 36%,
    rgba(48,32,24,.05) 40%,
    rgba(48,32,24,.01) 43%,
    transparent 46%);
}

/* ── STATS ────────────────────────────────────── */
.stats { background: var(--warm-light); padding: 1.5rem 3rem; }
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-item { text-align: center; padding: .9rem 1rem; }
.stat-item::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: var(--rose);
  margin: 0 auto .7rem;
}
.stat-num {
  font-size: 1.1rem;
  font-weight: 700; color: var(--rose);
  line-height: 1; letter-spacing: -.3px;
}
.stat-label {
  font-size: .68rem; font-weight: 500;
  color: var(--brown); margin-top: .4rem;
  letter-spacing: .8px; text-transform: uppercase; line-height: 1.4;
}

/* ── SHARED ───────────────────────────────────── */
section { padding: 8rem 3rem; }
.container { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--brown); margin-bottom: 1rem;
}

.section-title-wrap { display: block; margin-bottom: 1.6rem; }
.section-title-wrap::before {
  content: '';
  display: block; width: 40px; height: 3px;
  background: var(--rose); margin-bottom: 1.1rem;
}
.section-title {
  font-weight: 800;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  display: block; color: var(--ink);
  line-height: 1.2; letter-spacing: -.5px;
}
.section-title .accent { color: var(--rose); }

.section-sub {
  font-size: .88rem; color: var(--muted);
  max-width: 440px; line-height: 1.85;
  margin-bottom: 4rem;
}

/* ── SERVICES ─────────────────────────────────── */
.services { background: var(--white); }
.services-header {
  margin-bottom: 4rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  padding: 2.6rem 2.4rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--rose);
  transition: transform .25s, box-shadow .25s, background .2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(39,29,24,.1);
  background: var(--white);
}
.service-num {
  font-size: .62rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--brown); margin-bottom: 1.4rem;
}
.service-card h3 {
  font-size: 1.03rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
  display: inline-block;
  padding-bottom: .45em;
  border-bottom: 2px solid var(--rose);
  margin-bottom: 1.1rem;
}
.service-card p {
  font-size: .83rem; color: var(--muted); line-height: 1.85;
}

/* ── EXTRA SERVICES ──────────────────────────── */
.extra-services { background: var(--dark); padding: 8rem 3rem; }
.extra-services .eyebrow { color: rgba(201,155,133,.75); }
.extra-services .section-title-wrap::before { background: var(--rose); }
.extra-services .section-title { color: var(--white); }
.extra-services .section-sub { color: rgba(253,252,251,.65); max-width: 540px; }
.extra-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.extra-card {
  background: rgba(253,252,251,.04);
  border: 1px solid rgba(253,252,251,.08);
  border-top: 3px solid var(--rose);
  padding: 3rem 2.8rem;
  transition: background .25s;
}
.extra-card:hover { background: rgba(253,252,251,.08); }
.extra-card-label {
  font-size: 1.55rem; font-weight: 800;
  letter-spacing: -0.5px; text-transform: none;
  color: var(--white); line-height: 1.15;
  display: inline-block;
  padding-bottom: .35em; border-bottom: 2px solid var(--rose);
  margin-bottom: .9rem;
}
.extra-card h3 {
  font-size: .75rem; font-weight: 500;
  color: rgba(253,252,251,.65); line-height: 1.55;
  display: block; padding-bottom: 0;
  border-bottom: none; margin-bottom: 1.8rem;
  letter-spacing: .2px;
}
.extra-card > p {
  font-size: .85rem; color: rgba(253,252,251,.65);
  line-height: 1.85; margin-bottom: 2rem;
}
.extra-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
}
.extra-list li {
  font-size: .84rem; color: rgba(253,252,251,.8);
  padding: .9rem 0;
  border-bottom: 1px solid rgba(253,252,251,.07);
  display: flex; align-items: center; gap: .9rem; line-height: 1.5;
}
.extra-list li:last-child { border-bottom: none; }
.extra-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--rose); border-radius: 50%; flex-shrink: 0;
}
@media (max-width: 768px) { .extra-grid { grid-template-columns: 1fr; } }

/* ── HELP ─────────────────────────────────────── */
.help { background: var(--warm-light); }
.help-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: stretch;
  margin-top: 2rem;
}
.help-inner > div:first-child {
  display: flex; flex-direction: column;
}
.help-inner > div:first-child .section-sub { margin-bottom: 2rem; }
.help-list { flex: 1; justify-content: space-between; }
.help-panel {
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.help-list {
  list-style: disc; padding-left: 1.3rem;
  display: flex; flex-direction: column;
}
.help-list li {
  font-size: .88rem; line-height: 1.8;
  color: var(--ink); padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}
.help-list li:first-child { border-top: 1px solid var(--border); }
.help-list li::marker { color: var(--rose); font-size: 1.1em; }
.help-list li strong { font-weight: 700; }
.help-panel {
  background: var(--dark); padding: 2.2rem 2.5rem;
  position: relative; overflow: hidden;
}
.panel-author {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; text-align: center;
  margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(253,252,251,.1);
  position: relative; z-index: 1;
}
.panel-author-photo {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; object-position: center 30%;
  border: 2px solid var(--rose); flex-shrink: 0; display: block;
  box-shadow: 0 0 0 4px rgba(201,155,133,.15);
}
.panel-author-name {
  font-size: .95rem; font-weight: 700;
  color: var(--white); margin-bottom: .1rem;
}
.panel-author-role {
  font-size: .7rem; color: rgba(201,155,133,.8); letter-spacing: .3px;
}
.help-panel-quote {
  font-size: 1.05rem; font-weight: 600;
  color: var(--white); line-height: 1.65;
  margin-bottom: 1.2rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(253,252,251,.1);
  position: relative; z-index: 1;
}
.panel-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid rgba(253,252,251,.07);
  position: relative; z-index: 1;
}
.panel-item:last-child { border-bottom: none; }
.panel-dot { width: 6px; height: 6px; background: var(--rose); flex-shrink: 0; border-radius: 50%; }
.panel-item-text {
  font-size: .82rem; color: rgba(253,252,251,.55); line-height: 1.5;
}

/* ── PROCESS ──────────────────────────────────── */
.process { background: var(--rose-light); padding: 8rem 3rem; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.step {
  background: var(--white); padding: 2.8rem 2.4rem;
  border: 1px solid var(--border); border-top: 3px solid var(--rose);
  transition: box-shadow .25s;
}
.step:hover {
  box-shadow: 0 8px 30px rgba(39,29,24,.08);
}
.step:hover .step-num {
  opacity: 1;
  transform: scale(1.08);
}
.step-num {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800; color: var(--rose);
  line-height: 1; letter-spacing: -2px;
  margin-bottom: 1.8rem; opacity: .7;
  transition: opacity .25s, transform .25s;
  display: inline-block;
}
.step h3 {
  font-size: 1rem; font-weight: 700; color: var(--ink);
  line-height: 1.3; display: inline-block;
  padding-bottom: .4em; border-bottom: 2px solid var(--rose);
  margin-bottom: .9rem;
}
.step p { font-size: .8rem; color: var(--muted); line-height: 1.85; margin-top: .4rem; }

/* ── INSIGHTS ────────────────────────────────── */
.insights { background: var(--white); padding: 8rem 3rem; }
.insights .eyebrow { color: var(--brown); }
.insights .section-title-wrap::before { background: var(--rose); }
.insights .section-title { color: var(--ink); }
.insights .section-sub { color: var(--muted); max-width: 560px; }
.insights-grid {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
}
.insight-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--rose);
  overflow: hidden;
  background: var(--warm-light);
  transition: box-shadow .25s;
}
.insight-card:hover { box-shadow: 0 4px 20px rgba(39,29,24,.08); }
.insight-summary {
  list-style: none;
  padding: 2rem 2.5rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 1.8rem;
  align-items: center;
  transition: background .2s;
}
.insight-summary::-webkit-details-marker { display: none; }
.insight-summary::marker { display: none; }
.insight-summary:hover { background: #ede5de; cursor: pointer; }
.insight-card.is-open .insight-summary {
  background: #ede5de;
  border-bottom: 1px solid var(--border);
}
.insight-num {
  font-size: 2.2rem; font-weight: 800;
  color: var(--rose); line-height: 1;
  letter-spacing: -1px; opacity: .45;
  transition: opacity .25s;
}
.insight-card.is-open .insight-num,
.insight-card:hover .insight-num { opacity: 1; }
.insight-summary-content {
  display: flex; flex-direction: column; gap: .5rem;
}
.insight-label {
  font-size: .62rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rose-dark);
}
.insight-signal-text {
  font-size: .95rem; font-weight: 600; color: var(--ink);
  line-height: 1.5; margin: 0;
}
.insight-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .9rem;
  transition: background .2s;
}
.insight-toggle-icon {
  display: inline-block;
  transition: transform .3s;
}
.insight-card.is-open .insight-toggle-icon { transform: rotate(180deg); }
.insight-card.is-open .insight-toggle { background: var(--rose-dark); }
.insight-action-panel {
  padding: 0 2.5rem 0 calc(2.5rem + 2.2rem*1.2 + 1.8rem);
  display: flex; flex-direction: column; gap: .6rem;
  background: var(--white);
  border-left: 3px solid var(--rose);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .65s cubic-bezier(0.16,1,0.3,1),
              opacity .5s cubic-bezier(0.16,1,0.3,1),
              padding .65s cubic-bezier(0.16,1,0.3,1);
}
.insight-card.is-open .insight-action-panel {
  max-height: 300px;
  opacity: 1;
  padding: 1.8rem 2.5rem 1.8rem calc(2.5rem + 2.2rem*1.2 + 1.8rem);
}
.insight-action-text {
  font-size: .88rem; color: var(--muted); line-height: 1.8; margin: 0;
}

/* ── QUIZ / CONTACTO ─────────────────────────── */
#contacto { background: var(--off-white); }
.quiz-outer {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: start;
}
.quiz-intro .section-sub { margin-bottom: 0; }
.quiz-card {
  background: var(--white); padding: 3rem 3.5rem;
  border: 1px solid var(--border); border-top: 3px solid var(--rose);
}
.quiz-progress-track {
  height: 3px; background: var(--border);
  margin-bottom: 2.8rem; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%; background: var(--rose);
  transition: width .45s ease;
}
.quiz-step-label {
  font-size: .6rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brown); margin-bottom: 1rem;
}
.quiz-question {
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); line-height: 1.4; margin-bottom: 1.8rem;
}
.quiz-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; margin-bottom: 2rem;
}
.quiz-option {
  border: 1.5px solid var(--border); padding: 1rem 1.1rem;
  cursor: pointer; font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 500; color: var(--ink);
  background: var(--white); text-align: left; line-height: 1.4;
  transition: border-color .18s, background .18s; display: block; width: 100%;
}
.quiz-option:hover { border-color: var(--rose); background: var(--rose-light); }
.quiz-option.selected { border-color: var(--rose); background: var(--rose-light); font-weight: 600; }
.quiz-btn-row { display: flex; gap: .8rem; justify-content: flex-end; }
.quiz-btn-back {
  font-size: .65rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  background: transparent; color: var(--muted); border: 1px solid var(--border);
  padding: .7rem 1.5rem; border-radius: 50px; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: color .18s, border-color .18s;
}
.quiz-btn-back:hover { color: var(--ink); border-color: var(--brown); }
.quiz-btn-next {
  font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--rose); color: var(--white); border: none;
  padding: .7rem 1.8rem; border-radius: 50px; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: background .18s, transform .18s;
}
.quiz-btn-next:hover { background: var(--rose-dark); transform: translateY(-1px); }
.quiz-btn-next:disabled { opacity: .35; cursor: not-allowed; transform: none; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quiz-summary {
  border-left: 3px solid var(--rose); background: var(--rose-light);
  padding: 1.3rem 1.8rem; margin-bottom: 2rem;
  font-size: .85rem; color: var(--ink); line-height: 1.75;
}
.quiz-summary strong { color: var(--rose-dark); }
.quiz-form-label {
  font-size: .6rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brown);
  margin-bottom: 1.5rem; display: block;
}
.form-group { margin-bottom: 1.8rem; }
.form-group label {
  display: block; font-size: .65rem; font-weight: 600;
  color: var(--muted); margin-bottom: .65rem;
  letter-spacing: 1.8px; text-transform: uppercase;
}
.form-group input {
  width: 100%; padding: .85rem 0;
  border: none; border-bottom: 1px solid var(--border);
  border-radius: 0; font-family: 'Montserrat', sans-serif;
  font-size: .9rem; color: var(--ink);
  background: transparent; outline: none; transition: border-color .2s;
}
.form-group input:focus { border-bottom-color: var(--rose); }
.form-group input::placeholder { color: #CFC9C3; }
.form-submit {
  width: 100%; margin-top: 1rem;
  background: var(--rose); color: var(--white);
  border: none; padding: 1.1rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .18s;
}
.form-submit:hover { background: var(--rose-dark); transform: translateY(-1px); }
.form-disclaimer {
  text-align: center; font-size: .68rem;
  color: #C0BAB4; margin-top: 1.2rem; line-height: 1.6;
}
.form-consent {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1.6rem;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: .15rem; accent-color: var(--rose);
  cursor: pointer;
}
.form-consent label {
  font-size: .72rem; color: var(--muted);
  line-height: 1.6; cursor: pointer;
  text-transform: none; letter-spacing: 0; font-weight: 400;
}
.form-consent label a { color: var(--rose-dark); text-decoration: underline; }
.quiz-consult-info {
  background: var(--warm-light); border: 1px solid var(--border);
  padding: 1.2rem 1.5rem; margin-bottom: 2rem;
}
.quiz-consult-title {
  font-size: .6rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--brown); margin-bottom: .9rem;
}
.quiz-consult-list { list-style: none; padding: 0; margin: 0; }
.quiz-consult-list li {
  font-size: .8rem; color: var(--ink); line-height: 1.6;
  padding: .55rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: .75rem;
}
.quiz-consult-list li:last-child { border-bottom: none; }
.quiz-consult-list li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--rose); border-radius: 50%;
  flex-shrink: 0; margin-top: .5rem;
}
.form-success-mark {
  width: 44px; height: 44px; background: var(--rose);
  border-radius: 50%; margin: 0 auto 1.8rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; font-weight: 700;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--dark); padding: 3.5rem 3rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
}
.footer-logo {
  font-size: .95rem; font-weight: 700; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: .4rem;
}
.footer-logo em { font-style: normal; color: var(--rose); }
.footer-tagline {
  font-size: .65rem; color: rgba(253,252,251,.3);
  letter-spacing: .8px; text-transform: uppercase;
}
.footer-copy { font-size: .65rem; color: rgba(253,252,251,.2); margin-top: .5rem; }
.footer-right { text-align: right; }
.footer-right a {
  font-size: .75rem; color: rgba(253,252,251,.4);
  text-decoration: none; display: block; line-height: 2.3; transition: color .2s;
}
.footer-right a:hover { color: var(--rose); }

/* ── COOKIE BANNER ───────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
#cookie-banner.hidden { display: none; }
.cookie-text {
  font-size: .78rem; color: rgba(253,252,251,.7);
  line-height: 1.6; margin: 0; flex: 1;
}
.cookie-text a { color: var(--rose); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
#cookie-reject {
  font-size: .75rem; padding: .55rem 1.2rem;
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  color: rgba(253,252,251,.6); cursor: pointer; border-radius: 4px;
  transition: border-color .2s, color .2s;
}
#cookie-reject:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
#cookie-accept {
  font-size: .75rem; padding: .55rem 1.2rem;
  background: var(--rose); border: none;
  color: var(--white); cursor: pointer; border-radius: 4px;
  font-weight: 600; transition: background .2s;
}
#cookie-accept:hover { background: var(--rose-dark); }

/* ── BACK TO TOP ──────────────────────────────── */
#back-to-top {
  position: fixed; right: 1.2rem; bottom: 2rem; z-index: 900;
  width: 42px; height: 42px;
  background: var(--rose); color: var(--white);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(39,29,24,.25);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--rose-dark); }
#back-to-top svg { width: 16px; height: 16px; }

/* ── INSIGHTS INTRO ──────────────────────────── */
.insights-intro {
  margin-bottom: 4rem;
}
.insights-intro .section-sub { margin-bottom: 0; }

/* ── PROCESS LAYOUT ──────────────────────────── */
.process { position: relative; overflow: hidden; }
.process-content {
  max-width: 54%;
}
.process-content .steps-grid { grid-template-columns: repeat(2, 1fr); }
.process-content .section-sub { margin-bottom: 2rem; }
.process-photo-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  overflow: hidden; z-index: 1;
}
.process-photo-wrap::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(to right,
    var(--rose-light) 0%,
    rgba(254,245,239,.92) 10%,
    rgba(254,245,239,.55) 24%,
    rgba(254,245,239,.15) 38%,
    transparent 50%);
}
.process-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}

/* ── HAMBURGER / MOBILE MENU ──────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 52px; right: 1rem; z-index: 99;
  background: rgba(253,252,251,.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-direction: column;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(39,29,24,.12);
  transform: translateY(-8px); opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
  pointer-events: none;
  overflow: hidden;
}
.mobile-menu.is-open {
  transform: translateY(0); opacity: 1;
  pointer-events: auto;
}
.mobile-menu-link {
  font-size: .7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brown); text-decoration: none;
  padding: .9rem 1.4rem;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
  text-align: right;
}
.mobile-menu-link:last-child { border-bottom: none; }
.mobile-menu-link:hover { color: var(--rose); background: var(--rose-light); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .hero-inner { padding: 6.5rem 1.5rem 3rem 1.5rem; }
  .hero-photo-wrap { width: 44%; }
  section { padding: 5.5rem 1.5rem; }
  .stats { padding: 3rem 1.8rem; }
  .process { padding: 5.5rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .help-inner { grid-template-columns: 1fr; gap: 3rem; }
  .quiz-outer { grid-template-columns: 1fr; gap: 3rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .cta-section { padding: 5rem 1.5rem; }
.process-content { max-width: 100%; }
  .process-photo-wrap { position: relative; width: 100%; height: 320px; }
  .process-photo { height: 320px; min-height: unset; }
  .process-content .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  nav { padding: .65rem 1rem; }
  .nav-logo { font-size: .75rem; letter-spacing: 1.5px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-cta { font-size: .55rem; padding: .4rem .9rem; letter-spacing: 1px; margin-left: auto; margin-right: .5rem; }
  .hero {
    position: relative; min-height: 0; padding: 0 0 2rem; display: block; background-color: var(--dark);
    background-image:
      linear-gradient(to bottom,
        transparent 85vw,
        rgba(39,29,24,.02) 89vw,
        rgba(39,29,24,.05) 93vw,
        rgba(39,29,24,.10) 97vw,
        rgba(39,29,24,.17) 101vw,
        rgba(39,29,24,.26) 105vw,
        rgba(39,29,24,.37) 109vw,
        rgba(39,29,24,.49) 113vw,
        rgba(39,29,24,.61) 117vw,
        rgba(39,29,24,.72) 121vw,
        rgba(39,29,24,.82) 125vw,
        rgba(39,29,24,.90) 129vw,
        rgba(39,29,24,.96) 133vw,
        var(--dark) 137vw),
      url('Fotos/FUJI7786.jpg');
    background-size: 100% auto;
    background-position: 70% -130px;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .hero::before { display: none; }
  .hero-photo-wrap { display: none; }
  .hero-inner { display: block; position: static; margin: 0; padding-top: 100vw; }
  .hero-content { max-width: 100%; padding: 0 1.5rem 1rem; }
  .hero-eyebrow { font-size: .6rem; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 1.2rem; }
  .hero-desc { font-size: .85rem; margin-bottom: 1.8rem; max-width: 100%; }
  .hero-btns { margin-top: 2.5rem; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { font-size: .62rem; padding: .75rem 1.6rem; }
  section { padding: 3rem 1.8rem; }
  .services { padding: 3rem 1.8rem; }
  .process { padding: 3rem 1.8rem; }
  .stats { padding: 1.2rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .stat-item { padding: .5rem .4rem; }
  .stat-item::before { margin-bottom: .6rem; }
  .stat-num { font-size: 1rem; }
  .stat-label { font-size: .55rem; margin-top: .3rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.85rem); }
  .section-sub { font-size: .82rem; }
  .services .section-title-wrap { margin-bottom: .6rem; }
  .eyebrow { font-size: .6rem; }
  .services-grid { grid-template-columns: 1fr; gap: .75rem; }
  .service-card { padding: 1.1rem 1rem; }
  .service-card h3 { font-size: .88rem; margin-bottom: .4rem; }
  .service-card p { font-size: .76rem; line-height: 1.6; }
  .service-num { font-size: .55rem; margin-bottom: .4rem; }
  .steps-grid { grid-template-columns: 1fr; gap: .75rem; }
  .process-content .steps-grid { grid-template-columns: 1fr; }
  .process-photo-wrap { display: none; }
  .process {
    background-image: url('Fotos/FUJI7317.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }
  .process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(254, 245, 239, 0.84);
    pointer-events: none;
  }
  .process-content { position: relative; z-index: 1; }
  .step { padding: 1.1rem 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .75rem; }
  .step-num { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 0; flex-shrink: 0; }
  .step h3 { font-size: .88rem; margin-bottom: 0; flex: 1; min-width: 0; }
  .step p { font-size: .76rem; line-height: 1.6; width: 100%; margin-top: .3rem; }
  .insights { padding: 4rem 1.5rem 3rem; }
  .extra-services { padding: 3rem 1.8rem; }
  .insights-grid { gap: 2.5rem; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-summary { padding: 1.2rem 1.5rem; }
  .insight-action-panel { padding: 0 1.5rem; }
  .insight-card.is-open .insight-action-panel { padding: 1.2rem 1.5rem; max-height: 500px; }
  .insight-label { display: none; }
  .insight-signal-text { font-size: .84rem; }
  .insight-toggle { width: 44px; height: 44px; font-size: 1.2rem; }
  .insight-action-text { font-size: .8rem; }
  .extra-grid { gap: 2rem; }
  .extra-card { padding: 1.2rem 1rem; }
  .extra-card-label { font-size: 1rem; }
  .extra-card h3 { font-size: .85rem; }
  .extra-list li { font-size: .74rem; padding: .4rem 0; }
  .section-sub { margin-bottom: 1.8rem; }
  .help-list li { font-size: .82rem; padding: .6rem 0; }
  .help-panel { padding: 2rem 1.5rem; height: auto; }
  .panel-author { gap: .5rem; margin-bottom: 1rem; padding-bottom: 1rem; }
  .panel-author-photo { width: 72px; height: 72px; }
  .help-panel-quote { font-size: .85rem; margin-bottom: 1.2rem; padding-bottom: 1.2rem; }
  .panel-item { padding: .55rem 0; }
  .panel-item-text { font-size: .78rem; }
  footer { grid-template-columns: 1fr; padding: 0; text-align: center; gap: 0; background: linear-gradient(to bottom, #EDE9E6 0%, var(--dark) 55%); }
  .footer-right { text-align: center; order: -1; background: #EDE9E6; padding: 2rem 1.5rem; }
  .footer-right a { color: var(--ink); }
  .footer-right a:hover { color: var(--rose); }
  footer > div:first-child { padding: 2rem 1.5rem; text-align: center; width: 100%; }
  .footer-right a { font-size: .7rem; line-height: 2; }
  .footer-tagline { font-size: .6rem; }
  .footer-copy { font-size: .6rem; }
  .quiz-card { padding: 1.8rem 1.2rem; }
  .quiz-options { grid-template-columns: 1fr; }
  .form-group input { padding: .75rem 1rem; font-size: .85rem; }
  #cookie-banner { flex-direction: column; padding: 1rem 1.2rem; gap: .8rem; }
  .cookie-actions { width: 100%; }
  #cookie-accept, #cookie-reject { flex: 1; width: 100%; padding: .7rem; }
  .page-hero { padding: 7rem 1.5rem 3.5rem; }
  .cta-section { padding: 3.5rem 1.5rem; }
}
