/* ============================================
   GLOBELLO — Main Stylesheet
   Color: Option E — Black + Burnt Orange
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --orange: #F97316;
    --orange-2: #FB923C;
    --orange-dim: rgba(249, 115, 22, 0.15);
    --orange-border: rgba(249, 115, 22, 0.22);

    --bg: #0a0a0a;
    --bg-2: #0f0a06;
    --bg-grad: linear-gradient(135deg, #0a0a0a 0%, #0f0a1a 50%, #0a0a0a 100%);

    --glass: rgba(255, 255, 255, 0.03);
    --glass-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-orange: rgba(249, 115, 22, 0.22);

    --text: #F5F0EB;
    --muted: rgba(245, 240, 235, 0.58);
    --muted-2: rgba(245, 240, 235, 0.38);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --radius: 16px;
    --radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.6;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-orange); border-radius: 2px; }

::selection { background: rgba(249, 115, 22, 0.22); color: var(--text); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- CUSTOM CURSOR ---------- */
#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    display: none;
}

#cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    display: none;
}

#cursor.grow { width: 20px; height: 20px; }
#cursor-ring.grow { width: 58px; height: 58px; opacity: 0.5; }

@media (pointer: fine) {
    #cursor, #cursor-ring { display: block; }
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.section-border {
    border-top: 1px solid var(--border);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.82;
    max-width: 480px;
    margin-top: 0.75rem;
}

.section-header {
    margin-bottom: 4rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.3);
    opacity: 0.92;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--border-orange);
    color: var(--orange);
}

/* ---------- FLOATING ORBS ---------- */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    animation: drift 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
    top: -25%;
    right: -15%;
    animation-duration: 28s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(120, 40, 10, 0.1), transparent 70%);
    bottom: -20%;
    left: -10%;
    animation-duration: 32s;
    animation-delay: -12s;
    animation-direction: reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05), transparent 70%);
    top: 50%;
    left: 40%;
    animation-duration: 20s;
    animation-delay: -6s;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -25px) scale(1.04); }
    66% { transform: translate(-25px, 35px) scale(0.96); }
}

/* ---------- NAVBAR ---------- */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.93);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.01em;
    line-height: 1;
}

.logo-text span {
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 0.2s;
    font-weight: 400;
}

.nav-links a:hover { color: var(--orange); }

.nav-cta {
    color: var(--orange) !important;
    border: 1px solid var(--border-orange) !important;
    padding: 0.55rem 1.5rem;
    border-radius: 100px;
    font-size: 0.92rem !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--orange) !important;
    color: #0a0a0a !important;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    position: relative;
    z-index: 600;
}

.hamburger span {
    display: block;
    height: 1.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- MOBILE DRAWER ---------- */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
}

.drawer.open { pointer-events: all; }

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.drawer.open .drawer-backdrop { opacity: 1; }

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(320px, 85vw);
    background: #0d0a08;
    border-left: 1px solid var(--border);
    padding: 6rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.open .drawer-panel { transform: translateX(0); }

.drawer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.drawer-links li {
    border-bottom: 1px solid var(--border);
}

.drawer-link {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.05rem;
    color: var(--muted);
    transition: color 0.2s;
    font-weight: 300;
}

.drawer-link:hover { color: var(--orange); }

.drawer-cta {
    margin-top: 2.5rem;
    text-align: center;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
    border-radius: 100px;
    display: block;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: var(--bg-grad);
}

.hero-inner {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--border-orange);
    color: var(--orange);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-line {
    display: block;
    color: white;
    opacity: 0;
    transform: translateY(55px);
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(2) { animation-delay: 0.35s; }
.hero-line:nth-child(3) { animation-delay: 0.5s; }

.hero-line.accent {
    font-style: italic;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.82;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.meta-line {
    height: 1px;
    width: 55px;
    background: var(--border-orange);
    opacity: 0.5;
    flex-shrink: 0;
}

.meta-badges {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.meta-badges span {
    font-size: 0.78rem;
    color: var(--muted-2);
}

.meta-badges strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* ---------- STATS ---------- */
.stats-section {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--glass);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--glass-2); }

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    transition: width 0.4s ease;
}

.stat-item:hover::after { width: 60%; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.76rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* ---------- PORTALS ---------- */
.portals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.portal-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    background: var(--glass);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.portal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-dim) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: var(--radius-lg);
}

.portal-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.portal-card:hover::before { opacity: 1; }

.portal-num {
    position: absolute;
    top: 1.25rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(249, 115, 22, 0.07);
    line-height: 1;
    transition: color 0.4s;
    user-select: none;
}

.portal-card:hover .portal-num { color: rgba(249, 115, 22, 0.14); }

.portal-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
}

