@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ═══════════════════════════════════════════════
   OXU DESIGN SYSTEM — Orange Edition
   Primary: #f97316 (Orange)
   Philosophy: editorial, flat, SEO-content-first
═══════════════════════════════════════════════ */

:root {
    /* Brand Colors */
    --orange:       #f97316;
    --orange-dark:  #ea580c;
    --orange-deeper:#c2410c;
    --orange-light: #fdba74;
    --orange-pale:  #fff7ed;
    --orange-border:#fed7aa;

    /* Neutrals */
    --ink:          #111827;
    --ink-mid:      #374151;
    --ink-light:    #6b7280;
    --ink-faint:    #9ca3af;
    --rule:         #e5e7eb;
    --paper:        #ffffff;
    --paper-warm:   #fafaf9;

    /* Product accents (kept but secondary to orange) */
    --hotel:        #1d4ed8;
    --hotel-pale:   #eff6ff;
    --restaurant:   #16a34a;
    --restaurant-pale: #f0fdf4;
    --cafe:         #f97316;   /* cafe uses the primary orange */
    --cafe-pale:    #fff7ed;

    /* Typography */
    --font-head:    'Lexend', sans-serif;
    --font-body:    'Lexend', sans-serif;
    --font-serif:   'Lora', serif;

    /* Spacing */
    --nav-h:        72px;
    --max-w:        1400px;
    --pad:          clamp(1rem, 4vw, 4rem);
    --sec-pad:      clamp(56px, 8vw, 96px);

    /* Shadows – minimal */
    --shadow-card:  0 1px 3px rgba(0,0,0,0.07);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.10);

    /* Borders - reduced radius */
    --radius-sm:    4px;
    --radius-md:    6px;
    --radius-lg:    10px;
    --radius-xl:    12px;

    --ease: cubic-bezier(0.4,0,0.2,1);
    --t:    0.22s var(--ease);
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* ─── Typography ─────────────────────────────────── */
h1 { font-size: clamp(2.25rem,5vw,3.75rem); font-family:var(--font-head); font-weight:800; line-height:1.12; letter-spacing:-0.03em; }
h2 { font-size: clamp(1.75rem,3.5vw,2.75rem); font-family:var(--font-head); font-weight:800; line-height:1.18; letter-spacing:-0.025em; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-family:var(--font-head); font-weight:700; line-height:1.3; letter-spacing:-0.015em; }
h4 { font-size:1rem; font-family:var(--font-head); font-weight:700; line-height:1.4; }
p  { color:var(--ink-mid); font-size:1rem; line-height:1.75; }
strong { color:var(--ink); font-weight:700; }

/* Highlighted text */
.hl-orange { color:var(--orange); }
.hl-hotel   { color:var(--hotel); }
.hl-green   { color:var(--restaurant); }

/* ─── Layout ─────────────────────────────────────── */
.wrap {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--pad);
}
section { padding-block: var(--sec-pad); }

/* ─── Badges ─────────────────────────────────────── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1.5px solid;
}
.tag-orange   { background:var(--orange-pale); color:var(--orange-dark); border-color:var(--orange-border); }
.tag-hotel    { background:var(--hotel-pale);  color:var(--hotel);       border-color:#bfdbfe; }
.tag-green    { background:var(--restaurant-pale); color:var(--restaurant); border-color:#bbf7d0; }
.tag-neutral  { background:var(--paper-warm); color:var(--ink-light); border-color:var(--rule); }

/* ─── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t);
    white-space: nowrap;
    line-height: 1;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    text-align: center;
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule);
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule);
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-dark {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.btn-dark:hover {
    background: var(--ink-mid);
}
.btn-hotel {
    background: var(--hotel);
    color: #fff;
    border-color: var(--hotel);
}
.btn-hotel:hover { background:#1e40af; border-color:#1e40af; transform:translateY(-1px); }
.btn-green {
    background: var(--restaurant);
    color: #fff;
    border-color: var(--restaurant);
}
.btn-green:hover { background:#15803d; border-color:#15803d; transform:translateY(-1px); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; justify-content: center; }

/* ─── Navigation ─────────────────────────────────── */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    background: var(--paper);
    border-bottom: 1.5px solid var(--rule);
    z-index: 1000;
    transition: border-color var(--t);
}
#main-nav.scrolled {
    border-bottom-color: var(--orange-border);
}
.nav-wrap {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.logo {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: -0.04em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}
.logo-dot { color: var(--orange); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex: 1;
    justify-content: center;
}
/* Hidden on desktop, only shows on mobile */
.sidebar-header { display: none !important; }
.mobile-menu-btn { display: none; }
.nav-link {
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-mid);
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.nav-link:hover { color: var(--orange); background: var(--orange-pale); }
.nav-link.current { color: var(--orange); font-weight: 700; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-btn {
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-mid);
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
}
.nav-drop-btn:hover { color: var(--orange); background: var(--orange-pale); }
.chevron { font-size: 0.7rem; transition: transform 0.2s; display: inline-block; }
.nav-drop:hover .chevron { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 0.6rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
    pointer-events: none;
}
/* Bridge hover gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}
.nav-drop:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-menu.mega-menu {
    width: 840px;
    max-width: 90vw;
    padding: 0.85rem 1rem 0.6rem 1rem;
    left: 50%;
    transform: translate(-50%, -6px);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 44px rgba(0,0,0,0.14);
    border: 1.5px solid var(--rule);
    background: var(--paper);
    box-sizing: border-box;
}
.nav-drop:hover .dropdown-menu.mega-menu {
    transform: translate(-50%, 0);
}

/* Mega Slider Core Layout */
.mega-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding: 0 1.8rem;
    box-sizing: border-box;
}

