/* ================================================================
   ZEAH PROPERTY INVESTMENTS — Stylesheet
   Mediterranean Editorial Luxury
   ================================================================ */

/* ===== 1. CSS VARIABLES ===== */
:root {
    /* Colour palette */
    --midnight:      #0b1a2a;
    --deep:          #122536;
    --primary:       #1a3a52;
    --gold:          #c4a24e;
    --gold-hover:    #d4b462;
    --gold-subtle:   rgba(196,162,78,0.12);
    --cream:         #faf7f0;
    --sand:          #f0ebe2;
    --white:         #ffffff;
    --text:          #1e2832;
    --text-light:    #6b7785;
    --text-on-dark:  rgba(255,255,255,0.85);
    --border:        rgba(0,0,0,0.08);
    --border-light:  rgba(255,255,255,0.1);

    /* Shadows */
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:     0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg:     0 20px 60px rgba(0,0,0,0.12);
    --shadow-gold:   0 8px 30px rgba(196,162,78,0.22);

    /* Typography */
    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Outfit', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad:   clamp(80px, 10vw, 140px);
    --container:     1200px;
    --gap:           2rem;
    --gap-lg:        4rem;

    /* Motion */
    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:      cubic-bezier(0.33, 1, 0.68, 1);
    --dur:           0.6s;
    --dur-fast:      0.3s;

    /* Radii */
    --radius:        16px;
    --radius-sm:     8px;
    --radius-lg:     24px;
    --radius-pill:   100px;
}

/* ===== 2. RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; cursor: pointer; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* ===== 3. TYPOGRAPHY ===== */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: var(--gold);
    margin: 1.1rem auto 0;
}

.section-sub {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== 4. LAYOUT ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

/* ===== 5. BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease),
                box-shadow var(--dur-fast) var(--ease),
                background var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease),
                color var(--dur-fast) var(--ease);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--border);
}
.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== 6. SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    z-index: 9999;
    transition: width 0.08s linear;
    pointer-events: none;
}

/* ===== 7. BACK TO TOP ===== */
.back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--dur-fast), visibility var(--dur-fast), transform var(--dur-fast), background var(--dur-fast);
    z-index: 1000;
}
.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-top:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
}

/* ===== 8. NAVIGATION ===== */
nav {
    position: fixed;
    left: 0; right: 0;
    top: 14px;
    margin-inline: auto;
    max-width: 1240px;
    padding: 10px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 1200;
    transition: transform 0.45s var(--ease), box-shadow 0.35s var(--ease);
}
nav.scrolled {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10,20,30,0.09);
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 700;
    z-index: 1201;
    flex-shrink: 0;
}
.brand .mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; }
.brand .word { display: flex; flex-direction: column; line-height: 1.1; }
.brand .word strong { font-size: 15px; letter-spacing: 0.4px; }
.brand .word span { font-size: 12px; color: var(--text-light); font-weight: 600; }

/* Nav links */
.links {
    display: flex;
    gap: 6px;
    align-items: center;
}
.links a {
    color: var(--text);
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color var(--dur-fast) var(--ease),
                background var(--dur-fast) var(--ease);
    white-space: nowrap;
    position: relative;
}
.links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--dur-fast) var(--ease);
}
.links a:hover::after,
.links a.current::after {
    transform: scaleX(1);
}
.links a:hover,
.links a.current {
    color: var(--primary);
}

/* Nav right cluster */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1201;
    flex-shrink: 0;
}

/* Portal CTA */
.portal-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--white);
    padding: 9px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(196,162,78,0.2);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.portal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196,162,78,0.28);
}

/* ===== 9. LANGUAGE SELECTOR ===== */
.lang-selector { position: relative; }

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 7px 11px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}
.lang-trigger:hover { border-color: rgba(0,0,0,0.15); }
.lang-trigger::after {
    content: "";
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-light);
    transition: transform 0.2s var(--ease);
}
.lang-selector.active .lang-trigger::after { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s var(--ease);
    z-index: 1300;
    overflow: hidden;
}
.lang-selector.active .lang-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(26,58,82,0.04); }
.lang-option.active { background: rgba(26,58,82,0.07); color: var(--primary); }

