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

:root {
    --bg:           #0C0C0A;
    --bg-card:      #131311;
    --bg-card-2:    #191916;
    --text:         #EDE8DF;
    --text-muted:   #88837A;
    --text-subtle:  #52504C;
    --gold:         #C9A96E;
    --gold-light:   #E8D5A3;
    --gold-dim:     rgba(201,169,110,0.10);
    --gold-dimmer:  rgba(201,169,110,0.05);
    --border:       rgba(201,169,110,0.14);
    --border-mid:   rgba(201,169,110,0.25);
    --border-strong:rgba(201,169,110,0.40);
    --serif:        'Cormorant Garamond', Georgia, serif;
    --sans:         'DM Sans', system-ui, sans-serif;
    /* ── Diagram palette ── */
    --d-amber:      #C4840E;
    --d-amber-l:    #F5A530;
    --d-amber-d:    rgba(196,132,14,0.28);
    --d-green:      #18824E;
    --d-green-l:    #2FD4A0;
    --d-green-d:    rgba(24,130,78,0.25);
    --d-purple:     #4E44C0;
    --d-purple-l:   #8B7FFF;
    --d-purple-d:   rgba(78,68,192,0.28);
    --d-gap:        4px;
    --d-left:       200px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 5rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(12,12,10,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 0.5px solid var(--border);
}
.nav-logo {
    display: inline-flex; align-items: center;
    gap: 0.9rem;
    color: var(--text); text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
}
.nav-logo-brand {
    display: inline-flex; flex-direction: column; align-items: center;
    gap: 0.08rem;
}
.nav-logo-main {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.48em;
    color: var(--text);
    margin-right: -0.48em;
}
.nav-logo-studio {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.58em;
    color: var(--gold);
    margin-right: -0.58em;
}
.nav-logo-by {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.24em;
    color: var(--text-muted);
    margin-right: -0.24em;
    white-space: nowrap;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: 0.75rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-muted);
    text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 0.5px solid var(--border-strong);
    color: var(--gold); text-decoration: none;
    transition: all 0.22s;
}
.nav-cta:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 10rem 5rem 6rem;
    position: relative; overflow: hidden;
}
.hero-orb-1 {
    position: absolute; top: 20%; right: -5%;
    width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.055) 0%, transparent 65%);
    pointer-events: none;
}
.hero-orb-2 {
    position: absolute; bottom: -10%; left: -5%;
    width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.03) 0%, transparent 65%);
    pointer-events: none;
}
.container { max-width: 1140px; margin: 0 auto; width: 100%; }
.hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 7rem; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
}
.hero-eyebrow::before {
    content: ''; display: block;
    width: 2.5rem; height: 0.5px; background: var(--gold); flex-shrink: 0;
}
h1.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.2vw, 4rem);
    font-weight: 300; line-height: 1.09;
    margin-bottom: 2rem;
}
h1.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-body {
    font-size: 0.97rem; color: var(--text-muted);
    line-height: 1.85; max-width: 40ch; margin-bottom: 2.75rem;
}
.btn-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-block; padding: 0.85rem 2rem;
    background: var(--gold); color: var(--bg);
    font-family: var(--sans); font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
    text-decoration: none; transition: background 0.2s; white-space: nowrap;
    border: 0; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
    display: inline-block; padding: 0.85rem 2rem;
    border: 0.5px solid var(--border-mid); color: var(--text-muted);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-pillars { display: flex; flex-direction: column; gap: 0.7rem; }
.pillar-item {
    display: flex; align-items: flex-start; gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--bg-card); border: 0.5px solid var(--border);
    border-left: 2px solid var(--gold); transition: background 0.25s;
}
.pillar-item:hover { background: var(--bg-card-2); }
.pillar-num {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
    color: var(--gold); line-height: 1; flex-shrink: 0; margin-top: -2px;
}
.pillar-text-title { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: 0.2rem; }
.pillar-text-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════
   PROBLEM STRIP
