/* ============================================
   MUVE LANDING — V3 REDESIGN
   Design System: Dark Industrial Premium
   Fonts: Syne (headings) + Inter (body)
   Palette: #090e12 base · #DE5C34 accent
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
    --bg-base:         #090e12;
    --bg-section:      #0d1520;
    --bg-dark:         #060a0d;
    --bg-card:         #111c27;
    --bg-card-hover:   #172333;
    --primary:         #DE5C34;
    --primary-hover:   #f16c45;
    --primary-rgb:     222, 92, 52;
    --text-main:       #ffffff;
    --text-muted:      #7a8fa6;
    --text-body:       #b8c8d8;
    --border:          rgba(255,255,255,0.07);
    --border-accent:   rgba(222,92,52,0.3);
    --font-head:       'Montserrat', sans-serif;
    --font-body:       'Inter', sans-serif;
    --ease:            cubic-bezier(0.25,0.46,0.45,0.94);
    --shadow-card:     0 8px 32px rgba(0,0,0,0.45);
    --shadow-glow:     0 0 60px rgba(222,92,52,0.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-base);
    color: var(--text-body);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5 { color: var(--text-main); font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
code { font-family: monospace; background: rgba(0,0,0,.3); padding: 2px 6px; border-radius: 4px; font-size: .9em; color: var(--primary); }

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.section-dark { background: var(--bg-dark); }
.section-booking { background: var(--bg-section); }

/* ── SECTION LABELS & HEADERS ── */
.section-label {

    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--primary);
    flex-shrink: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.section-header .section-label { display: block; text-align: center; }
.section-header .section-label::before { display: none; }

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 540px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    border: none;
    transition: all .22s var(--ease);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(var(--primary-rgb),.3);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb),.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.35);
    transform: translateY(-2px);
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9,14,18,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 46px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.logo-text-brand {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--text-main);
}
.logo-text-brand span { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .2s;
}
.nav-link:hover { color: var(--text-main); }

/* ── HERO ── */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-carousel-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: heroScroll 72s linear infinite;
}
.hero-carousel-slide {
    flex-shrink: 0;
    width: 300px;
    height: 100%;
    min-height: 92vh;
    padding: 0 6px;
}
.hero-carousel-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
@keyframes heroScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        110deg,
        rgba(9,14,18,.97) 0%,
        rgba(9,14,18,.88) 42%,
        rgba(9,14,18,.5) 75%,
        rgba(9,14,18,.2) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 100px 0 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb),.6); }
    50%      { box-shadow: 0 0 0 7px rgba(var(--primary-rgb),0); }
}

.hero-left { max-width: 720px; }

.hero-left h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-left h1 em {
    font-style: normal;
    color: var(--primary);
}
.hero-left p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(8px);
    overflow: hidden;
    width: fit-content;
}
.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px 36px;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: .04em;
}
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollDrop 1.8s var(--ease) infinite;
}
@keyframes scrollDrop {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── PRODUCTS GRID ── */
.products-grid { transition: all .4s ease; }
.matrix-1x3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--border);
}
.products-cta { text-align: center; margin-top: 48px; }

.product-card {
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: background .25s, transform .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color .25s;
    border-radius: 0;
}
.product-card:hover { background: var(--bg-card-hover); }
.product-card:hover::after { border-color: var(--primary); }

.card-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(0,0,0,.2);
}
.card-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.product-card:hover .card-image-wrapper img { transform: scale(1.06); }

.card-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.card-header h3 { font-size: 1.3rem; font-weight: 700; }
.card-area-badge {
    background: rgba(var(--primary-rgb),.12);
    border: 1px solid rgba(var(--primary-rgb),.35);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
}
.card-brief { color: var(--text-muted); font-size: 13px; flex: 1; margin-bottom: 20px; }
.card-footer { border-top: 1px solid var(--border); padding-top: 16px; }
.view-detail-btn {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s, gap .2s;
}
.product-card:hover .view-detail-btn { color: var(--primary); gap: 10px; }

/* ── PRODUCT DETAIL ── */
.product-detail-view {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
}
.product-detail-view.active { opacity: 1; transform: translateY(0); }

.detail-nav-back { margin-bottom: 36px; }
.back-btn {
    background: none; border: none;
    color: var(--text-muted);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}
.back-btn:hover { color: var(--primary); }

.detail-header-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 36px;
}
.detail-header-left h3 { font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; }
.detail-header-left h3 span { color: var(--primary); }
.detail-tagline { color: var(--text-muted); font-size: 15px; margin-top: 6px; }
.detail-area-badge {
    background: rgba(var(--primary-rgb),.1);
    border: 1px solid rgba(var(--primary-rgb),.35);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}
.detail-area-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.detail-area-unit { font-size: 14px; font-weight: 600; }

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
}
.detail-column { display: flex; flex-direction: column; }
.detail-info-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}
.detail-info-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.detail-column-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--primary);
    font-family: var(--font-head);
}
.detail-module-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    min-height: 340px;
    border: 1px solid var(--border);
    background: rgba(0,0,0,.2);
    margin-top: 14px;
}
.detail-module-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.detail-brief-text { font-size: 14px; line-height: 1.75; color: var(--text-muted); }