.lang-flag {
    width: 20px; height: 15px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* CSS-only flags */
.flag-us {
    background: linear-gradient(to bottom,
        #b31942 0%,#b31942 16.66%,#fff 16.66%,#fff 33.33%,
        #b31942 33.33%,#b31942 50%,#fff 50%,#fff 66.66%,
        #b31942 66.66%,#b31942 83.33%,#fff 83.33%,#fff 100%);
    position: relative;
}
.flag-us::before {
    content:""; position:absolute; top:0; left:0;
    width:40%; height:54%; background:#0a3161;
}

.flag-pt {
    background: linear-gradient(to right, #006600 0%,#006600 40%,#ff0000 40%,#ff0000 100%);
    position: relative;
}
.flag-pt::before {
    content:""; position:absolute; top:25%; left:20%;
    width:20%; height:50%;
    background:
        radial-gradient(circle at center,#ffff00 0%,#ffff00 40%,transparent 40%),
        linear-gradient(to bottom,#ffff00 0%,#ffff00 33%,#fff 33%,#fff 66%,#ff0000 66%,#ff0000 100%);
    border-radius: 2px;
}

.flag-fr {
    background: linear-gradient(to right,
        #0055a4 0%,#0055a4 33.33%,
        #fff 33.33%,#fff 66.66%,
        #ef4135 66.66%,#ef4135 100%);
}

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--white);
    transition: background var(--dur-fast);
}
.hamburger span {
    display: block; width: 18px; height: 2px;
    background: var(--primary); border-radius: 2px;
    position: relative;
    transition: background var(--dur-fast);
}
.hamburger span::before,
.hamburger span::after {
    content:''; position:absolute; left:0;
    width:18px; height:2px;
    background: var(--primary); border-radius:2px;
    transition: all var(--dur-fast);
}
.hamburger span::before { top: -6px; }
.hamburger span::after  { top:  6px; }

.hamburger.active span { background: transparent; }
.hamburger.active span::before { top:0; transform:rotate(45deg); }
.hamburger.active span::after  { top:0; transform:rotate(-45deg); }

/* ===== 10. HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--midnight);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* Background image layer — Ken Burns slow zoom + drift */
.hero::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: url('background.png') center / cover no-repeat;
    opacity: 0.28;
    animation: heroBg 25s ease-in-out infinite alternate;
}

/* Gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 75%, rgba(196,162,78,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(18,37,54,0.5) 0%, transparent 55%),
        linear-gradient(180deg, rgba(11,26,42,0.3) 0%, rgba(11,26,42,0.7) 100%);
}

/* Logo watermark */
.hero-logo-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 2s var(--ease) 0.6s forwards;
}
.hero-logo-bg img {
    width: clamp(280px, 42vw, 520px);
    height: clamp(280px, 42vw, 520px);
    object-fit: contain;
    filter: brightness(2) contrast(0.5);
    opacity: 0.12;
    animation: logoFloat 20s ease-in-out infinite;
}

/* Floating ambient shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-shape-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(196,162,78,0.07) 0%, transparent 70%);
    top: -120px; right: -120px;
    animation: heroFloat 18s ease-in-out infinite;
}
.hero-shape-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(196,162,78,0.05) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    animation: heroFloat 22s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    top: 40%; left: 15%;
    animation: heroFloat 15s ease-in-out infinite 3s;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 1.8rem;
    font-style: italic;
}
.hero-title .line {
    display: block;
    overflow: hidden;
}
.hero-title .line span {
    display: block;
    transform: translateY(110%);
    animation: slideUp 1s var(--ease) forwards, titleBreathe 4s ease-in-out 2s infinite;
}
.hero-title .line:nth-child(2) span { animation-delay: 0.18s, 2.15s; }

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-on-dark);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    color: rgba(255,255,255,0.4);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}
.scroll-line {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDash 2s ease-in-out infinite;
}

/* ===== 11. TRUST STRIP ===== */
.trust {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, #f0f0f0 100%);
    border-top: 3px solid var(--gold);
    padding: 3.5rem 24px;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.trust-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--gold-subtle);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.trust-item div { text-align: left; }
.trust-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.1;
}
.trust-item span {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Platform showcase (inside trust section) */
.platform-showcase {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--border);
}
.platform-header { text-align: center; margin-bottom: 3rem; }
.platform-title::after { margin: 1rem auto 0; }

.platform-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    min-width: 0;
}