══════════════════════════════════════ */
.problem-strip {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: var(--bg-card); padding: 4.5rem 5rem;
}
.problem-strip p {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.2vw, 1.95rem);
    font-weight: 300; line-height: 1.5;
    text-align: center; max-width: 72ch; margin: 0 auto;
}
.problem-strip strong { font-weight: 600; color: var(--gold-light); }

/* ══════════════════════════════════════
   SHARED SECTION ELEMENTS
══════════════════════════════════════ */
.section-eyebrow {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.section-eyebrow::before {
    content: ''; display: block;
    width: 2.5rem; height: 0.5px; background: var(--gold); flex-shrink: 0;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 0.75rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-sub {
    font-size: 0.93rem; color: var(--text-muted);
    max-width: 52ch; line-height: 1.8; margin-bottom: 4.5rem;
}

/* ══════════════════════════════════════
   DIAGRAM SECTION  (#por-que)
══════════════════════════════════════ */
#por-que { padding: 7rem 5rem; }

/* Grid shared structure */
.d-g5 {
    display: grid;
    grid-template-columns: var(--d-left) repeat(4, 1fr);
    gap: var(--d-gap);
}

/* Header row */
.d-header {
    display: grid; grid-template-columns: 1fr auto;
    gap: 2rem; align-items: start; margin-bottom: 3.5rem;
}
.d-headline {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 300; line-height: 1.22; color: var(--text);
    margin-top: 0.5rem;
}
.d-headline strong { font-weight: 600; color: var(--gold-light); font-style: normal; }
.d-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-subtle); margin-bottom: 10px;
}
.d-badge {
    background: var(--bg-card); border: 1px solid rgba(139,127,255,.28);
    border-radius: 10px; padding: 18px 22px; min-width: 200px; flex-shrink: 0;
}
.d-badge-num {
    font-size: 2.4rem; font-weight: 700; color: var(--d-purple-l);
    display: block; line-height: 1; margin-bottom: 7px;
}
.d-badge-desc { font-size: .82rem; color: #C0BEDC; line-height: 1.45; margin-bottom: 7px; }
.d-badge-src  { font-size: .74rem; color: var(--d-purple-l); }

/* Distancia relacional label */
.d-dist-label {
    font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--text-subtle);
    display: flex; align-items: center; gap: 8px; padding-bottom: 4px;
}
.d-dist-label::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07);
}

