:root {
    --orange:      #F25C19;
    --orange-dark: #D44A0C;
    --ink:         #0F0F0F;
    --ink-2:       #2A2A2A;
    --muted:       #6B6B6B;
    --line:        #E5E5E5;
}

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

html, body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'Raleway', sans-serif;
    color: var(--ink);
}

html { scroll-behavior: smooth; }
a { color: inherit; }

.container {
    max-width: 1240px;
    margin: 0 auto;
}
button { cursor: pointer; }

/* LANGUAGE TOGGLE */
.lang-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 500;
    display: flex;
    background: rgba(15,15,15,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 4px;
    gap: 2px;
    box-shadow: 0 2px 14px rgba(0,0,0,.22);
    text-decoration: none;
}
.lang-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .09em;
    padding: 6px 14px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background .18s, color .18s;
    color: rgba(255,255,255,.55);
    background: transparent;
    text-decoration: none;
    display: inline-block;
}
.lang-btn.is-active {
    background: var(--orange);
    color: #fff;
}
.lang-btn:hover:not(.is-active) {
    color: rgba(255,255,255,.9);
}

/*  HERO */
.hero-block {
    padding: 0 48px;
    position: relative;
    overflow: hidden;
    background: #0F0F0F;
    min-height: 520px;
}
.hero-faq {
    position: absolute;
    right: 20px;
    top: 64px;
    z-index: 50;
}
.hero-faq a { padding: 7px 12px; }
.btn-orange svg { display: none; }

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 70%;
    height: 100%;
    object-fit: cover;
    margin-left: auto;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15,15,15,1),rgba(15,15,15,1), rgba(15,15,15,0.6), rgba(15,15,15,0.2));
    z-index: 5;
}
.hero-bg-svg {
    position: absolute;
    bottom: -5px;
    width: 70%;
    height: auto;
    right: 0;
    z-index: 10;
}

.hero-body {
    position: relative;
    padding: 80px 64px 64px;
    max-width: 820px;
    z-index: 20;
}
.hero-body .mh-logo { margin-bottom: 15px; }

.hero-h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    letter-spacing: -.02em;
}
.hero-h1 .light { font-weight: 300; }

.hero-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.45;
    color: rgba(255,255,255,.85);
    margin: 24px 0 0;
    max-width: 560px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 16px 28px;
    border: 0;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: .01em;
    transition: background .18s;
}
.btn-orange:hover { background: var(--orange-dark); }

.hero-anchor {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-bottom: 2px;
}

