:root {
  --bg: #f4f0e8;
  --bg-2: #ebe4d8;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --muted: #6b6560;
  --gold: #b5995e;
  --gold-deep: #8f7340;
  --gold-soft: rgba(181, 153, 94, 0.18);
  --line: rgba(17, 17, 17, 0.12);
  --panel: #fffcf7;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  --radius: 14px;
  --font-serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --max: 1080px;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Fondo de estudio: SVG real + grano (bien visible) */
.stage-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #efe8dc;
}

.stage-art {
  position: absolute;
  inset: 0;
  background:
    url("./assets/brand/fondo-estudio.svg") center / cover no-repeat,
    radial-gradient(ellipse 60% 45% at 15% 10%, rgba(196, 166, 106, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 15%, rgba(143, 115, 64, 0.22), transparent 50%),
    linear-gradient(165deg, #faf6ef 0%, #efe8dc 45%, #e4d9c8 100%);
}

.stage-grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.stage-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.25) 0%, transparent 28%, transparent 70%, rgba(228, 217, 200, 0.35) 100%);
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 48px;
}

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(181, 153, 94, 0.22);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 239, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 2px 0;
  text-align: left;
}

.brand .logo-mark {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 12px 24px rgba(17, 17, 17, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  background: #fffcf7;
}

.brand-word {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.brand-word strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink);
}

.brand-word span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-left: 8px;
}

.nav button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 999px;
}

.nav button:hover,
.nav button.active {
  color: var(--ink);
  background: var(--gold-soft);
}

.spacer {
  flex: 1;
}

.pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.pill,
.btn-ghost {
  color: var(--ink);
  border-color: rgba(181, 153, 94, 0.65);
  background: linear-gradient(180deg, #fffcf8 0%, #f3ebe0 100%);
  box-shadow:
    0 8px 18px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -2px 4px rgba(143, 115, 64, 0.12) inset;
}

.pill:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #fffefb 0%, #efe4d4 100%);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow:
    0 12px 24px rgba(17, 17, 17, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -2px 5px rgba(143, 115, 64, 0.16) inset;
}

.pill:active,
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #faf8f4;
  border-color: #1a1a1a;
  background: linear-gradient(180deg, #2c2c2c 0%, #111111 55%, #0a0a0a 100%);
  box-shadow:
    0 12px 28px rgba(17, 17, 17, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -3px 8px rgba(0, 0, 0, 0.45) inset;
}

.btn-primary:hover {
  color: #fff;
  border-color: #7a6236;
  background: linear-gradient(180deg, #c4a66a 0%, #8f7340 55%, #7a6236 100%);
  box-shadow:
    0 14px 30px rgba(143, 115, 64, 0.35),
    0 1px 0 rgba(255, 245, 220, 0.35) inset,
    0 -3px 8px rgba(80, 55, 20, 0.35) inset;
}

.hero {
  padding: 64px 0 28px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero h1,
.section-head h2,
.page-card h2,
.cta-band h2,
.price-num {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.08;
}

.hero-lead {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.hero-copy {
  margin: 0 auto 28px;
  max-width: 34em;
  color: var(--muted);
  line-height: 1.65;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
  border: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.section {
  padding: 36px 0 8px;
}

.section.hidden,
.hidden {
  display: none !important;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0 0 6px;
  font-size: 2rem;
}

.section-head p,
.muted {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.card-grid,
.demo-grid,
.price-grid {
  display: grid;
  gap: 14px;
}

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

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

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

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

.card,
.page-card,
.demo-card {
  background: linear-gradient(180deg, #fffcf8 0%, #f7f1e8 100%);
  border: 1px solid rgba(181, 153, 94, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow:
    0 18px 40px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -1px 0 rgba(143, 115, 64, 0.08) inset;
}

.card h3,
.demo-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.card p,
.demo-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.demo-frame {
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 10px;
  background: #1a1814;
  min-height: 220px;
}

.demo-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
}

.demo-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.demo-url {
  margin-left: 8px;
  flex: 1;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(243, 239, 232, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-body {
  padding: 12px 14px 16px;
  color: #f3efe8;
}

.demo-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: rgba(243, 239, 232, 0.55);
}

.demo-nav strong {
  margin-right: auto;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
}

.demo-hero {
  margin-bottom: 12px;
}

.demo-k {
  margin: 0 0 6px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.demo-body h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.25;
}

.demo-body p {
  margin: 0 0 10px;
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.85rem;
}

.demo-cta {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1510;
  font-size: 0.72rem;
  font-weight: 600;
}

.demo-tiles,
.demo-gallery,
.demo-list {
  display: grid;
  gap: 6px;
}

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

.demo-tiles i,
.demo-gallery i,
.demo-list i {
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-tiles i {
  height: 36px;
}

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

.demo-gallery i {
  height: 42px;
}

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

.demo-list i {
  height: 14px;
}

.demo-tag {
  margin: 0 0 4px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.demo-bar {
  background: linear-gradient(145deg, #2a241c, #151310);
}
.demo-taller {
  background: linear-gradient(145deg, #1f2428, #121518);
}
.demo-studio {
  background: linear-gradient(145deg, #2a1f24, #151014);
}

.steps .card h3 {
  color: var(--gold-deep);
}

.promise-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 18px 0 4px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(181, 153, 94, 0.55);
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, rgba(181, 153, 94, 0.18), transparent 60%),
    #fffcf8;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}

.promise-pill strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.promise-pill span {
  font-size: 0.88rem;
  color: var(--muted);
}

.slots-line {
  margin: 14px 0 0;
  color: var(--gold-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  color: var(--gold-deep);
  white-space: nowrap;
}

.portal-showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.portal-mock {
  background: linear-gradient(180deg, #fffcf8, #f3ebe0);
  border: 1px solid rgba(181, 153, 94, 0.35);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.1);
}

.portal-mock-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.portal-mock-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f5e6c8, #b5995e 55%, #3a2f1c);
  flex-shrink: 0;
}

.portal-mock-top strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.portal-mock-top small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-mock-top .badge {
  margin-left: auto;
}

.portal-mock-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
}

.portal-mock-card.wa {
  border-color: rgba(34, 197, 94, 0.35);
}

.portal-mock-card.dim {
  opacity: 0.85;
}

.portal-mock-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.portal-mock-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.portal-mock-card em {
  font-style: normal;
  color: var(--gold-deep);
  font-weight: 600;
}

.portal-mock-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.portal-mock-track {
  display: flex;
  gap: 6px;
  margin: 8px 0;
}

.portal-mock-track i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
}

.portal-mock-track i.on {
  border-color: var(--gold-deep);
  background: var(--gold);
}

.portal-mock-link {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.portal-mock-input {
  display: block;
  height: 28px;
  margin-top: 8px;
  border-radius: 8px;
  background: #f3efe8;
  border: 1px solid var(--line);
}

.quiz.card {
  padding: 26px;
}

.quiz-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quiz-opt {
  appearance: none;
  border: 1px solid rgba(181, 153, 94, 0.35);
  background: #fffcf8;
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease,
    background 0.15s ease;
}

.quiz-opt:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  background: #fff;
}

.quiz-result-price {
  margin: 8px 0 16px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.demo-card .btn.sm {
  margin-top: 12px;
  width: 100%;
}

.btn.sm {
  padding: 8px 14px;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .portal-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.cta-band {
  text-align: center;
  margin: 28px 0 8px;
  padding: 36px 24px;
  border: 1px solid rgba(181, 153, 94, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(181, 153, 94, 0.18), transparent 60%),
    linear-gradient(180deg, #fffcf8, #f0e8db);
  box-shadow:
    0 22px 48px rgba(17, 17, 17, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.cta-band .muted {
  margin-bottom: 18px;
}

.page-card h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.page-card h3 {
  margin: 22px 0 8px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.checklist {
  margin: 0 0 8px;
  padding-left: 1.15em;
  color: var(--ink-soft);
  line-height: 1.7;
}

.muted-list {
  color: var(--muted);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card .btn {
  margin-top: auto;
}

.price-num {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1;
}

.price-num span {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card-pro {
  border-color: var(--gold);
  box-shadow: 0 18px 48px rgba(181, 153, 94, 0.16);
}

/* Pack builder */
.builder {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 100px;
}

.builder-step {
  margin: 8px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

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

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

.pack-option,
.addon-option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 20px;
  cursor: pointer;
  background: linear-gradient(180deg, #fffcf8 0%, #f7f1e8 100%);
  border: 1px solid rgba(181, 153, 94, 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 14px 32px rgba(17, 17, 17, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.pack-option:hover,
.addon-option:hover {
  border-color: rgba(181, 153, 94, 0.55);
  transform: translateY(-2px);
}

.pack-option.is-selected,
.addon-option.is-selected {
  border-color: var(--gold);
  box-shadow:
    0 18px 40px rgba(181, 153, 94, 0.18),
    0 0 0 1px rgba(181, 153, 94, 0.35);
}

.pack-option.is-pro.is-selected {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(181, 153, 94, 0.14), transparent 55%),
    linear-gradient(180deg, #fffcf8 0%, #f7f1e8 100%);
}

.pack-option input,
.addon-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pack-option-head .kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pack-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: #faf8f4;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.pack-blurb {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.addon-price {
  font-size: 2rem;
}

.builder-exclude {
  margin: 0;
}

.builder-exclude h3 {
  margin-top: 0;
}

.builder-bar {
  position: sticky;
  bottom: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(181, 153, 94, 0.45);
  background: rgba(255, 252, 248, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.builder-summary .kicker {
  margin-bottom: 4px;
}

.builder-lines {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.4;
  font-size: 0.95rem;
}

.builder-once {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.builder-total .muted {
  text-align: right;
  margin-top: 4px;
}

.selection-box {
  margin: 18px 0;
}

.selection-box .kicker {
  margin-bottom: 6px;
}

/* Comparador mercado */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(181, 153, 94, 0.28);
  background: linear-gradient(180deg, #fffcf8 0%, #f7f1e8 100%);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  background: rgba(181, 153, 94, 0.08);
  white-space: nowrap;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tr.is-lumina {
  background: rgba(181, 153, 94, 0.12);
}

.compare-table tr.is-lumina td {
  border-bottom-color: rgba(181, 153, 94, 0.28);
}

.compare-price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}

.compare-table .linkish {
  display: inline-block;
  margin-left: 8px;
  padding: 0;
  border: none;
  background: none;
  color: var(--gold-deep);
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

.compare-name {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(181, 153, 94, 0.45);
  text-underline-offset: 2px;
}

.compare-name:hover {
  color: var(--gold-deep);
}

.compare-host {
  margin-top: 3px;
  font-size: 0.75rem;
  color: var(--muted);
}

.compare-disclaimer {
  margin-top: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-weight: 400;
}

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

.faq-item p {
  margin: 10px 0 4px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.small {
  font-size: 0.88rem;
}

.footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-row img,
.footer-logo-only {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.14);
  background: #fffcf7;
  display: block;
  margin-bottom: 12px;
  object-fit: cover;
}

.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.55;
}

.footer-wa,
.footer-brand a {
  display: inline-block;
  margin-top: 6px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
}

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

.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-legal-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  color: #faf8f4;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(180deg, #2c2c2c, #111);
  box-shadow:
    0 14px 30px rgba(17, 17, 17, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.wa-float:hover {
  color: #fff;
  background: linear-gradient(180deg, #c4a66a, #8f7340);
  border-color: #7a6236;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #faf8f4;
  padding: 10px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .card-grid,
  .demo-grid,
  .price-grid,
  .price-grid-2,
  .pack-grid,
  .addon-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .builder-bar {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .builder-once,
  .builder-total .muted {
    text-align: left;
  }

  .builder-bar .btn {
    width: 100%;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .brand .logo-header {
    height: 56px;
  }

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

  .brand-word strong {
    font-size: 1.55rem;
  }

  .brand-word span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
}
