/* ── TOKENS ── */
:root {
    --ink: #0c1520;
    --ink2: #1a2940;
    --ocean: #0f4c7a;
    --mid: #1e6ea0;
    --gold: #b8963c;
    --gold2: #d4ae58;
    --sand: #e8dcc8;
    --cream: #f6f2eb;
    --warm: #ede8de;
    --white: #ffffff;
    --fog: #6b7e96;
    --rule: rgba(12, 21, 32, 0.1);
}

/* ── RESET ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    background: rgba(10, 16, 26, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-logo span {
    color: var(--gold2);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-reservar {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold2) !important;
    border-bottom: 1px solid var(--gold2);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.nav-reservar:hover {
    color: var(--white) !important;
    border-color: var(--white);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(2, 10, 22, 0.72) 0%,
            rgba(4, 14, 28, 0.55) 40%,
            rgba(4, 14, 28, 0.45) 70%,
            rgba(2, 8, 18, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px 100px;
}

/* micro label above H1 */
.hero-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold2);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.2s forwards;
}

/* H1 — keyword principal geolocalizada */
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 108px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.025em;
    color: var(--white);
    max-width: 900px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold2);
}

.hero h1 .pre {
    display: block;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 12px;
}

.hero-copy {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.55s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.btn-primary {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold2);
    padding: 15px 36px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: #c49a40;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 15px 36px;
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

/* hero numbers — bottom right */
.hero-stats {
    position: absolute;
    bottom: 96px;
    right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right;
    opacity: 0;
    animation: fadeIn 1s ease 1.1s forwards;
}

.hero-stats .s-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
}

.hero-stats .s-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ── SECCIÓN 3 PILARES ── */
.pillars-section {
    background-color: var(--cream);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

/*.pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/logo-grande.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.13;
    pointer-events: none;
    z-index: 0;
}*/

.pillars-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.pc {
    background: transparent;
}

.pc:hover {
    background: rgba(255, 255, 255, 0.15);
}

.s-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.s-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 20px;
}

.s-h2 em {
    font-style: italic;
    color: var(--ocean);
}

.s-lead {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--fog);
    max-width: 580px;
    margin-bottom: 80px;
}

/* pillar grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: transparent;
}

.pc {
    background: transparent;
    padding: 52px 44px 48px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
    position: relative;
    border: 1px solid rgba(184, 150, 60, 0.45);
}

.pc:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(184, 150, 60, 0.75);
}

/* top accent line per pillar */
.pc::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    margin-bottom: 36px;
}

.pc.tierra::before {
    background: var(--gold);
}

.pc.mar::before {
    background: var(--ocean);
}

.pc.aire::before {
    background: var(--fog);
}

.pc-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--fog);
    margin-bottom: 14px;
}

/* H2 de pilar — keyword "experiencias en tierra/mar/aire en Mallorca" */
.pc h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #000000;
    margin-bottom: 20px;
}

.pc p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #000000;
    margin-bottom: 32px;
    flex: 1;
}



/* grid de chips pequeños */
.act-list {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.act-list li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--rule);
    border-radius: 3px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.act-list li a:hover {
    background: var(--white);
    border-color: var(--ocean);
    color: var(--ocean);
}

.act-list li a::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 1px;
    transition: background 0.2s;
}

.act-list li a:hover::before {
    background: var(--ocean);
}

.pc-cta {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}

.pc-cta:hover {
    color: var(--ocean);
    border-color: var(--ocean);
}

/* ── STRIP NÚMEROS ── */
.numbers-strip {
    background: var(--ink);
    padding: 64px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.numbers-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nb {
    padding: 0 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.nb-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
    margin-bottom: 10px;
}

.nb-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
}

/* ── EXPERIENCIAS DESTACADAS ── */
.featured-section {
    background: var(--warm);
    padding: 120px 60px;
    border-top: 1px solid var(--rule);
}

.featured-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.feat-header {
    margin-bottom: 52px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}

.fc {
    background: var(--cream);
    padding: 44px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background 0.25s;
    cursor: pointer;
    min-height: 280px;
}

.fc.wide {
    grid-column: span 2;
}

.fc:hover {
    background: var(--white);
}

/* colored top bar */
.fc::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 28px;
}

.fc.mar::before {
    background: var(--ocean);
}

.fc.aire::before {
    background: var(--fog);
}

.fc.tierra::before {
    background: var(--gold);
}

.fc-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--fog);
    margin-bottom: 10px;
}

.fc h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 12px;
    flex: 1;
}

.fc.wide h3 {
    font-size: 28px;
}

.fc-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--fog);
    line-height: 1.7;
    margin-bottom: 20px;
}

.fc-price {
    font-size: 12px;
    font-weight: 500;
    color: var(--fog);
    border-top: 1px solid var(--rule);
    padding-top: 16px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fc-price strong {
    color: var(--ink);
    font-weight: 600;
}

.fc-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ocean);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.fc:hover .fc-link {
    gap: 10px;
}

/* ── POR QUÉ LURION ── */
.why-section {
    background: var(--cream);
    padding: 120px 60px;
    border-top: 1px solid var(--rule);
}