/* Column headers */
.d-col-hdr {
    text-align: center; padding: 12px 6px 16px;
    display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.d-col-hdr svg { width: 30px; height: 30px; color: var(--text-subtle); flex-shrink: 0; }
.d-col-hdr.d-active svg { color: var(--d-purple-l); }
.d-col-hdr-name { font-size: .82rem; font-weight: 600; color: var(--text); }
.d-col-hdr.d-active .d-col-hdr-name { color: var(--d-purple-l); }
.d-col-hdr-tag  { font-size: .7rem; color: var(--text-subtle); }

/* Matrix rows */
.d-matrix { grid-template-rows: 88px 88px 118px; }

/* Legend cells */
.d-leg {
    display: flex; align-items: center; gap: 11px; padding-right: 10px;
}
.d-leg-icon {
    width: 38px; height: 38px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.d-leg-icon svg { width: 18px; height: 18px; }
.d-leg-redes .d-leg-icon { background: var(--d-purple-d); color: var(--d-purple-l); }
.d-leg-web   .d-leg-icon { background: var(--d-green-d);  color: var(--d-green-l);  }
.d-leg-img   .d-leg-icon { background: var(--d-amber-d);  color: var(--d-amber-l);  }
.d-leg-name {
    font-size: .62rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; display: block; margin-bottom: 3px;
}
.d-leg-redes .d-leg-name { color: var(--d-purple-l); }
.d-leg-web   .d-leg-name { color: var(--d-green-l);  }
.d-leg-img   .d-leg-name { color: var(--d-amber-l);  }
.d-leg-desc { font-size: .68rem; color: var(--text-subtle); line-height: 1.4; }

/* Matrix cells */
.d-cell {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; border-radius: 4px;
    padding: 10px 7px; text-align: center; gap: 6px;
}
.d-cell svg { width: 26px; height: 26px; flex-shrink: 0; }
.d-cell-off {
    background: rgba(255,255,255,.02);
    border: 1.5px dashed rgba(255,255,255,.09);
}
.d-cell-off svg { color: rgba(255,255,255,.1); }
.d-cell-amber { background: var(--d-amber); }
.d-cell-amber svg { color: rgba(255,255,255,.9); }
.d-cell-amber p {
    font-size: .72rem; color: rgba(255,255,255,.9);
    line-height: 1.35; font-weight: 400;
}
.d-cell-green  { background: var(--d-green); }
.d-cell-green  svg { color: rgba(255,255,255,.9); }
.d-cell-purple { background: var(--d-purple); }
.d-cell-purple svg { color: rgba(255,255,255,.9); }
.d-cell-purple.d-last { box-shadow: inset 0 0 0 1px rgba(139,127,255,.45); }

/* Validation scale */
.d-scale-wrap { margin-top: 10px; align-items: center; }
.d-scale-label {
    font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-subtle); line-height: 1.55;
}
.d-scale-track {
    position: relative; padding: 9px 0; grid-column: 2/6;
}
.d-scale-line {
    position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: rgba(255,255,255,.09);
}
.d-scale-pts {
    display: grid; grid-template-columns: repeat(4,1fr);
    position: relative; z-index: 1;
}
.d-spt { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.d-spt-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.18); }
.d-spt:last-child .d-spt-dot { background: var(--d-purple-l); width: 9px; height: 9px; }
.d-spt-lbl { font-size: .68rem; color: var(--text-subtle); }
.d-spt:last-child .d-spt-lbl { color: var(--d-purple-l); }

/* Bottom service cards */
.d-cards {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 10px; margin-top: 26px;
}
.d-card {
    background: var(--bg-card); border: 0.5px solid var(--border);
    border-radius: 10px; padding: 18px; display: flex; gap: 12px; align-items: flex-start;
}
.d-card-icon {
    width: 42px; height: 42px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.d-card-icon svg { width: 20px; height: 20px; }
.d-card-amber .d-card-icon { background: var(--d-amber-d); color: var(--d-amber-l); }
.d-card-green  .d-card-icon { background: var(--d-green-d);  color: var(--d-green-l);  }
.d-card-purple .d-card-icon { background: var(--d-purple-d); color: var(--d-purple-l); }
.d-card-svc {
    font-size: .62rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; display: block; margin-bottom: 4px;
}
.d-card-amber .d-card-svc  { color: var(--d-amber-l);  }
.d-card-green  .d-card-svc { color: var(--d-green-l);  }
.d-card-purple .d-card-svc { color: var(--d-purple-l); }
.d-card-title { font-size: .86rem; font-weight: 500; color: var(--text); display: block; margin-bottom: 4px; }
.d-card-desc  { font-size: .75rem; color: var(--text-subtle); line-height: 1.6; }

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
#servicios { padding: 7rem 5rem; }
.services-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--border);
}
.svc {
    background: var(--bg); padding: 2.75rem 2.5rem;
    transition: background 0.3s; position: relative;
}
.svc:hover { background: var(--bg-card-2); }
.svc-num {
    font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
    color: rgba(201,169,110,0.18); line-height: 1; margin-bottom: 1.75rem;
}
.svc-name {
    font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
    color: var(--text); margin-bottom: 0.35rem;
}
.svc-sub {
    font-size: 0.68rem; letter-spacing: 0.17em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.4rem;
}
.svc-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 2rem; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.svc-list li {
    font-size: 0.8rem; color: var(--text-subtle);
    padding-left: 1.1rem; position: relative; line-height: 1.5;
}
.svc-list li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--gold); font-size: 0.65rem; top: 0.25rem;
}
.svc-bar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--border); transition: background 0.3s;
}
.svc:hover .svc-bar { background: var(--gold); }