/*  HERO ENTRANCE ANIMATIONS ─ */
@media (prefers-reduced-motion: no-preference) {
    @keyframes hero-fade-up {
        from { opacity: 0; transform: translateY(30px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes hero-img-reveal {
        from { opacity: 0; transform: scale(1.06); }
        to   { opacity: 1; transform: scale(1); }
    }
    @keyframes hero-svg-rise {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .hero-bg-img  { animation: hero-img-reveal 1.6s cubic-bezier(.22,1,.36,1) both; }
    .hero-bg-svg  { animation: hero-svg-rise 1s cubic-bezier(.22,1,.36,1) .25s both; }
    .hero-h1      { animation: hero-fade-up .7s cubic-bezier(.22,1,.36,1) .25s both; }
    .hero-sub     { animation: hero-fade-up .7s cubic-bezier(.22,1,.36,1) .42s both; }
    .hero-ctas    { animation: hero-fade-up .65s cubic-bezier(.22,1,.36,1) .58s both; }
}

/*  SHARED SECTION UTILITIES ─ */
.sec-intro   { padding: 96px 48px; background-color: #fef2ed; }
.sec-concept { padding: 120px 48px; background-color: #fef2ed; }
.sec-shops   { padding: 120px 48px; }
.sec-cta     { padding: 20px 48px; background: linear-gradient(to right, #FF261F, #FF8A17), #FF261F; }

.eyebrow {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 14px;
}
.h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -.01em;
}
.serif-em {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
}

/*  INTRO HEADER ─ */
.intro-header { text-align: center; }

/*  STATS REDESIGN ─ */
.stat-badge-wrap { text-align: center; margin-top: 28px; }
.stat-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
}
.stat-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(0,0,0,.07);
    gap: 1px;
}
.stat-item {
    padding: 40px 28px;
    text-align: center;
    background: #fff;
}
.stat-num-lg {
    font-size: 54px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -.02em;
}
.stat-pre {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.stat-nps {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink-2);
    margin-top: 4px;
    letter-spacing: .04em;
}
.stat-desc {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/*  CONCEPT  */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: center;
}
.concept-stack {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.concept-card {
    background: #fff;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
}
.concept-num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 36px;
    color: var(--orange);
    font-weight: 500;
    line-height: 1;
}
.concept-title { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.concept-desc  { font-size: 14px; line-height: 1.6; color: var(--muted); }

/*  REASONS  */
.sec-reasons { padding: 96px 48px; margin-top: 80px; color: #000; }
.reasons-header { text-align: center; margin-bottom: 56px; }
.reasons-header .eyebrow { color: var(--orange); }
.reasons-h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -.01em;
    color: #000;
}
.reasons-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.reason-card {
    background-color: #fef2ed;
    border: 1px solid rgba(255,255,255,.09);
    border-top: 3px solid var(--orange);
    border-radius: 8px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.reason-card:hover { transform: translateY(-5px); }
.reason-card-num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 500;
    color: var(--orange);
    line-height: 1;
}
.reason-card-title { font-weight: 700; font-size: 17px; color: #000; line-height: 1.2; }
.reason-card-desc  { font-size: 14px; color: #000; line-height: 1.65; }

/*  SHOPS */
.shops-head { margin-bottom: 40px; }
.shops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.shop-card {
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: box-shadow .18s, border-color .18s;
}
.shop-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); border-color: var(--orange); }
.shop-plate {
    padding: 10px 10px 10px 20px;
    width: 100%;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.shop-plate img { width: 120px; height: 100%; display: block; }
.ds.shop-plate   { background-color: #000; }
.gva.shop-plate  { background-color: #E20714; }
.nb.shop-plate   { background-color: #000068; }
.hbvl.shop-plate { background-color: #FFED00; }
.shop-info { padding: 0 20px; display: flex; flex-direction: column; }
.shop-name { font-weight: 700; font-size: 16px; color: var(--ink); }
.shop-host { font-size: 12px; color: var(--muted); margin-top: 4px; }
.shop-cta {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 24px 24px;
}

/*  FINAL CTA  */
.cta-panel {
    border-radius: 8px;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
}
.cta-body {
    position: relative;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
    align-items: center;
}
.cta-h2 {
    font-weight: 800;
    font-size: 48px;
    line-height: 1.05;
    margin: 0;
    color: #fff;
    letter-spacing: -.02em;
}
.cta-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(255,255,255,.9);
    margin: 20px 0 0;
    max-width: 520px;
}
.cta-right { justify-self: end; }
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0F0F0F;
    color: #fff;
    padding: 20px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .18s;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
}
.btn-dark:hover { background: #2a2a2a; }
.cta-note {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,.8);
    text-align: right;
}

/*  FOOTER ─ */
.site-footer {
    background: #141414;
    color: #fff;
    padding: 56px 48px 24px;
}
.site-footer a { text-decoration: none; color: inherit; }
.site-footer a:hover { text-decoration: underline; }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.footer-col-h { font-weight: 700; font-size: 13px; margin-bottom: 14px; }
.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.footer-col-list li { font-size: 13px; color: #bdbdbd; cursor: pointer; }
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    padding-top: 20px;
    font-size: 12px;
    color: #8a8a8a;
}
.footer-legal { display: flex; gap: 16px; }

/*  STICKY CTA ─ */
.sticky-cta {
    position: fixed;
    border: 0;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .01em;
    box-shadow: 0 4px 20px rgba(242,92,25,.35);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, background .18s;
    cursor: pointer;
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--orange-dark); }

/*  FORM MODAL ─ */
.form-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(15,15,15,.6);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.form-modal.is-open { display: flex; animation: modal-fade-in .2s ease; }
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.form-modal-box {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 780px;
    height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,.22);
    animation: modal-slide-in .22s ease;
    overflow: hidden;
}
@keyframes modal-slide-in {
    from { transform: translateY(16px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.form-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    color: var(--muted);
    border-radius: 4px;
    font-size: 22px;
    transition: color .15s, background .15s;
    position: absolute;
    right: 10px;
    top: 10px;
}
.form-modal-close:hover { color: var(--ink); background: var(--line); }
.form-modal-frame {
    width: 100%;
    flex: 1;
    min-height: 520px;
    border: none;
    border-radius: 0 0 8px 8px;
}
.iframe-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: inherit;
    z-index: 10;
    transition: opacity 0.25s ease;
}
.iframe-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.iframe-loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #eee;
    border-top-color: #ff2a1f;
    border-radius: 50%;
    animation: iframe-spin 0.7s linear infinite;
}
@keyframes iframe-spin {
    to { transform: rotate(360deg); }
}

/*  LEAVE CONFIRM  */
.leave-confirm {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(15,15,15,.45);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.leave-confirm.is-open { display: flex; animation: modal-fade-in .15s ease; }
.leave-confirm-box {
    background: #fff;
    border-radius: 8px;
    padding: 36px 32px 28px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 16px 48px rgba(0,0,0,.2);
    animation: modal-slide-in .18s ease;
}
.leave-confirm-msg {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 28px;
    line-height: 1.4;
}
.leave-confirm-btns { display: flex; gap: 12px; justify-content: flex-end; }
.leave-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background .15s;
}
.leave-btn-yes { background: var(--line); color: var(--ink-2); }
.leave-btn-yes:hover { background: #d4d4d4; }
.leave-btn-no  { background: var(--orange); color: #fff; }
.leave-btn-no:hover { background: var(--orange-dark); }

/*  FAQ */
.sec-faq { padding: 120px 48px; background: #fff; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); list-style: none; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    transition: color .15s;
}
.faq-trigger:hover { color: var(--orange); }
.faq-trigger[aria-expanded="true"] { color: var(--orange); }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s, transform .3s cubic-bezier(.22,1,.36,1);
}
.faq-trigger[aria-expanded="true"] .faq-icon {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}
.faq-icon svg { display: block; }
.faq-trigger[aria-expanded="true"] .faq-icon svg path { stroke: #fff; }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s cubic-bezier(.22,1,.36,1); }
.faq-body.is-open { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }
.faq-body-content {
    padding: 0 40px 22px 0;
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

/*  SCROLL REVEAL  */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
        transition-delay: var(--reveal-delay, 0ms);
    }
    .reveal.is-visible { opacity: 1; transform: none; }
}

/*  RESPONSIVE ─ */
@media (max-width: 1279px) {
    .hero-h1 { font-size: 52px; }
    .sec-intro, .sec-concept, .sec-reasons, .sec-shops, .sec-cta, .site-footer { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 767px) {
    .hero-block  { padding: 0 28px; }
    .hero-h1     { font-size: 36px; }
    .hero-body   { padding: 48px 32px 40px; }
    .hero-bg-overlay { background: #000000c9; }
    .hero-bg-img { width: 100%; }
    .h2          { font-size: 26px; }
    .cta-h2      { font-size: 30px; }
    .reasons-h2  { font-size: 26px; }
    .reasons-cards { grid-template-columns: 1fr 1fr; }
    .hero-faq a  { width: 100%; height: 100%; padding: 9px; border-radius: 50px; }
    .hero-faq .btn-orange svg { display: block; }
    .hero-faq .btn-orange span { display: none; }
    .hero-faq    { width: 35px; height: 35px; top: 64px; }
    .concept-grid, .cta-body { grid-template-columns: 1fr; gap: 40px; }
    .shops-grid  { grid-template-columns: 1fr 1fr; }
    .shop-plate img { width: 100px; }
    .cta-right   { justify-self: start; }
    .cta-note    { text-align: left; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-cols > :first-child { grid-column: span 2; text-align: center; margin-bottom: 20px;}
    .cta-panel   { padding: 48px 32px; }
}
@media (max-width: 900px) {
    .stat-grid   { grid-template-columns: repeat(2, 1fr); }
    .stat-item   { padding: 32px 20px; }
}
@media (max-width: 520px) {
    .stat-grid   { grid-template-columns: 1fr; border-radius: 10px; }
    .stat-num-lg { font-size: 44px; }
    .sec-intro   { padding: 64px 24px; }
}
@media (max-width: 479px) {
    .shops-grid  { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .reasons-cards { grid-template-columns: 1fr; }
    .sticky-cta  { bottom: 16px; right: 16px; left: 16px; justify-content: center; }
}