.mega-slider-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    box-sizing: border-box;
    padding: 0.25rem 0.15rem;
}

.mega-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 0.85rem 0.95rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1.5px solid var(--rule);
    background: #ffffff;
    box-sizing: border-box;
    flex: 0 0 calc(33.333% - 0.5rem) !important;
    min-width: calc(33.333% - 0.5rem) !important;
    position: relative;
}

/* Nav Arrows Inside Wrapper */
.mega-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--rule);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    transition: all 0.2s ease;
}

.mega-nav-btn:hover {
    background: var(--orange);
    color: #ffffff;
    border-color: var(--orange);
    box-shadow: 0 6px 18px rgba(234,88,12,0.3);
}

.mega-prev { left: 0; }
.mega-next { right: 0; }

/* Slider Dots Footer */
.mega-slider-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.6rem;
}

.mega-dots {
    display: flex;
    gap: 6px;
}

.mega-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mega-dots .dot.active {
    width: 22px;
    background: var(--orange);
}

.mega-card:hover {
    background: #ffffff;
    border-color: var(--orange-border);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.mega-card-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.55rem !important;
    margin-bottom: 0.25rem !important;
    width: 100% !important;
}
.drop-title {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    font-family: var(--font-head) !important;
    line-height: 1.2 !important;
    display: block !important;
    letter-spacing: -0.1px;
}
.mega-card:hover .drop-title {
    color: var(--orange) !important;
}
.mega-desc {
    display: block !important;
    font-size: 0.74rem !important;
    color: #64748b !important;
    line-height: 1.35 !important;
    margin: 0 0 0.5rem 0 !important;
    font-weight: 400 !important;
    width: 100% !important;
}
.mega-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    padding-top: 0.5rem !important;
    border-top: 1px dashed #e2e8f0 !important;
    margin-top: auto !important;
    width: 100% !important;
    list-style: none !important;
    padding-left: 0 !important;
}
.mega-features li {
    font-size: 0.74rem !important;
    color: #475569 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 5px !important;
    font-weight: 450 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    transition: transform 0.15s ease, color 0.15s ease;
}
.mega-card:hover .mega-features li {
    color: #334155 !important;
}
.mega-features li:hover {
    transform: translateX(2px);
    color: #0f172a !important;
}
.mega-features li .tick {
    color: #ea580c !important;
    font-weight: 900 !important;
    font-size: 0.72rem !important;
    flex-shrink: 0 !important;
    margin-top: 1px;
}
.drop-icon {
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.drop-icon-hotel   { background: #eff6ff; border: 1px solid #bfdbfe; }
.drop-icon-rest    { background: #f0fdf4; border: 1px solid #bbf7d0; }
.drop-icon-cafe    { background: #fff7ed; border: 1px solid #fed7aa; }
.drop-icon-karaoke { background: #f3e8ff; border: 1px solid #e9d5ff; }
.drop-icon-bida    { background: #e0f2fe; border: 1px solid #bae6fd; }
.drop-icon-massage { background: #fce7f3; border: 1px solid #fbcfe8; }
.nav-cta {
    flex-shrink: 0;
    padding: 0.55rem 1.25rem;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-md);
    transition: var(--t);
    font-family: var(--font-head);
    border: 2px solid var(--orange);
}
.nav-cta:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--ink-light);
    margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--ink-light); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--ink-faint); }

/* ─── Hero ─────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 640px;
    padding-top: var(--nav-h);
    border-bottom: 1.5px solid var(--rule);
    overflow: hidden;
    background: var(--paper);
    display: flex;
    align-items: center;
}

/* Full-bleed image panel — covers entire right portion */
.hero-right-panel {
    position: absolute;
    top: 0;
    padding-top: 30px;
    right: 0;
    width: 58%;
    height: 100%;
    z-index: 0;
}
.hero-right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}
/* Gradient: smooth blend only at the left edge to keep the main image clear */
.hero-panel-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%; /* Only cover the left 35% of the image */
    height: 100%;
    background: linear-gradient(to right, 
        var(--paper) 0%, 
        rgba(255,255,255,0.85) 30%, 
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
}

/* Left content — sits above the image layer */
.hero-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
}
.hero-content {
    max-width: 540px;
}