.mockup-dots-nav { display: none; }
.dash-mockups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.dash-mockups .dash-window {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dash-mockups .dash-body {
    flex: 1;
}
.dash-mockups .dash-mockup {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dash-mockups .dash-mockup > .dash-window {
    flex: 1;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    min-width: 0;
}

/* ===== ANIMATED DASHBOARD MOCKUP ===== */
.dash-mockup { perspective: 900px; }

.dash-window {
    background: var(--midnight);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06);
    transform: rotateY(-2deg) rotateX(1deg);
    transition: transform 0.5s var(--ease);
}
.dash-mockup:hover .dash-window {
    transform: rotateY(0) rotateX(0);
}

/* Title bar */
.dash-titlebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #0e1a26;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots i {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: block;
}
.dash-dots i:nth-child(1) { background: #ff5f57; }
.dash-dots i:nth-child(2) { background: #febc2e; }
.dash-dots i:nth-child(3) { background: #28c840; }
.dash-url {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-sans);
    background: rgba(255,255,255,0.05);
    padding: 3px 12px;
    border-radius: 4px;
    flex: 1;
    text-align: center;
}

/* Body layout */
.dash-body {
    display: flex;
    min-height: 320px;
}

/* Sidebar */
.dash-sidebar {
    width: 48px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 4px;
}
.dash-logo {
    width: 28px; height: 28px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}
.dash-logo img { width: 100%; height: 100%; object-fit: cover; }
.dash-nav-item {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    position: relative;
    transition: color 0.2s, background 0.2s;
}
.dash-nav-item.active {
    color: var(--gold);
    background: rgba(196,162,78,0.12);
}
.dash-badge {
    position: absolute;
    top: 3px; right: 3px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgeBounce 2s ease-in-out infinite;
}

/* Main area */
.dash-main {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Stats row */
.dash-stats {
    display: flex;
    gap: 8px;
}
.dash-stat {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    animation: dashFadeIn 0.5s var(--ease) 0.8s forwards;
}
.dash-stat:nth-child(2) { animation-delay: 1s; }
.dash-stat:nth-child(3) { animation-delay: 1.2s; }
.dash-stat-label {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dash-stat-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}
.dash-stat-change {
    font-size: 0.6rem;
    font-weight: 600;
}
.dash-stat-change.up { color: #22c55e; }
.dash-stat-change.neutral { color: rgba(0,0,0,0.3); }

/* Chart */
.dash-chart {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px 12px;
    flex: 1;
}
.dash-chart-title {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}
.dash-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--gold), rgba(196,162,78,0.5));
    border-radius: 3px 3px 0 0;
    height: 0;
    animation: barGrow 0.8s var(--ease) forwards;
    position: relative;
    min-width: 0;
}
.dash-bar:nth-child(1) { animation-delay: 1.4s; }
.dash-bar:nth-child(2) { animation-delay: 1.55s; }
.dash-bar:nth-child(3) { animation-delay: 1.7s; }
.dash-bar:nth-child(4) { animation-delay: 1.85s; }
.dash-bar:nth-child(5) { animation-delay: 2s; }
.dash-bar:nth-child(6) { animation-delay: 2.15s; }
.dash-bar span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.48rem;
    color: rgba(255,255,255,0.25);
    white-space: nowrap;
}

/* Top layout: left col (stats + chart) + right col (market + pie) */
.dash-top-layout {
    display: flex;
    gap: 8px;
    flex: 1;
    min-height: 0;
}
.dash-left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.dash-right-col {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Line chart SVG */
.dash-line-chart {
    width: 100%;
    overflow: visible;
}
.dash-line-chart svg {
    width: 100%;
    height: auto;
    display: block;
}
.chart-grid { stroke: rgba(255,255,255,0.06); stroke-width: 0.5; }
.chart-y { fill: rgba(255,255,255,0.25); font-size: 7px; text-anchor: end; font-family: var(--font-sans); }
.chart-x { fill: rgba(255,255,255,0.25); font-size: 7px; text-anchor: middle; font-family: var(--font-sans); }
.line-prev { fill: none; stroke: rgba(255,255,255,0.15); stroke-width: 1.5; stroke-dasharray: 4 3; }
.area-curr { opacity: 1; }
.line-curr { fill: none; stroke: var(--gold); stroke-width: 2; }
.line-dot-web { fill: var(--gold); }

/* Mini cards (market analysis, pie) */
.dash-mini-card {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Mini map */
.mini-map {
    position: relative;
    height: 28px;
    background: linear-gradient(135deg, rgba(26,58,82,0.3), rgba(26,58,82,0.15));
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2px;
}
.mini-map-pin {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.mini-map-pin.you {
    top: 40%;
    left: 45%;
    width: auto;
    height: auto;
    background: none;
    color: var(--gold);
    font-size: 0.5rem;
}
.mini-map-pin.c1 { top: 30%; left: 25%; }
.mini-map-pin.c2 { top: 55%; left: 65%; }
.mini-map-pin.c3 { top: 35%; left: 75%; }
.mini-map-grid {
    position: absolute;
    background: rgba(255,255,255,0.04);
}
.mini-map-grid.h1, .mini-map-grid.h2 { width: 100%; height: 1px; }
.mini-map-grid.h1 { top: 35%; }
.mini-map-grid.h2 { top: 65%; }
.mini-map-grid.v1, .mini-map-grid.v2 { width: 1px; height: 100%; }
.mini-map-grid.v1 { left: 35%; }
.mini-map-grid.v2 { left: 70%; }
.mini-map-label {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 0.32rem;
    color: rgba(255,255,255,0.25);
}

/* Mini market analysis */
.mini-market { display: flex; flex-direction: column; gap: 3px; }
.mini-market-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.42rem;
    color: #000;
}
.mini-market-row.you { color: var(--gold); }
.mini-market-row .fa-star { font-size: 0.3rem; }
.mini-mkt-name { width: 42px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-mkt-bar {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--gold);
}
.mini-mkt-bar.grey { background: rgba(255,255,255,0.15); }
.mini-mkt-price { font-size: 0.42rem; width: 30px; text-align: right; flex-shrink: 0; }
.mini-market-footer {
    font-size: 0.4rem;
    color: #22c55e;
    margin-top: 2px;
}
.mini-market-footer .fa-check-circle { font-size: 0.35rem; margin-right: 2px; }

/* Mini pie chart */
.mini-pie-wrap {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 2px auto;
}
.mini-pie {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #692507 0% 65%,
        #c4a24e 65% 75%,
        #1a3a52 75% 100%
    );
}
.mini-pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    background: rgba(11,26,42,0.85);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 0.38rem;
    color: #000;
}
.mini-pie-legend span { display: flex; align-items: center; gap: 3px; }