.portal-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.portal-card p {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.portal-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.portal-tags span {
    font-size: 0.72rem;
    color: rgba(249, 115, 22, 0.65);
    border: 1px solid rgba(249, 115, 22, 0.18);
    padding: 0.22rem 0.65rem;
    border-radius: 100px;
}

.portal-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 500;
    transition: gap 0.2s;
}

.portal-link:hover { gap: 0.75rem; }

/* ---------- WHY SECTION ---------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
}

.why-points {
    display: flex;
    flex-direction: column;
}

.why-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.85rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s ease;
}

.why-point:first-child { border-top: 1px solid var(--border); }
.why-point:hover { padding-left: 8px; }

.why-num {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--orange);
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-point h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.35rem;
}

.why-point p {
    font-size: 0.855rem;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 300;
}

/* ---------- DESTINATIONS ---------- */
.destinations-scroll {
    overflow: hidden;
    width: 100%;
}

.destinations-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding: 0.5rem 0;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.destinations-scroll:hover .destinations-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.dest-card {
    width: 150px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    background: var(--glass);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.dest-card:hover {
    border-color: var(--border-orange);
    background: var(--glass-2);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.dest-card .fi {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.dest-card p {
    font-size: 0.8rem;
    color: rgba(245, 240, 235, 0.65);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}

.destinations-scroll *,
.destinations-track *,
.dest-card,
.dest-card * {
    cursor: none !important;
}

.destinations-inner {
    display: flex;
    flex-direction: row;
    width: max-content;
}

.destinations-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding: 0.5rem 0;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.destinations-scroll:hover .destinations-track {
    animation-play-state: paused;
}

/* ---------- PROCESS ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass);
    backdrop-filter: blur(10px);
}

.process-step {
    padding: 2.75rem 2rem;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
    position: relative;
}

.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--glass-2); }

.step-num {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(249, 115, 22, 0.35);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.process-step:hover .step-num { color: rgba(249, 115, 22, 0.6); }

.process-step h4 {
    font-size: 0.93rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 300;
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 7rem;
    color: rgba(249, 115, 22, 0.06);
    font-weight: 300;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: var(--orange);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.82;
    margin-bottom: 1.75rem;
    font-weight: 300;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-dim);
    border: 1px solid var(--border-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.reviewer-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ---------- CTA ---------- */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.cta-inner {
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-inner .section-title { margin-bottom: 1rem; }

.cta-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 460px;
    margin: 0 auto 1.5rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    backdrop-filter: blur(10px);
}

.cta-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.9rem;
    font-family: var(--font-body);
    min-width: 0;
    font-weight: 300;
}

.cta-form input::placeholder { color: var(--muted-2); }

.cta-form button {
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a;
    border: none;
    padding: 0.72rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.cta-form button:hover { opacity: 0.88; }

.cta-alts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    font-size: 0.82rem;
    color: rgba(245, 240, 235, 0.48);
    flex-wrap: wrap;
}

.cta-alts a {
    color: rgba(245, 240, 235, 0.6);
    transition: color 0.2s;
}

.cta-alts a:hover { color: var(--orange); }
.cta-alts span { opacity: 0.55; }
.cta-alts span:not(:first-of-type):not(:last-of-type) { opacity: 0.35; }

/* ---------- FOOTER ---------- */
footer {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo { margin-bottom: 1.25rem; }

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(245, 240, 235, 0.42);
    line-height: 1.8;
    max-width: 260px;
    font-weight: 300;
}

.footer-col h6 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(245, 240, 235, 0.45);
    margin-bottom: 0.7rem;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: rgba(245, 240, 235, 0.5);
}

.footer-bottom a {
    color: rgba(245, 240, 235, 0.5);
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--orange); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .portals-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step:nth-child(2) { border-right: none; }
    .process-step:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
    .process-step:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    #navbar { padding: 1rem 1.5rem; }
    #navbar.scrolled { padding: 0.75rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
    .hero { padding: 0 1.5rem; }
    .stats-section { padding: 0 1.5rem; }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

    .process-grid { grid-template-columns: 1fr; }
    .process-step { border-right: none !important; border-top: 1px solid var(--border); }
    .process-step:first-child { border-top: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .cta-form {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 1rem;
        align-items: stretch;
    }

    .cta-form button { border-radius: 100px; text-align: center; }
    .section-title { font-size: clamp(1.9rem, 6vw, 2.5rem); }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    .meta-badges { gap: 1rem; }
    .portals-grid { gap: 1rem; }
    .portal-card { padding: 2rem 1.5rem; }
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

#navbar.scrolled .logo-img {
    height: 44px;
    transition: height 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.portal-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.portal-name:hover {
    color: var(--orange);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand .logo-img {
    height: 42px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.footer-brand .logo-text span {
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}