/* Outstanding features list */
.hero-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}
.hero-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.4;
    font-weight: 500;
}
.hfeat-icon {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--paper);
    background: #16a34a; /* green check */
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}


/* Kicker */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
    border: 1px solid var(--rule);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    background: var(--paper);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.hero-kicker-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Heading */
.hero-h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.85rem;
}
.hero-h1-accent { color: var(--orange); }

/* Compact product tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--rule);
    background: var(--paper);
    color: var(--ink);
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.hero-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.tag-h:hover { background: var(--hotel-pale); border-color: #bfdbfe; color: var(--hotel); }
.tag-r:hover { background: var(--restaurant-pale); border-color: #bbf7d0; color: var(--restaurant); }
.tag-c:hover { background: var(--orange-pale); border-color: var(--orange-border); color: var(--orange-dark); }

/* Lead */
.hero-lead {
    font-size: 1.05rem;
    color: var(--ink-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 460px;
}

/* CTAs */
.hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--rule);
    background: var(--paper);
    color: var(--ink-mid);
    transition: var(--t);
    white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--paper-warm); }
.btn-ghost.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hstat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hstat-num {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
}
.hstat-lab {
    font-size: 0.78rem;
    color: var(--ink-light);
    font-weight: 500;
}
.hstat-divider {
    width: 1px;
    height: 32px;
    background: var(--rule);
    flex-shrink: 0;
}

/* Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--ink-light);
}
.trust-dots { display: flex; }
.trust-dot {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid var(--paper);
    background: var(--orange-pale);
    margin-left: -6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--orange-dark);
}
.trust-dots .trust-dot:first-child { margin-left: 0; }

/* Floating product cards — anchored to the right-side image area */
.hero-float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.8);
    border-radius: 14px;
    padding: 0.85rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
    min-width: 200px;
    animation: floatCard 4s ease-in-out infinite;
}
.card-hotel {
    top: 16%;
    right: calc(58% - 220px);
    animation-delay: 0s;
}
.card-rest {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    animation-delay: 1.3s;
}
.card-cafe {
    bottom: 16%;
    right: calc(58% - 180px);
    animation-delay: 2.6s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.card-rest {
    animation: floatCardMid 4s ease-in-out infinite 1.3s;
}
@keyframes floatCardMid {
    0%, 100% { transform: translateY(-50%); }
    50%       { transform: translateY(calc(-50% - 8px)); }
}

.float-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.float-card-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.float-card-lab {
    font-size: 0.72rem;
    color: var(--ink-light);
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .hero-right-panel { width: 100%; opacity: 0.08; }
    .hero-panel-fade { width: 100%; background: rgba(255,255,255,0.85); }
    .hero-float-card { display: none; }
    .hero-content { max-width: 100%; }
}


/* ─── Stats bar ──────────────────────────────────── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1.5px solid var(--rule);
    border-bottom: 1.5px solid var(--rule);
}
.stat-cell {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1.5px solid var(--rule);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-light);
    line-height: 1.4;
}

/* ─── Marquee ────────────────────────────────────── */
.marquee-wrap {
    overflow: hidden;
    padding: 1.25rem 0;
    background: var(--paper-warm);
    border-bottom: 1.5px solid var(--rule);
}
.marquee-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--ink-faint);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: ticker 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    padding: 0 2.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink-faint);
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.marquee-item::after { content: ' ·'; margin-left: 2.5rem; }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ─── Section headings ───────────────────────────── */
.sec-header {
    margin-bottom: 3rem;
}
.sec-header.centered { text-align: center; }
.sec-header.centered .sec-desc { margin-inline: auto; }
.sec-title { margin-bottom: 0.75rem; }
.sec-desc { max-width: 540px; font-size: 1.025rem; color: var(--ink-mid); }