/* Live feed */
.dash-feed {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dash-feed-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.55);
    opacity: 0;
    transform: translateX(-10px);
    animation: feedSlide 0.5s var(--ease) forwards;
    border-left: 2px solid transparent;
}
.dash-feed-item:nth-child(1) { animation-delay: 2.5s; }
.dash-feed-item:nth-child(2) { animation-delay: 3s; }
.dash-feed-item:nth-child(3) { animation-delay: 3.5s; }

.dash-feed-item.msg   { border-left-color: #3b82f6; }
.dash-feed-item.msg i { color: #3b82f6; }
.dash-feed-item.alert   { border-left-color: #22c55e; }
.dash-feed-item.alert i { color: #22c55e; }
.dash-feed-item.doc   { border-left-color: var(--gold); }
.dash-feed-item.doc i { color: var(--gold); }
.dash-feed-item i { font-size: 0.65rem; flex-shrink: 0; }

/* ===== LIGHT THEME MOCKUP ===== */
.dash-light {
    background: #fafafa;
}
.dash-titlebar.light {
    background: #f0f0f0;
    border-bottom-color: #e0e0e0;
}
.dash-titlebar.light .dash-url {
    color: rgba(0,0,0,0.35);
    background: rgba(0,0,0,0.04);
}
.dash-sidebar.light {
    background: #f5f5f5;
    border-right-color: #e8e8e8;
}
.dash-sidebar.light .dash-nav-item {
    color: rgba(0,0,0,0.3);
}
.dash-sidebar.light .dash-nav-item.active {
    color: var(--gold);
    background: var(--gold-subtle);
}
.dash-light .dash-stat {
    background: #fff;
    border-color: #e8e8e8;
}
.dash-light .dash-stat-label { color: rgba(0,0,0,0.4); }
.dash-light .dash-stat-value { color: var(--text); }
.dash-light .dash-chart {
    background: #fff;
    border-color: #e8e8e8;
}
.dash-light .dash-chart-title { color: rgba(0,0,0,0.4); }
.dash-light .dash-bar span { color: rgba(0,0,0,0.3); }
.dash-light .dash-feed-item {
    background: #fff;
    color: var(--text-light);
}

/* Chat mockup */
.dash-chat {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.dash-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 10px;
}
.dash-chat-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    overflow: hidden;
}
.dash-chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dash-chat-avatar.lg { width: 38px; height: 38px; }
.dash-role {
    display: block;
    font-size: 0.5rem;
    color: rgba(0,0,0,0.4);
    font-weight: 500;
    margin-top: -1px;
}
.dash-chat-avatar.headshot {
    background: linear-gradient(135deg, #c97b4b, #a85d32);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.dash-chat-header strong { font-size: 0.7rem; color: var(--text); display: block; }
.dash-online { font-size: 0.55rem; color: #22c55e; font-weight: 600; }

.dash-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}
.dash-msg {
    max-width: 80%;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 0.6rem;
    line-height: 1.45;
    opacity: 0;
    animation: feedSlide 0.4s var(--ease) forwards;
}
.dash-msg.received {
    background: #f0f0f0;
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}
.dash-msg.sent {
    background: var(--primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}
.dash-msg:nth-child(1) { animation-delay: 0.8s; }
.dash-msg:nth-child(2) { animation-delay: 1.4s; }
.dash-msg:nth-child(3) { animation-delay: 2s; }
.dash-msg:nth-child(4) { animation-delay: 2.6s; }
.dash-msg:nth-child(5) { animation-delay: 3.2s; }

.dash-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.6rem;
    color: rgba(0,0,0,0.3);
}
.dash-chat-input i { color: var(--gold); font-size: 0.7rem; }

/* ===== MOCKUP 1: ENHANCED ANIMATIONS ===== */

/* Loading shimmer bar */
.dash-shimmer {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out 0.5s 1 forwards;
    opacity: 0;
}

/* Stat glow pulse after appearing */
.dash-stat.glow-in {
    opacity: 0;
    animation: dashFadeIn 0.5s var(--ease) 0.8s forwards, statGlow 3s ease-in-out 2s infinite;
}
.dash-stat.glow-in:nth-child(2) { animation-delay: 1s, 2.2s; }
.dash-stat.glow-in:nth-child(3) { animation-delay: 1.2s, 2.4s; }

/* Best bar highlight */
.dash-bar.best {
    background: linear-gradient(180deg, var(--gold), rgba(196,162,78,0.7));
    box-shadow: 0 0 12px rgba(196,162,78,0.3);
}

/* Feed new-item dot */
.feed-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pingPulse 2s ease-out infinite;
}
.feed-time {
    font-size: 0.5rem;
    color: rgba(0,0,0,0.3);
    margin-left: auto;
    white-space: nowrap;
}

/* ===== MOCKUP 2: REAL-TIME TYPING ===== */

/* Typing indicator */
.dash-typing {
    display: flex;
    gap: 3px;
    align-self: flex-start;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 12px;
    border-bottom-left-radius: 3px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.dash-typing span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #aaa;
    animation: typingDot 1.2s ease-in-out infinite;
}
.dash-typing span:nth-child(2) { animation-delay: 0.2s; }
.dash-typing span:nth-child(3) { animation-delay: 0.4s; }

/* Typing + message sequence timings */
.dash-typing.t1 { animation: typingReveal 1.5s var(--ease) 0.6s forwards; }
.dash-msg.m1    { animation: msgAppear 0.4s var(--ease) 2.1s forwards; }
.dash-msg.m2    { animation: msgAppear 0.4s var(--ease) 3.2s forwards; }
.dash-typing.t2 { animation: typingReveal 1.5s var(--ease) 4s forwards; }
.dash-msg.m3    { animation: msgAppear 0.4s var(--ease) 5.5s forwards; }
.dash-msg.m4    { animation: msgAppear 0.4s var(--ease) 6.8s forwards; }
.dash-typing.t3 { animation: typingReveal 1.5s var(--ease) 7.6s forwards; }
.dash-msg.m5    { animation: msgAppear 0.4s var(--ease) 9.1s forwards; }
.dash-msg.m6    { animation: msgAppear 0.4s var(--ease) 10.4s forwards; }

/* Override default msg animation */
.dash-msg.m1, .dash-msg.m2, .dash-msg.m3,
.dash-msg.m4, .dash-msg.m5, .dash-msg.m6 {
    opacity: 0;
    transform: translateY(6px);
    animation-fill-mode: forwards;
}

/* ===== MOCKUP 3: CALENDAR (matches real dashboard) ===== */
.dash-main-cal { gap: 6px; }

/* Warning banners */
.cal-warn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.58rem;
    opacity: 0;
    transform: translateX(-12px);
    animation: warnSlide 0.5s var(--ease) forwards;
}
.cal-warn strong { font-size: 0.6rem; }
.cal-warn span { font-size: 0.55rem; opacity: 0.7; }
.cal-warn i { font-size: 0.6rem; }

.warn-lease {
    background: rgba(234,179,8,0.08);
    border: 1px solid rgba(234,179,8,0.25);
    color: #a16207;
    animation-delay: 0.6s;
}
.warn-pay {
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.2);
    color: #dc2626;
    animation-delay: 1s;
}

/* Calendar layout */
.dash-cal {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}
.dash-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 6px;
}
.cal-today-btn {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 8px;
}
.cal-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cal-nav strong { font-size: 0.72rem; color: var(--text); }
.cal-nav i { font-size: 0.5rem; color: rgba(0,0,0,0.3); }
.cal-new-btn {
    font-size: 0.52rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 2px 8px;
}

/* Month grid */
.dash-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}
.day-label {
    font-size: 0.48rem;
    font-weight: 700;
    color: rgba(0,0,0,0.4);
    padding: 4px 2px;
    text-align: center;
    text-transform: uppercase;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background: #fafafa;
}
.day {
    font-size: 0.55rem;
    color: var(--text);
    padding: 3px 4px;
    min-height: 28px;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    font-weight: 500;
}
.day.dim { color: rgba(0,0,0,0.18); }