/* ══════════════════════════════════════
   FOR WHOM SECTION
══════════════════════════════════════ */
#para-quien {
    background: var(--bg-card);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 7rem 5rem;
}
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 6rem; align-items: start; }
.who-intro { grid-column: 1 / -1; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.who-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.who-check {
    flex-shrink: 0; width: 1.2rem; height: 1.2rem;
    border: 0.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.6rem; margin-top: 0.2rem;
}
.who-item-title { font-size: 0.92rem; font-weight: 500; margin-bottom: 0.25rem; }
.who-item-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.method-note {
    margin-top: 2.5rem; padding: 1.5rem 1.75rem;
    border-left: 2px solid var(--gold); background: var(--gold-dimmer);
}
.method-note p { font-size: 0.85rem; color: var(--text-muted); font-style: italic; line-height: 1.75; }
.method-note strong { color: var(--gold-light); font-style: normal; }
.gap-cards {
    display: flex; flex-direction: column; gap: 1rem;
}
.gap-card {
    background: linear-gradient(135deg, var(--bg), var(--bg-card-2));
    border: 1px solid var(--border-mid);
    border-left: 3px solid var(--gold);
    padding: 1.65rem;
}
.gap-label {
    font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1rem; font-weight: 700;
}
.gap-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.9rem; align-items: center; }
.gap-before,
.gap-after {
    font-size: 0.95rem; line-height: 1.5;
}
.gap-before { color: var(--text-muted); }
.gap-after  { color: var(--gold-light); font-weight: 500; }
.gap-arrow  { color: var(--gold); font-size: 1.3rem; text-align: center; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
#contacto { padding: 7rem 5rem; text-align: center; }
.cta-inner {
    max-width: 720px; margin: 0 auto; padding: 5rem 4rem;
    border: 0.5px solid var(--border); position: relative;
}
.cta-inner::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%); width: 5rem; height: 2px; background: var(--gold);
}
.cta-headline {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 1.25rem;
}
.cta-headline em { font-style: italic; color: var(--gold-light); }
.cta-body {
    font-size: 0.93rem; color: var(--text-muted); line-height: 1.85;
    max-width: 44ch; margin: 0 auto 2.75rem;
}
.cta-inner .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
#faq {
    padding: 0 5rem 7rem;
}
.faq-list {
    max-width: 860px;
    margin: 3rem auto 0;
    border-top: 0.5px solid var(--border);
}
.faq-item {
    border-bottom: 0.5px solid var(--border);
}
.faq-q {
    width: 100%;
    padding: 1.45rem 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
    background: transparent; border: 0;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.96rem; font-weight: 500;
    line-height: 1.4; text-align: left;
    cursor: pointer;
}
.faq-q:hover { color: var(--gold-light); }
.faq-icon {
    width: 1.1rem; height: 1.1rem;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.2s ease;
}
.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}
.faq-a {
    padding: 0 2.75rem 1.6rem 0;
}
.faq-a p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.faq-a a {
    color: var(--gold);
}

/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.legal-page {
    padding: 10rem 5rem 6rem;
}
.legal-content {
    max-width: 860px;
    margin: 0 auto;
}
.legal-content .section-title {
    margin-bottom: 1.25rem;
}
.legal-updated {
    font-size: 0.78rem;
    color: var(--text-subtle);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}