/* ─── Premium Product Cards ─────────────────────────── */
.premium-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
.premium-card {
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.1);
}
.premium-card:nth-child(1):hover { border-color: var(--hotel); }
.premium-card:nth-child(2):hover { border-color: var(--restaurant); }
.premium-card:nth-child(3):hover { border-color: var(--orange); }
.premium-card:nth-child(4):hover { border-color: var(--orange); }
.premium-card:nth-child(5):hover { border-color: var(--hotel); }
.premium-card:nth-child(6):hover { border-color: var(--restaurant); }

.premium-img {
    position: relative;
    background: var(--paper-warm);
    border-bottom: 1.5px solid var(--rule);
    padding: 1rem 1rem 0 1rem; /* Padding for the laptop frame */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
/* CSS Laptop Mockup */
.mockup-laptop-screen {
    width: 100%;
    background: #111;
    border: 6px solid #1a1a1a;
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}
.mockup-laptop-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px 2px 0 0;
}
.mockup-laptop-base {
    width: 115%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.15), 0 6px 10px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}
.mockup-laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 3px;
    background: #cbd5e1;
    border-radius: 0 0 4px 4px;
}
.premium-badge {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.4);
}
.badge-hotel { background: rgba(59,130,246,0.9); color: #fff; }
.badge-green { background: rgba(22,163,74,0.9); color: #fff; }
.badge-orange { background: rgba(234,88,12,0.9); color: #fff; }

.premium-content {
    padding: 2.5rem 2rem;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.premium-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    min-height: 3.4rem;
    display: flex;
    align-items: flex-start;
}
.premium-content p {
    font-size: 0.95rem;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}
.premium-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}
.premium-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.9rem;
}
.premium-content .btn-block {
    margin-top: auto;
}
.feat-tick {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    font-weight: 900;
}
.tick-orange { background: var(--orange-pale); color: var(--orange-dark); }
.tick-hotel  { background: var(--hotel-pale); color: var(--hotel); }
.tick-green  { background: var(--restaurant-pale); color: var(--restaurant); }

/* ─── Feature Zigzag ─────────────────────────────── */
.feat-pair {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    border-top: 1.5px solid var(--rule);
    align-items: stretch;
}
.feat-pair:first-child { border-top: none; }
.feat-img-col {
    border-right: 1.5px solid var(--rule);
    overflow: hidden;
    background: var(--paper-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}
.feat-pair.flip { grid-template-columns: 1fr 1.4fr; }
.feat-pair.flip .feat-img-col { order: 2; border-right: none; border-left: 1.5px solid var(--rule); }
.feat-img-col img { width: 100%; height: auto; object-fit: contain; display: block; max-height: none; }
.feat-text-col { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.feat-text-col .tag { margin-bottom: 1.25rem; }
.feat-text-col h2 { margin-bottom: 0.75rem; }
.feat-text-col > p { margin-bottom: 2rem; }
.feat-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.feat-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
}
.feat-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.feat-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--orange-border);
    background: var(--orange-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.feat-icon.hotel-icon { border-color: #bfdbfe; background: var(--hotel-pale); }
.feat-icon.green-icon { border-color: #bbf7d0; background: var(--restaurant-pale); }
.feat-list-text h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.feat-list-text p  { font-size: 0.875rem; margin: 0; }

/* ─── Core Feature Cards ─────────────────────────── */
.core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.core-card {
    padding: 2rem;
    border-right: 1.5px solid var(--rule);
    border-bottom: 1.5px solid var(--rule);
    transition: background var(--t);
}
.core-card:hover { background: var(--orange-pale); }
.core-card:nth-child(3n) { border-right: none; }
.core-card:nth-last-child(-n+3) { border-bottom: none; }
.core-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--orange-pale);
    border: 1.5px solid var(--orange-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.core-icon.hotel-c { background: var(--hotel-pale); border-color: #bfdbfe; }
.core-icon.green-c { background: var(--restaurant-pale); border-color: #bbf7d0; }
.core-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.core-card p  { font-size: 0.875rem; }

/* ─── Timeline ───────────────────────────────────── */
.timeline-section { background: var(--ink); }
.timeline-section h2 { color: var(--paper); }
.timeline-section .sec-desc { color: #9ca3af; }
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    position: relative;
    border: 1.5px solid #374151;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.t-step {
    padding: 2rem 1.75rem;
    border-right: 1.5px solid #374151;
    position: relative;
}
.t-step:last-child { border-right: none; }
.t-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.t-step h3 { color: var(--paper); font-size: 1rem; margin-bottom: 0.6rem; }
.t-step p  { color: #9ca3af; font-size: 0.875rem; }

/* ─── Testimonials ───────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.review-card {
    padding: 2.25rem;
    border-right: 1.5px solid var(--rule);
    border-bottom: 1.5px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.review-card:nth-child(3n) { border-right: none; }
.review-card:nth-last-child(-n+3) { border-bottom: none; }
.review-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; font-style: italic; color: var(--ink-mid); line-height: 1.75; flex: 1; font-family: var(--font-serif); }
.review-person {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1.5px solid var(--rule);
    padding-top: 1rem;
}
.rev-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange-pale);
    border: 1.5px solid var(--orange-border);
    color: var(--orange-dark);
    font-weight: 800;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rev-avatar.hotel-av { background:var(--hotel-pale); color:var(--hotel); border-color:#bfdbfe; }
.rev-avatar.green-av { background:var(--restaurant-pale); color:var(--restaurant); border-color:#bbf7d0; }
.rev-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.rev-role { font-size: 0.78rem; color: var(--ink-light); }

/* ─── Pricing ─────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-xl);
    overflow: hidden;
    align-items: start;
}
.price-card {
    padding: 2.25rem 2rem;
    border-right: 1.5px solid var(--rule);
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card:last-child { border-right: none; }
.price-card.featured { background: var(--orange-pale); border-right-color: var(--orange-border); }
.price-card.featured + .price-card { border-left: 1.5px solid var(--orange-border); }
.price-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0 0 8px 8px;
}
.price-plan { font-size: 0.75rem; font-weight: 700; color: var(--ink-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.price-amount {
    font-size: 2.25rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--ink-light); }
.price-note { font-size: 0.82rem; color: var(--ink-light); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1.5px solid var(--rule); }
.price-feats { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; flex: 1; }
.price-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--ink-mid); }
.price-feat.off { text-decoration: line-through; opacity: 0.5; }
.check-o { color: var(--orange); font-weight: 900; margin-top: 1px; font-size: 0.8rem; }
.cross-o { color: var(--ink-faint); margin-top: 1px; font-size: 0.8rem; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-wrap { max-width: 720px; }
.faq-wrap.centered { margin-inline: auto; }
.faq-item {
    border-bottom: 1.5px solid var(--rule);
}
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--t);
}
.faq-btn:hover { color: var(--orange); }
.faq-plus {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--ink-light);
    flex-shrink: 0;
    transition: var(--t);
    line-height: 1;
}
.faq-item.open .faq-plus {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: rotate(45deg);
}
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-panel p { padding: 0 0 1.25rem; font-size: 0.93rem; color: var(--ink-mid); line-height: 1.75; }
.faq-item.open .faq-panel { max-height: 300px; }

/* ─── CTA / Banner ───────────────────────────────── */
.cta-banner {
    background: var(--orange);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin: var(--sec-pad) 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); max-width: 480px; }
.cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-white {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
    font-weight: 700;
}
.btn-white:hover { background: var(--paper-warm); }
.btn-white-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ─── Form ────────────────────────────────────────── */
.form-card {
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 640px;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
}
.form-lbl {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.form-ctrl {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--paper-warm);
    outline: none;
    transition: border-color var(--t);
    margin-bottom: 1.1rem;
}
.form-ctrl:focus { border-color: var(--orange); background: var(--paper); }
.form-ctrl::placeholder { color: var(--ink-faint); }

/* ─── Footer ──────────────────────────────────────── */
footer {
    background: var(--ink);
    color: var(--paper);
    padding-top: 4rem;
}
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1.5px solid #374151;
}
.foot-brand .logo { color: var(--paper); margin-bottom: 1rem; display: inline-block; }
.foot-brand p { color: #6b7280; font-size: 0.875rem; line-height: 1.7; }
.foot-col h5 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--paper);
    margin-bottom: 1.1rem;
}
.foot-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col ul li a { color: #6b7280; font-size: 0.875rem; transition: color var(--t); }
.foot-col ul li a:hover { color: var(--orange); }
.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
.foot-copy { font-size: 0.8rem; color: #4b5563; }
.foot-socials { display: flex; gap: 0.6rem; }
.soc-btn {
    width: 32px; height: 32px;
    border-radius: 6px;
    background: #1f2937;
    color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: var(--t);
}
.soc-btn:hover { background: var(--orange); color: #fff; }

/* ─── Product Page Hero ───────────────────────────── */
.prod-hero {
    padding-top: calc(var(--nav-h) + 25px);
    padding-bottom: 0;
    border-bottom: 1.5px solid var(--rule);
}
.prod-hero-text { padding-bottom: 3rem; }
.prod-hero-text h1 { margin-bottom: 1rem; }
.prod-hero-text .lead { font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; }
.prod-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.prod-hero-img {
    overflow: hidden;
}
.prod-hero-img img { width: 100%; display: block; }

/* ─── Comparison Table ───────────────────────────── */
.pricing-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--rule);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    -webkit-overflow-scrolling: touch;
}
.compare-table { width: 100%; min-width: 900px; border-collapse: collapse; overflow: hidden; }
.compare-table th { padding: 1.1rem 1.25rem; text-align: left; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; background: var(--paper-warm); border-bottom: 1.5px solid var(--rule); }
.compare-table td { padding: 0.9rem 1.1rem; font-size: 0.9rem; border-bottom: 1px solid var(--rule); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #fcfcfb; }
.compare-table tr:hover td { background: #f8fafc; }
.c-yes { color: #16a34a; font-weight: 700; }
.c-no  { color: #dc2626; }
.c-partial { color: #d97706; font-weight: 600; font-size: 0.82rem; }
.th-main { color: var(--orange); }

/* Mobile Pricing Native Cards Layout (Zero Horizontal Scroll) */
.mobile-pricing-list {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .pricing-table-wrap {
        display: none !important;
    }
    .mobile-pricing-list {
        display: flex !important;
    }
    .m-price-card {
        background: #ffffff;
        border: 1.5px solid var(--rule);
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.04);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .m-price-head {
        display: flex;
        align-items: center;
        gap: 0.85rem;
    }
    .m-price-icon {
        font-size: 1.8rem;
        width: 46px;
        height: 46px;
        background: var(--paper-warm);
        border: 1.5px solid var(--rule);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .m-price-head h4 {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--ink);
        margin-bottom: 0.2rem;
    }
    .m-price-badge {
        font-size: 0.75rem;
        font-weight: 700;
        color: #16a34a;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        padding: 2px 8px;
        border-radius: 6px;
        display: inline-block;
    }
    .m-price-feats {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        border-top: 1px dashed var(--rule);
        padding-top: 0.85rem;
    }
    .m-price-feats li {
        font-size: 0.88rem;
        color: var(--ink-mid);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* ─── Reveal animation ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
/* Hero always visible */
.hero-section .reveal { opacity: 1; transform: none; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .premium-products-grid { grid-template-columns: 1fr; }
    .premium-card { border-right: none; border-bottom: 1.5px solid var(--rule); margin-bottom: 1.5rem; }
    .premium-card:last-child { border-bottom: none; margin-bottom: 0; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .pricing-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
    .price-card { border-right: none; border-bottom: 1.5px solid var(--rule); }
    .price-card:last-child { border-bottom: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { border-right: none; border-bottom: 1.5px solid var(--rule); }
    .review-card:last-child { border-bottom: none; }
    .cta-banner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 2rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(3) { border-top: 1.5px solid var(--rule); }
    .stat-cell:nth-child(4) { border-top: 1.5px solid var(--rule); border-right: none; }
    .core-grid { grid-template-columns: 1fr 1fr; }
    .core-card:nth-child(3n) { border-right: 1.5px solid var(--rule); }
    .core-card:nth-child(2n) { border-right: none; }
    .timeline-grid { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); }
    .t-step:nth-child(2) { border-right: none; }
    .t-step:nth-child(3) { border-top: 1.5px solid #374151; }
    .t-step:nth-child(4) { border-top: 1.5px solid #374151; border-right: none; }
}
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-lead { max-width: 100%; }
    .feat-pair, .feat-pair.flip { grid-template-columns: 1fr; }
    .feat-img-col { min-height: 240px; border-right: none; border-bottom: 1.5px solid var(--rule); padding: 1.5rem; }
    .feat-pair.flip .feat-img-col { order: -1; border-left: none; border-bottom: 1.5px solid var(--rule); }
    .feat-text-col { padding: 2.5rem 1.5rem; }
}
@media (max-width: 768px) {
    :root { 
        --sec-pad: 32px; 
        --pad: 12px;
    }
    .logo-ext { display: none; }
    .hero-wrap { padding-top: 24px; padding-bottom: 24px; }
    .mobile-menu-btn { display: block !important; }
    .mobile-close-btn { display: block !important; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 310px;
        max-width: 88vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        box-shadow: none;
        transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.38s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-links.active {
        right: 0;
        box-shadow: -2px 0 12px rgba(0,0,0,0.06);
    }

    /* ── Sidebar Header (Logo + Close) ── */
    .sidebar-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem 1rem 1.25rem;
        border-bottom: 1px solid #f1f5f9;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 2;
    }
    .sidebar-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--ink);
        font-family: var(--font-head);
    }
    .sidebar-logo span { color: var(--orange); }

    /* ── Sidebar Nav Items ── */
    .nav-links > li:not(.sidebar-header) { 
        width: 100%; 
        margin: 0;
        border-bottom: 1px solid #f8fafc;
    }
    .nav-link, .nav-drop-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 0.975rem;
        font-weight: 600;
        padding: 0.9rem 1.25rem;
        border-radius: 0;
        background: transparent;
        color: #1e293b;
        border: none;
        transition: background 0.18s ease, color 0.18s ease;
        font-family: inherit;
        letter-spacing: 0;
    }
    .nav-link:hover, .nav-drop-btn:hover {
        background: #fff7f0;
        color: var(--orange);
    }
    .nav-drop.active .nav-drop-btn {
        background: #fff7f0;
        color: var(--orange);
    }
    .nav-drop-btn .chevron {
        width: 22px; height: 22px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        background: #f1f5f9;
        font-size: 0.7rem;
        transition: transform 0.28s ease, background 0.18s ease;
    }
    .nav-drop.active .chevron {
        transform: rotate(180deg);
        background: #fff0e5;
        color: var(--orange);
    }

    /* ── Close Button ── */
    .mobile-close-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 34px; height: 34px;
        border-radius: 8px;
        background: #f1f5f9 !important;
        color: #64748b !important;
        border: none !important;
        font-size: 1.3rem !important;
        font-weight: 400 !important;
        cursor: pointer;
        transition: background 0.18s, color 0.18s;
        position: static !important;
        top: unset !important; right: unset !important;
        flex-shrink: 0;
    }
    .mobile-close-btn:hover {
        background: #fee2e2 !important;
        color: #dc2626 !important;
    }

    /* ── Sub-menu dropdown ── */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0.75rem 0.75rem;
        display: none;
        margin: 0;
        background: #fafafa;
        border-top: 1px solid #f1f5f9;
    }
    .nav-drop.active .dropdown-menu {
        display: block;
        animation: sideSlide 0.25s ease;
    }
    @keyframes sideSlide {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Product cards inside dropdown for mobile ── */
    .dropdown-menu.mega-menu {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0.5rem 0 !important;
        box-sizing: border-box !important;
    }
    .mega-slider-wrapper {
        padding: 0 !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    .mega-slider-track {
        flex-direction: column !important;
        gap: 0.6rem !important;
        overflow: visible !important;
        width: 100% !important;
    }
    .mega-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 0.75rem 0.85rem !important;
        background: #fff !important;
        border: 1.5px solid var(--rule) !important;
        border-radius: var(--radius-sm) !important;
        width: 100% !important;
        min-width: 100% !important;
        flex: 1 1 100% !important;
        box-sizing: border-box !important;
    }
    .mega-nav-btn, .mega-slider-footer {
        display: none !important;
    }
    .nav-cta { padding: 0.5rem 0.8rem; font-size: 0.8rem; }
    .foot-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .foot-bottom { flex-direction: column; gap: 1rem; }
    .core-grid { grid-template-columns: 1fr; }
    .core-card:nth-child(n) { border-right: none; border-bottom: 1.5px solid var(--rule); padding: 1.5rem 1.25rem; }
    .core-card:last-child { border-bottom: none; }
    .timeline-grid { grid-template-columns: 1fr; border-radius: var(--radius-md); }
    .t-step { border-right: none; border-bottom: 1.5px solid #374151; padding: 1.5rem 1.25rem; }
    .t-step:last-child { border-bottom: none; }
    .form-card { padding: 1.5rem 1rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-cell { padding: 1.5rem 1rem; }
    .price-card { padding: 1.5rem 1.25rem; }
    .review-card { padding: 1.5rem 1.25rem; }
    .cta-banner { padding: 2rem 1.25rem; }
    .feat-text-col { padding: 1.5rem 1rem; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
}

/* ─── Blog / Bài Viết ────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.blog-card {
    border-right: 1.5px solid var(--rule);
    display: flex;
    flex-direction: column;
    transition: background var(--t);
}
.blog-card:last-child { border-right: none; }
.blog-card:hover { background: var(--orange-pale); }
.blog-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 1.5px solid var(--rule);
    background: var(--paper-warm);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.03); }
.blog-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.65rem; }
.blog-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-cat {
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.6px;
    padding: 0.2rem 0.55rem; border-radius: 4px;
}
.blog-cat-hotel { background: var(--hotel-pale); color: var(--hotel); }
.blog-cat-rest   { background: var(--restaurant-pale); color: var(--restaurant); }
.blog-cat-cafe   { background: var(--orange-pale); color: var(--orange-dark); }
.blog-cat-all    { background: var(--paper-warm); color: var(--ink-light); border: 1px solid var(--rule); }
.blog-date { font-size: 0.75rem; color: var(--ink-faint); font-weight: 500; }
.blog-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.4; color: var(--ink); }
.blog-card:hover .blog-title { color: var(--orange-dark); }
.blog-excerpt { font-size: 0.85rem; color: var(--ink-light); line-height: 1.65; flex: 1; }
.blog-footer {
    padding: 1rem 1.5rem; border-top: 1.5px solid var(--rule);
    display: flex; align-items: center; justify-content: space-between;
}
.blog-author { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; }
.blog-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--orange-pale); border: 1.5px solid var(--orange-border);
    color: var(--orange-dark); font-weight: 800; font-size: 0.7rem;
    display: flex; align-items: center; justify-content: center;
}
.blog-author-name { font-weight: 600; color: var(--ink); }
.blog-readtime { font-size: 0.75rem; color: var(--ink-faint); }
.blog-read-link { font-size: 0.78rem; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 4px; }
.blog-read-link:hover { text-decoration: underline; }
/* Featured card */
.blog-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1.5px solid var(--rule); border-radius: var(--radius-xl);
    overflow: hidden; margin-bottom: 2rem; transition: background var(--t);
}
.blog-featured:hover { background: var(--orange-pale); }
.blog-featured .blog-thumb { border-bottom: none; border-right: 1.5px solid var(--rule); aspect-ratio: auto; min-height: 280px; }
.blog-featured .blog-body { padding: 2.5rem; justify-content: center; gap: 0.85rem; }
.blog-featured .blog-title { font-size: 1.35rem; }
.blog-featured .blog-excerpt { font-size: 0.9rem; }
/* Article page */
.article-wrap { max-width: 740px; margin-inline: auto; padding-inline: var(--pad); }
.article-header { padding-top: calc(var(--nav-h) + 25px); padding-bottom: 2.5rem; border-bottom: 1.5px solid var(--rule); margin-bottom: 2.5rem; }
.article-header h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.article-meta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-light); }
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--rule); margin-bottom: 2.5rem; }
.article-hero-img img { width: 100%; display: block; }
.article-body { font-size: 1.025rem; line-height: 1.85; color: var(--ink-mid); }
.article-body h2 { color: var(--ink); font-size: 1.4rem; margin: 2.25rem 0 0.75rem; padding-top: 2rem; border-top: 1.5px solid var(--rule); }
.article-body h3 { color: var(--ink); font-size: 1.1rem; margin: 1.75rem 0 0.6rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.article-body strong { color: var(--ink); }
.article-body blockquote {
    border-left: 3px solid var(--orange); padding: 1rem 1.5rem;
    background: var(--orange-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0; font-family: var(--font-serif); font-style: italic; color: var(--ink-mid);
}
.article-body .callout {
    border: 1.5px solid var(--orange-border); background: var(--orange-pale);
    border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.75rem 0;
}
.article-body .callout strong { color: var(--orange-dark); }
.article-cta {
    border: 1.5px solid var(--orange); border-radius: var(--radius-lg);
    padding: 2rem; background: var(--orange-pale); text-align: center; margin: 2.5rem 0;
}
.article-cta h4 { color: var(--ink); margin-bottom: 0.5rem; }
.article-cta p  { font-size: 0.9rem; margin-bottom: 1.25rem; }
/* Filter tabs */
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
    padding: 0.45rem 1rem; border-radius: 100px; border: 1.5px solid var(--rule);
    background: var(--paper); font-size: 0.82rem; font-weight: 700;
    color: var(--ink-light); cursor: pointer; transition: var(--t); font-family: var(--font-body);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card:nth-child(2n) { border-right: none; }
    .blog-card { border-bottom: 1.5px solid var(--rule); }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured .blog-thumb { border-right: none; border-bottom: 1.5px solid var(--rule); min-height: 220px; }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { border-right: none; border-bottom: 1.5px solid var(--rule); }
}

/* ─── CSS Laptop Mockup ──────────────────────────── */
.mockup-laptop-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.mockup-laptop-screen {
    width: 90%;
    background: #111;
    border: 6px solid #1a1a1a;
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}
.mockup-laptop-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px 2px 0 0;
}
.mockup-laptop-base {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.15), 0 6px 12px rgba(0,0,0,0.1);
}
.mockup-laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 4px;
    background: #cbd5e1;
    border-radius: 0 0 4px 4px;
}