.why-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.why-text .s-eyebrow {
    display: block;
    margin-bottom: 16px;
}

.why-text .s-h2 {
    margin-bottom: 20px;
}

.why-text p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--fog);
    margin-bottom: 16px;
}

.why-text .btn-primary {
    margin-top: 24px;
}

.why-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    background: var(--rule);
}

.wf {
    background: var(--cream);
    padding: 36px 32px;
    transition: background 0.25s;
}

.wf:hover {
    background: var(--white);
}

.wf h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.wf p {
    font-size: 13px;
    font-weight: 300;
    color: var(--fog);
    line-height: 1.7;
}

/* ── TESTIMONIOS ── */
.reviews-section {
    background: var(--ink);
    padding: 120px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.reviews-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.reviews-inner .s-h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.reviews-inner .s-lead {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 64px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.rc {
    background: var(--ink);
    padding: 40px 36px;
    transition: background 0.25s;
}

.rc:hover {
    background: #131f30;
}

.stars {
    color: var(--gold2);
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.rc-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 28px;
}

.rc-sep {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.r-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.r-act {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.04em;
}

/* ── FAQs ── */
.faq-section {
    background: var(--warm);
    padding: 120px 60px;
    border-top: 1px solid var(--rule);
}

.faq-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: start;
}

.faq-intro .s-eyebrow {
    display: block;
    margin-bottom: 16px;
}

.faq-intro .s-h2 {
    margin-bottom: 20px;
}

.faq-intro p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--fog);
    margin-bottom: 32px;
}

.faq-intro a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.faq-intro a:hover {
    color: var(--ocean);
    border-color: var(--ocean);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--rule);
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--rule);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    cursor: pointer;
    gap: 24px;
    user-select: none;
}

.faq-q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--fog);
    transition: transform 0.3s, background 0.2s, color 0.2s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 28px;
}

.faq-a p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--fog);
}

.faq-a p a {
    color: var(--ocean);
    border-bottom: 1px solid rgba(15, 76, 122, 0.3);
    transition: border-color 0.2s;
}

.faq-a p a:hover {
    border-color: var(--ocean);
}

/* ── CTA FINAL ── */
.cta-section {
    background: var(--ink);
    padding: 120px 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(184, 150, 60, 0.07) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner .s-eyebrow {
    color: var(--gold2);
    margin-bottom: 20px;
}

.cta-inner .s-h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-inner .s-h2 em {
    color: var(--gold2);
}

.cta-inner p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 48px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    background: #060d16;
    padding: 72px 60px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.f-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
}

.f-brand .logo span {
    color: var(--gold2);
}

.f-brand p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 280px;
}

.f-col h4 {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.f-col ul {
    list-style: none;
}

.f-col li {
    margin-bottom: 10px;
}

.f-col a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.32);
    transition: color 0.2s;
}

.f-col a:hover {
    color: var(--gold2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
}

.schema-note {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(184, 150, 60, 0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.18);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* grid de 4 fotos placeholder */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: auto;
    padding-top: 28px;
    width: 100%;
    min-width: 0;
    list-style: none;
}

.photo-slot {
    aspect-ratio: 4/3;
    background: var(--rule);
    border: 1px dashed rgba(12, 21, 32, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(12, 21, 32, 0.25);
    overflow: hidden;
    position: relative;
}

.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-slot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 18, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.photo-slot:hover img {
    transform: scale(1.07);
}

.photo-slot:hover::after {
    opacity: 1;
}

/* ── ANOTACIONES SEO ── */
.seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 9px 3px 7px;
    border-radius: 3px;
    margin-bottom: 8px;
    vertical-align: middle;
    white-space: nowrap;
    pointer-events: none;
}

.seo-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.seo-badge.h1 {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.seo-badge.h1::before {
    background: #dc2626;
}

.seo-badge.h2 {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.22);
}

.seo-badge.h2::before {
    background: #2563eb;
}

/* wrap para no romper el flow */
.seo-annotated {
    position: relative;
}

.seo-annotated .seo-badge {
    display: block;
    width: fit-content;
    margin-bottom: 6px;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transform: none;
        transition: opacity 300ms ease;
    }
}

@media(max-width:1100px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fc.wide {
        grid-column: span 2;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .numbers-inner {
        grid-template-columns: 1fr 1fr;
    }

    .nb {
        padding: 32px 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media(max-width:768px) {
    nav {
        padding: 10px 24px;
        justify-content: center;
    }

    nav a img {
        height: 48px !important;
        width: 48px !important;
    }

    .nav-links {
        display: none;
    }

    .hero {
        align-items: flex-end;
    }

    .hero-content {
        padding: 90px 24px 60px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 62px);
        margin-bottom: 20px;
    }

    .hero-copy {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .hero-stats {
        right: 24px;
        bottom: 80px;
    }

    .pillars-section, .featured-section, .why-section,
    .reviews-section, .faq-section, .cta-section, footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .numbers-strip {
        padding: 48px 24px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .fc.wide {
        grid-column: span 1;
    }

    .why-feats {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .numbers-inner {
        grid-template-columns: 1fr 1fr;
    }
}