.specs-table-wrapper {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.specs-table tr:last-child td { border-bottom: none; }
.spec-label { color: var(--text-muted); }
.spec-val { color: var(--text-main); text-align: right; font-weight: 500; }
.spec-val.highlight-val { color: var(--primary); font-weight: 700; }

.resilience-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.res-card {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 12px;
    text-align: center;
    transition: border-color .2s, background .2s;
}
.res-card:hover { border-color: var(--border-accent); background: rgba(var(--primary-rgb),.03); }
.res-card i { color: var(--primary); font-size: 22px; margin-bottom: 10px; }
.res-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #fff; }
.res-desc { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ── IMAGE PLACEHOLDERS ── */
.premium-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(23,33,45,.6), rgba(16,23,32,.8));
    border: 1px dashed rgba(255,255,255,.1);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    min-height: 170px;
}
.placeholder-icon { font-size: 30px; color: rgba(222,92,52,.5); margin-bottom: 10px; }
.placeholder-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.placeholder-subtitle { font-size: 10px; color: var(--text-muted); }
.placeholder-filepath { font-size: 9px; margin-top: 8px; }

/* ── PROCESO / SERVICES ── */
.process-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 56px;
    color: var(--border-accent);
    font-size: 18px;
}
.process-step {
    position: relative;
    padding: 40px 36px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color .25s, background .25s;
    overflow: hidden;
}
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.process-step:hover { border-color: var(--border-accent); background: rgba(var(--primary-rgb),.03); }
.process-step:hover::before { opacity: 1; }

.step-number {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,.04);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -.04em;
}
.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(var(--primary-rgb),.12);
    border: 1px solid rgba(var(--primary-rgb),.25);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}
.process-step h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.process-step p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── BOOKING ── */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.booking-copy { padding-top: 8px; }
.booking-copy h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); margin-bottom: 16px; }
.booking-copy h2 span { color: var(--primary); }
.booking-lead { color: var(--text-body); font-size: 16px; line-height: 1.75; margin-bottom: 40px; }

.booking-benefits { display: flex; flex-direction: column; gap: 22px; margin-bottom: 44px; }
.booking-benefits li { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon { flex-shrink: 0; color: var(--primary); font-size: 17px; margin-top: 2px; }
.booking-benefits li > div strong {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 3px;
}
.booking-benefits li > div p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

.booking-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.proof-avatars { display: flex; flex-shrink: 0; }
.proof-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-section);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
    margin-left: -8px;
    font-family: var(--font-head);
}
.proof-avatars .proof-avatar:first-child { margin-left: 0; }
.booking-social-proof p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.45; }
.booking-social-proof p strong { color: var(--text-main); }

.booking-calendar-col { position: sticky; top: 90px; }
.calendar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.calendar-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(var(--primary-rgb),.08);
    border-bottom: 1px solid rgba(var(--primary-rgb),.18);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}
.calendar-card .calendly-inline-widget {
    display: block; width: 100%;
    border-radius: 0; border: none; box-shadow: none;
}

/* ── FAQ ── */
.faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item + .faq-item { border-radius: 12px; }
.faq-item:hover { border-color: var(--border-accent); }
.faq-item.active { border-color: rgba(var(--primary-rgb),.4); }

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    user-select: none;
}
.faq-question h4 { font-size: 15px; font-weight: 600; font-family: var(--font-head); color: var(--text-main); }
.faq-toggle-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb),.1);
    border: 1px solid rgba(var(--primary-rgb),.25);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    transition: transform .3s, background .2s;
}
.faq-item.active .faq-toggle-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}
.faq-list { margin: 12px 0 0 20px; list-style: disc; display: flex; flex-direction: column; gap: 6px; }
.faq-cta-btn { display: block; width: fit-content; margin: 24px 0 0; }
.faq-bottom-cta { text-align: center; margin-top: 48px; }

/* ── FOOTER ── */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 72px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand h4 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.footer-brand h4 span { color: var(--primary); }
.footer-brand p { font-size: 13px; color: var(--text-muted); max-width: 300px; margin-bottom: 24px; line-height: 1.65; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: all .2s;
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--text-main); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    font-size: 12px;
    color: rgba(255,255,255,.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .process-track {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .process-connector { transform: rotate(90deg); padding: 8px 0; margin-top: 0; }
    .detail-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-inner { padding: 80px 0 60px; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .stat-divider { display: none; }
    .stat-item { border: 1px solid var(--border); border-radius: 8px; flex: 1; min-width: 140px; }
    .booking-layout { grid-template-columns: 1fr; gap: 48px; }
    .booking-calendar-col { position: static; }
    .matrix-1x3 { grid-template-columns: repeat(2,1fr); }
    .hero-scroll-hint { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .container { padding: 0 20px; }
    .hero-left h1 { font-size: 2.6rem; }
    .matrix-1x3 { grid-template-columns: 1fr; }
    .detail-header-area { flex-direction: column; gap: 16px; align-items: flex-start; }
    .resilience-list { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .nav-menu { display: none; }
    .hero-stats { display: none; }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.process-step:nth-child(1) { transition-delay: .05s; }
.process-step:nth-child(3) { transition-delay: .15s; }
.process-step:nth-child(5) { transition-delay: .25s; }