/* Today circle */
.day.cal-today {
    font-weight: 700;
}
.day.cal-today::before {
    content: '';
    position: absolute;
    top: 1px; left: 1px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: todayPop 0.4s var(--ease) 1.4s forwards;
    z-index: 0;
}
.day.cal-today { color: #fff; z-index: 1; }

/* Cells with inline events */
.day.cal-cell {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 2px 3px;
    min-height: 42px;
}
.cell-ev {
    display: block;
    font-size: 0.42rem;
    font-weight: 600;
    padding: 1px 3px;
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    animation: feedSlide 0.3s var(--ease) forwards;
}
/* Stagger cell events across all cells */
.cal-cell:nth-of-type(1) .cell-ev:nth-child(2) { animation-delay: 1.6s; }
.cal-cell:nth-of-type(1) .cell-ev:nth-child(3) { animation-delay: 1.9s; }
.cal-cell:nth-of-type(2) .cell-ev:nth-child(2) { animation-delay: 2.2s; }
.cal-cell:nth-of-type(2) .cell-ev:nth-child(3) { animation-delay: 2.5s; }
.cal-cell:nth-of-type(3) .cell-ev:nth-child(2) { animation-delay: 2.8s; }
.cal-cell:nth-of-type(3) .cell-ev:nth-child(3) { animation-delay: 3.1s; }

.cell-more {
    font-size: 0.42rem;
    color: rgba(0,0,0,0.35);
    opacity: 0;
    animation: feedSlide 0.3s var(--ease) 3.4s forwards;
}

.ev-gold   { background: rgba(234,179,8,0.12);  color: #a16207; }
.ev-green  { background: rgba(34,197,94,0.12);  color: #16a34a; }
.ev-red    { background: rgba(239,68,68,0.1);   color: #dc2626; }
.ev-blue   { background: rgba(59,130,246,0.12); color: #2563eb; }
.ev-orange { background: rgba(249,115,22,0.12); color: #ea580c; }
.ev-purple { background: rgba(147,51,234,0.12); color: #7c3aed; }

/* CTA strip below feature cards — spans both columns of platform-grid */
.platform-cta-strip {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}
.platform-cta-strip .cta-strip-content {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
}
.platform-cta-strip.active .cta-strip-content {
    animation: ctaPop 0.6s var(--ease) forwards;
}
.platform-cta-strip .platform-icon {
    opacity: 0;
    transform: scale(0);
}
.platform-cta-strip.active .platform-icon {
    animation: iconPop 0.5s var(--ease) 0.3s forwards;
}
.cta-strip-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, var(--gold-subtle), rgba(196,162,78,0.06));
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    transition: transform var(--dur-fast) var(--ease),
                box-shadow var(--dur-fast) var(--ease);
}
.cta-strip-content:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 50px rgba(196,162,78,0.3);
    border-color: var(--gold-hover);
    background: linear-gradient(135deg, rgba(196,162,78,0.18), rgba(196,162,78,0.08));
}
.cta-strip-content:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 6px 20px rgba(196,162,78,0.25);
}
.cta-strip-content:hover .platform-icon {
    animation: iconPop 0.4s var(--ease) forwards;
}
.cta-strip-content .platform-icon {
    width: 44px; height: 44px;
    font-size: 1rem;
    flex-shrink: 0;
    margin: 0;
    background: var(--gold);
    color: var(--white);
}
.cta-strip-text { flex: 1; min-width: 0; }
.cta-strip-content h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}
.cta-strip-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.2rem;
    line-height: 1.5;
    text-align: center;
}
.cta-strip-content .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.platform-card {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-bottom: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    text-align: center;
    transition: transform var(--dur-fast) var(--ease),
                box-shadow var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease);
}
.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