.legal-section {
    padding: 2rem 0;
    border-top: 0.5px solid var(--border);
}
.legal-section h2 {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.legal-section p,
.legal-section li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.legal-section p + p,
.legal-section ul + p {
    margin-top: 1rem;
}
.legal-section ul {
    margin: 1rem 0 0 1.2rem;
}
.legal-section a {
    color: var(--gold);
}

/* ══════════════════════════════════════
   CONTACT MODAL
══════════════════════════════════════ */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    background: rgba(12,12,10,0.82);
    backdrop-filter: blur(12px);
}
.modal-backdrop[hidden] { display: none; }
.modal-dialog {
    width: min(100%, 540px);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0;
    color: var(--text-muted);
    font-size: 1.5rem; line-height: 1;
    cursor: pointer;
}
.modal-close:hover { color: var(--gold); }
.modal-kicker {
    font-size: 0.68rem; letter-spacing: 0.17em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.85rem;
}
.modal-title {
    font-family: var(--serif);
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    font-weight: 300; line-height: 1.1;
    margin-bottom: 0.95rem;
}
.modal-copy {
    font-size: 0.9rem; color: var(--text-muted);
    line-height: 1.75; margin-bottom: 1.75rem;
}
.prospect-form {
    display: flex; flex-direction: column; gap: 1rem;
}
.prospect-form label {
    display: flex; flex-direction: column; gap: 0.45rem;
}
.prospect-form label span {
    font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-light);
}
.prospect-form input,
.prospect-form textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    background: var(--bg);
    border: 1px solid var(--border-mid);
    color: var(--text);
    font: inherit;
}
.prospect-form input:focus,
.prospect-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.prospect-form textarea { resize: vertical; }
.form-message {
    min-height: 1.4rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.form-message.success { color: var(--gold-light); }
.form-message.error { color: #F5A3A3; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    padding: 2.25rem 5rem;
    border-top: 0.5px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; flex-wrap: wrap;
}
.footer-logo {
    display: inline-flex; align-items: center;
    gap: 0.9rem;
    text-transform: uppercase;
    line-height: 1;
}
.footer-logo-brand {
    display: inline-flex; flex-direction: column; align-items: center;
    gap: 0.08rem;
}
.footer-logo-main {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 0.48em;
    color: var(--text-muted);
    margin-right: -0.48em;
}
.footer-logo-studio {
    font-family: var(--sans);
    font-size: 0.54rem;
    font-weight: 300;
    letter-spacing: 0.58em;
    color: var(--gold);
    margin-right: -0.58em;
}
.footer-logo-by {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.24em;
    color: var(--text-subtle);
    margin-right: -0.24em;
    white-space: nowrap;
}
.footer-copy { font-size: 0.73rem; color: var(--text-subtle); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.73rem; color: var(--text-subtle); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-up {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    #por-que { padding: 5rem 2rem; }
    .d-g5 { grid-template-columns: repeat(4, 1fr); }
    .d-header { grid-template-columns: 1fr; }
    .d-g5 > div:first-child:empty { display: none; }
    .d-dist-label { grid-column: 1 / -1 !important; }
    .d-col-hdr { padding: 8px 4px 10px; gap: 4px; }
    .d-col-hdr svg { width: 22px; height: 22px; }
    .d-col-hdr-name { font-size: 0.68rem; line-height: 1.2; }
    .d-col-hdr-tag { font-size: 0.58rem; line-height: 1.2; }
    .d-leg { display: none; }
    .d-dist-label .empty { display: none; }
    .d-cards { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
    nav { padding: 1.25rem 2rem; justify-content: center; }
    .nav-logo,
    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 0.28rem;
    }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    #hero { padding: 7rem 2rem 4rem; }
    .d-col-hdr { padding: 6px 2px 8px; gap: 3px; }
    .d-col-hdr svg { width: 18px; height: 18px; }
    .d-col-hdr-name { font-size: 0.6rem; }
    .d-col-hdr-tag { font-size: 0.52rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-orb-1,.hero-orb-2 { display: none; }
    .problem-strip { padding: 3.5rem 2rem; }
    #servicios { padding: 5rem 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    #para-quien { padding: 5rem 2rem; }
    .who-grid { grid-template-columns: 1fr; gap: 3rem; }
    #contacto { padding: 5rem 2rem; }
    .cta-inner { padding: 3rem 1.75rem; }
    .legal-page { padding: 8rem 2rem 4rem; }
    #faq { padding: 0 2rem 5rem; }
    .faq-a { padding-right: 0; }
    .modal-backdrop { padding: 1rem; }
    .modal-dialog { padding: 2rem 1.5rem; }
    footer { padding: 2rem; flex-direction: column; text-align: center; }
}