/* Animated icon with live ping dot */
.platform-icon {
    position: relative;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.2rem;
    transition: transform var(--dur-fast) var(--ease);
}
.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

/* Green "live" ping dot */
.platform-icon .ping {
    position: absolute;
    top: 2px; right: 2px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid var(--white);
}
.platform-icon .ping::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34,197,94,0.4);
    animation: pingPulse 2s ease-out infinite;
}

.platform-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.platform-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== 12. LOCATIONS ===== */
.locations {
    padding: var(--section-pad) 24px;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    max-width: 1050px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    padding: 2.5rem 2rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--text);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    text-align: center;
}
.location-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.location-card:hover::before { transform: scaleX(1); }
.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.location-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.location-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.8rem;
}
.location-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.location-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gold-subtle);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
}

/* ===== 13. PROCESS (How It Works) ===== */
.process {
    padding: var(--section-pad) 24px;
    background: var(--white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}
.step-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}
.step-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--gold-subtle);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
    border: 2px solid var(--gold);
    transition: background var(--dur-fast) var(--ease),
                color var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease);
}
.process-step:hover .step-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--gold-hover);
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.process-step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}
.process-bottom {
    text-align: center;
    margin-top: var(--gap-lg);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
}
.process-bottom strong {
    font-weight: 700;
    color: var(--gold);
}

/* Connector between steps */
.process-connector {
    display: flex;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
    padding-top: 72px;
    color: var(--gold);
    opacity: 0.35;
    font-size: 0.7rem;
    gap: 4px;
}
.connector-line {
    flex: 1;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s var(--ease) 0.4s;
}
.process-connector.active .connector-line { transform: scaleX(1); }

/* ===== 14. PACKAGES ===== */
.packages {
    padding: var(--section-pad) 24px;
    background: var(--cream);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-bottom: 3.5rem;
    align-items: start;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--sand);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                border-color var(--dur) var(--ease);
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.package-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.package-card.featured:hover {
    box-shadow: 0 24px 60px rgba(196,162,78,0.28);
}

.package-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Tier numeral — faint watermark behind the icon */
.package-tier {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    letter-spacing: 2px;
    pointer-events: none;
    margin-bottom: -1.2rem;
}

/* Tier icon */
.package-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    transition: transform var(--dur-fast) var(--ease);
}
.package-card .package-icon {
    background: var(--gold-subtle);
    color: var(--gold);
}
.package-card.featured .package-icon {
    background: var(--gold);
    color: var(--white);
}
.package-card:hover .package-icon {
    transform: scale(1.12);
}

.package-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.package-card.featured h3 {
    color: var(--gold);
}

/* Gold hairline divider */
.package-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1.2rem;
    border-radius: 1px;
    opacity: 0.5;
}
.package-card.featured .package-divider {
    width: 56px;
    opacity: 1;
}

.package-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.package-price .price-sub {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.package-features {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.package-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--sand);
    color: var(--text);
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}
.package-features li::before {
    content: "\2713";
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.package-cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

/* Airbnb / Short-term section */
.short-term {
    background: linear-gradient(135deg, var(--sand) 0%, #e8e4db 100%);
    padding: 3rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}
.short-term-header {
    text-align: center;
    margin-bottom: 2rem;
}
.short-term-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.short-term-note {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

.short-term .package-card {
    max-width: 380px;
    margin: 0 auto;
}

/* Slim PDF download link */
.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding: 0.45rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background var(--dur-fast) var(--ease),
                color var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease);
}
.btn-pdf i { font-size: 0.75rem; }
.btn-pdf:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== 15. FEATURES (Why Zeah) ===== */
.features {
    padding: var(--section-pad) 24px;
    background: var(--midnight);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.features::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(196,162,78,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.features .section-label { color: var(--gold); }
.features .section-title { color: var(--white); }
.features .section-title::after { background: var(--gold); }
.features .section-sub { color: var(--text-on-dark); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: background var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease);
}
.feature-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
}
.feature-item h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.feature-item p {
    color: var(--text-on-dark);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== 16. PORTAL ===== */
.portal {
    padding: var(--section-pad) 24px;
    background: var(--cream);
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    max-width: 820px;
    margin: 0 auto;
}

.portal-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.portal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.portal-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.portal-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.8rem;
}
.portal-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

/* ===== 17. CONTACT ===== */
.contact {
    padding: var(--section-pad) 24px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-item-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--gold-subtle);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item-content h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}
.contact-item-content p {
    color: var(--text-light);
    font-size: 0.93rem;
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact form */
.contact-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius);
}
.form-group { margin-bottom: 1.4rem; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--dur-fast) var(--ease),
                box-shadow var(--dur-fast) var(--ease);
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-subtle);
}
.form-textarea {
    resize: vertical;
    min-height: 110px;
}

/* ===== 18. FOOTER ===== */
/* ===== SITE FOOTER ===== */
.site-footer {
    background: var(--midnight);
    color: var(--text-on-dark);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--gap-lg);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.footer-logo {
    width: 36px;
    height: 36px;
}
.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    text-align: center;
}
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    padding: 0.3rem 0;
    transition: color var(--dur-fast) var(--ease);
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-col a i {
    width: 18px;
    margin-right: 0.4rem;
    color: var(--gold);
}
.footer-bottom {
    text-align: center;
    padding: 24px;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}
.footer-bottom .gold { color: var(--gold); }

/* ===== 19. ANIMATIONS ===== */

/* Keyframes */
@keyframes pingPulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.4); opacity: 0; }
}

@keyframes dashFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes barGrow {
    from { height: 0; }
    to   { height: var(--h); }
}

@keyframes feedSlide {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.3); }
}

@keyframes shimmer {
    0%   { opacity: 0; background-position: -200% 0; }
    20%  { opacity: 1; }
    100% { opacity: 0; background-position: 200% 0; }
}

@keyframes statGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(196,162,78,0); }
    50%      { box-shadow: 0 0 8px rgba(196,162,78,0.15); }
}

@keyframes typingDot {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50%      { opacity: 1;   transform: translateY(-3px); }
}

@keyframes typingReveal {
    0%   { opacity: 0; height: 0; padding: 0; margin: 0; }
    10%  { opacity: 1; height: 26px; padding: 8px 12px; margin: 0; }
    80%  { opacity: 1; height: 26px; padding: 8px 12px; }
    100% { opacity: 0; height: 0; padding: 0; margin: 0; }
}

@keyframes msgAppear {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes eventDotPop {
    from { opacity: 0; transform: translateX(-50%) scale(0); }
    to   { opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes warnSlide {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes todayPop {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes ctaPop {
    0%   { opacity: 0; transform: scale(0.92) translateY(12px); }
    60%  { opacity: 1; transform: scale(1.02) translateY(-2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes iconPop {
    0%   { opacity: 0; transform: scale(0) rotate(-45deg); }
    60%  { opacity: 1; transform: scale(1.2) rotate(5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes slideUp {
    from { transform: translateY(110%); }
    to   { transform: translateY(0); }
}

@keyframes titleBreathe {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50%      { transform: translateY(0) scale(1.025); opacity: 0.85; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes heroBg {
    0%   { transform: scale(1)    translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, 1.5%); }
}

@keyframes logoFloat {
    0%   { transform: scale(1); }
    14%  { transform: scale(1.06); }
    28%  { transform: scale(1); }
    42%  { transform: scale(1.04); }
    56%  { transform: scale(1); }
    100% { transform: scale(1); }
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(25px, -25px) scale(1.04); }
    66%      { transform: translate(-18px, 18px) scale(0.97); }
}

@keyframes scrollDash {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* Scroll reveal system */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease),
                transform 0.7s var(--ease);
}
.reveal.active {
    opacity: 1;
    transform: none;
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.60s; }

/* ===== 20. RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .package-grid  { grid-template-columns: repeat(2, 1fr); }
    .package-grid .package-card:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Mobile landscape / small tablet */
@media (max-width: 880px) {
    nav {
        padding: 10px 14px;
        left: 12px;
        right: 12px;
    }

    .links {
        position: fixed;
        left: 12px; right: 12px;
        top: 76px;
        flex-direction: column;
        background: var(--white);
        text-align: center;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        gap: 0.3rem;
        border-radius: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        transition: all var(--dur-fast) var(--ease);
        z-index: 1100;
    }
    .links.active {
        opacity: 1; visibility: visible; transform: translateY(0);
    }
    .links a { width: 100%; padding: 12px 20px; }

    .hamburger { display: flex; }

    .portal-cta { padding: 9px 10px; }
    .portal-cta .portal-text { display: none; }

    .nav-right { gap: 8px; }
    .lang-selector .lang-text { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 140px 20px 100px;
    }
    .hero-logo-bg {
        align-items: flex-start;
        padding-top: 120px;
    }
    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }
    .hero-scroll { display: flex; bottom: -15px; }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .platform-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .dash-mockups {
        position: static;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        scrollbar-width: none;
        width: 100%;
    }
    .dash-mockups::-webkit-scrollbar { display: none; }
    .dash-mockup {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100%;
        scroll-snap-align: start;
        overflow: hidden;
        transform: scale(0.85);
        transform-origin: top center;
    }
    .mockup-dots-nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding-top: 12px;
        margin-top: 0;
    }
    .mockup-dot-nav {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(196,162,78,0.25);
        transition: background 0.3s ease;
    }
    .mockup-dot-nav.active {
        background: var(--gold);
    }
    .dash-mockup { overflow: hidden; max-width: 100%; }
    .dash-window { transform: none; max-width: 100%; overflow: hidden; }
    .dash-body { min-height: auto; overflow: hidden; }
    .dash-main { overflow: hidden; min-width: 0; }
    .dash-top-layout { flex-direction: column; }
    .dash-right-col { width: 100%; flex-direction: row; }
    .dash-mini-card { min-width: 0; overflow: hidden; }
    .mini-mkt-name { width: 36px; }
    .dash-stats { flex-wrap: wrap; }
    .dash-stat { min-width: calc(50% - 4px); }
    .platform-grid {
        grid-template-columns: 1fr;
    }
    .platform-card {
        padding: 1.5rem 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }
    .platform-showcase {
        overflow: hidden;
    }

    /* CTA strip stacks vertically on mobile */
    .cta-strip-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem 1rem;
    }
    .cta-strip-text { width: 100%; }
    .cta-strip-content h4 { text-align: center; }
    .cta-strip-content p { text-align: center; }
    .cta-strip-content .btn { width: 100%; justify-content: center; white-space: normal; }
    .platform-cta-strip {
        min-width: 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .process-step { padding: 1.5rem 0; }
    .process-connector {
        transform: rotate(90deg);
        width: 60px;
        padding-top: 0;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }
    .package-grid .package-card:last-child {
        max-width: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .portal-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form {
        padding: 1.8rem 1.2rem;
    }

    .short-term { padding: 2rem 1.2rem; }

    /* Reduce dashboard mockup min-height */
    .dash-body { min-height: 260px; }

    .back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero {
        padding: 120px 16px 70px;
    }
    .hero-sub {
        font-size: 0.95rem;
    }

    .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .trust-item { gap: 10px; flex-direction: column; text-align: center; }
    .trust-item div { text-align: center; }
    .trust-num { font-size: 1.3rem; }

    .platform-grid { grid-template-columns: 1fr; }
    .platform-card { padding: 1.2rem 1rem; }
    .cta-strip-content { padding: 1rem 0.8rem; }
    .cta-strip-content .cta-icon { display: none; }
    .dash-stats { flex-wrap: wrap; }
    .dash-stat { min-width: calc(50% - 4px); }
    .dash-bar span { display: none; }
    .dash-body { min-height: 220px; overflow: hidden; }
    .dash-sidebar { width: 36px; }
    .dash-nav-item { width: 28px; height: 28px; font-size: 0.6rem; }
    .dash-logo { width: 22px; height: 22px; }
    .dash-main { padding: 10px 8px; overflow: hidden; min-width: 0; }
    .dash-right-col { flex-direction: column; }
    .mini-pie-wrap { width: 40px; height: 40px; }
    .mini-pie-center { width: 24px; height: 24px; font-size: 0.45rem; }

    .section-title { font-size: 1.8rem; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .package-card { padding: 2rem 1.4rem; }

    .location-grid { max-width: none; }
    .location-card { padding: 2rem 1.4rem; }

    .portal-grid { max-width: none; }
    .portal-card { padding: 2rem 1.4rem; }

    .features-grid { max-width: none; }
    .feature-item { padding: 1.8rem 1.2rem; }

    .cta-strip-content { padding: 1rem 0.8rem; }

    .contact-form { padding: 1.5rem 1rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-brand { justify-content: center; }
}

/* Landscape mobile */
@media (max-width: 900px) and (orientation: landscape) {
    .dash-mockups {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        scrollbar-width: none;
    }
    .dash-mockups::-webkit-scrollbar { display: none; }
    .dash-mockup {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100%;
        scroll-snap-align: start;
        overflow: hidden;
        transform: scale(0.9);
        transform-origin: top center;
    }
    .dash-top-layout { flex-direction: row; }
    .dash-right-col { width: 120px; flex-direction: column; }
    .dash-body { min-height: auto; }
    .hero { min-height: auto; padding: 100px 20px 60px; }
}

/* Utility */
.hidden { display: none !important; }
