/* ==========================================================================
   ALNYRA DIGITAL - Design System & Styles
   ========================================================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Colors */
    --bg-primary: #09090b;
    --bg-secondary: #18181b;
    --surface: rgba(24, 24, 27, 0.5);
    --gold: #DFB837;
    --gold-hover: rgba(223, 184, 55, 0.9);
    --gold-light: hsl(43, 87%, 65%);
    --gold-dark: hsl(43, 87%, 45%);
    --text-primary: #ffffff;
    --text-secondary: #d4d4d8;
    --text-muted: #a1a1aa;
    --text-subtle: #71717a;
    --border-gold: rgba(223, 184, 55, 0.3);
    --border-zinc: rgba(39, 39, 42, 0.5);
    --glow-light: rgba(223, 184, 55, 0.1);
    --glow-medium: rgba(223, 184, 55, 0.5);
    --backdrop: rgba(0, 0, 0, 0.8);

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --font-mono: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;

    /* Spacing */
    --container-max: 1280px;
    --content-max: 896px;
    --form-max: 768px;

    /* Shadows */
    --shadow-card: 0 10px 15px -3px rgba(223, 184, 55, 0.1);
    --shadow-cta: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-modal: 0 0 60px rgba(223, 184, 55, 0.15), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-pill: 0 0 20px rgba(223, 184, 55, 0.15), 0 0 40px rgba(223, 184, 55, 0.05), 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-pill-hover: 0 0 30px rgba(223, 184, 55, 0.25), 0 0 60px rgba(223, 184, 55, 0.1), 0 10px 40px rgba(0, 0, 0, 0.3);

    /* Z-index layers */
    --z-navigator: 1500;
    --z-pill: 1800;
    --z-navbar: 2000;
    --z-modal: 3000;
    --z-loading: 9999;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(24, 24, 27, 0.5);
}

/* ==========================================================================
   PREMIUM SCROLLBAR
   ========================================================================== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(24, 24, 27, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            rgba(223, 184, 55, 0.6) 0%,
            rgba(223, 184, 55, 0.8) 50%,
            rgba(223, 184, 55, 0.6) 100%);
    border-radius: 4px;
    border: 1px solid rgba(223, 184, 55, 0.2);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            rgba(223, 184, 55, 0.8) 0%,
            rgba(223, 184, 55, 1) 50%,
            rgba(223, 184, 55, 0.8) 100%);
    box-shadow: 0 0 10px rgba(223, 184, 55, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: var(--gold);
    box-shadow: 0 0 15px rgba(223, 184, 55, 0.6);
}

::-webkit-scrollbar-corner {
    background: rgba(24, 24, 27, 0.5);
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    /* Remove blue tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
}

/* Ensure NO blue link states anywhere */
a:visited,
a:active,
a:focus {
    color: inherit;
    outline: none;
}

a:focus-visible {
    outline: 2px solid #DFB837;
    outline-offset: 2px;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    /* Remove blue tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
}

button:focus {
    outline: none;
}

button:focus-visible {
    outline: 2px solid #DFB837;
    outline-offset: 2px;
}

input,
textarea,
select {
    font-family: inherit;
    /* Force gold accent for all form elements */
    accent-color: #DFB837;
    /* Remove blue autofill background in Chrome */
    -webkit-text-fill-color: currentColor;
    /* Remove blue tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
    /* Prevent iOS zoom on focus */
    font-size: 16px;
}

/* Override browser selection highlight to gold */
::selection {
    background: rgba(223, 184, 55, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(223, 184, 55, 0.3);
    color: #ffffff;
}

/* Remove all blue focus outlines globally, replace with gold */
*:focus {
    outline-color: #DFB837;
}

/* Override autofill styling in webkit browsers */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #18181b inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #DFB837;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.text-lg {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-muted {
    color: var(--text-muted);
}

.text-gold {
    color: var(--gold);
}

.font-light {
    font-weight: 300;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-mono {
    font-family: var(--font-mono);
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 5.25rem;
    }
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

/* Page visibility (SPA) */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Background patterns */
.bg-grid {
    background-image: linear-gradient(rgba(223, 184, 55, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 184, 55, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ==========================================================================
   LOADING SCREEN
   ========================================================================== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: var(--z-loading);
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Premium Loader Content */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: loaderFadeIn 0.8s ease-out;
}

@keyframes loaderFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo container with shimmer effect */
.loader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(223, 184, 55, 0.2),
        0 0 80px rgba(223, 184, 55, 0.1);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        box-shadow:
            0 0 40px rgba(223, 184, 55, 0.2),
            0 0 80px rgba(223, 184, 55, 0.1);
    }

    100% {
        box-shadow:
            0 0 60px rgba(223, 184, 55, 0.3),
            0 0 100px rgba(223, 184, 55, 0.15);
    }
}

.loader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Brand text */
.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Gold progress bar */
.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg,
            var(--gold) 0%,
            var(--gold-light) 50%,
            var(--gold) 100%);
    border-radius: 2px;
    animation: loaderProgress 2s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes loaderProgress {
    0% {
        width: 0%;
        background-position: 0% 50%;
    }

    50% {
        width: 100%;
        background-position: 100% 50%;
    }

    100% {
        width: 100%;
        background-position: 0% 50%;
    }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: var(--z-navbar);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

#navbar.scrolled {
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-zinc);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    gap: 2rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(223, 184, 55, 0.15);
}

.nav-logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

/* Hide text on very small screens, show just logo */
@media (max-width: 400px) {
    .nav-logo-text {
        display: none;
    }
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    display: none;
    gap: 0.75rem;
    align-items: center;
    height: 100%;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: flex;
    }
}

/* Hamburger */
#menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    #menu-toggle {
        display: none;
    }
}

#menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}

#menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
#mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(24px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-zinc);
    z-index: calc(var(--z-navbar) - 1);
}

#mobile-menu.active {
    display: block;
}

#mobile-menu a {
    display: block;
    padding: 1rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(39, 39, 42, 0.5);
    transition: color 0.2s;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

#mobile-menu a:first-child {
    border-top: 1px solid rgba(39, 39, 42, 0.5);
}

#mobile-menu a:hover {
    color: var(--gold);
}

.mobile-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Mobile Accordion (Blog dropdown) */
.mobile-accordion {
    border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}

.mobile-accordion-trigger {
    position: relative;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 1rem 1rem;
    color: var(--text-secondary);
    font-family: var(--font-sans) !important;
    font-size: 1rem;
    font-weight: 500;
    text-align: center !important;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.mobile-accordion-trigger:hover {
    color: var(--gold);
}

.mobile-accordion-trigger svg {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    transition: transform 0.3s ease;
}

.mobile-accordion.active .mobile-accordion-trigger svg {
    transform: translateY(-50%) rotate(180deg);
}

/* Mobile Language Toggle */
.mobile-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(39, 39, 42, 0.5);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-lang-toggle:hover {
    color: var(--gold);
}

.mobile-accordion-content {
    display: none;
    background: rgba(24, 24, 27, 0.5);
    border-top: 1px solid rgba(39, 39, 42, 0.3);
}

.mobile-accordion.active .mobile-accordion-content {
    display: block;
}

.mobile-accordion-content a {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid rgba(39, 39, 42, 0.3);
    transition: color 0.2s, background 0.2s;
}

.mobile-accordion-content a:last-child {
    border-bottom: none;
}

.mobile-accordion-content a:hover {
    color: var(--gold);
    background: rgba(223, 184, 55, 0.05);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-cta);
}

.btn-gold:hover {
    background: var(--gold-hover);
    box-shadow: 0 0 30px var(--glow-medium);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: rgba(223, 184, 55, 0.1);
    border-color: var(--gold);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   ANNOUNCEMENT BAR - Full-width Sub-bar Under Navbar
   ========================================================================== */
#announcement-pill {
    /* Positioning: Full-width bar directly under navbar */
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    /* Directly under 80px navbar */
    z-index: calc(var(--z-navbar) - 5);

    /* Size: Full width, slim height */
    width: 100%;
    padding: 0.5rem 1rem;
    /* Thin vertical padding */

    /* Premium Glass Bar Styling */
    background: linear-gradient(180deg, rgba(24, 24, 27, 0.95) 0%, rgba(18, 18, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Subtle hairline borders */
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);

    /* Gold accent line at top - very subtle */
    box-shadow: inset 0 1px 0 rgba(223, 184, 55, 0.15);

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Entrance animation */
    opacity: 0;
    animation: barEntrance 0.4s ease-out 0.3s forwards;

    /* Transition for modal hiding */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Entrance animation */
@keyframes barEntrance {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle gold glow on bottom edge */
#announcement-pill::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(223, 184, 55, 0.2) 30%,
            rgba(223, 184, 55, 0.35) 50%,
            rgba(223, 184, 55, 0.2) 70%,
            transparent 100%);
    pointer-events: none;
}

/* Inner content container - aligns with site container */
.pill-inner {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    #announcement-pill {
        padding: 0.5rem 1.5rem;
    }

    .pill-inner {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    #announcement-pill {
        padding: 0.5rem 2rem;
    }

    .pill-inner {
        padding: 0 2rem;
    }
}

/* Hidden state - for when modals/overlays are open */
#announcement-pill.modal-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hover enhancement - subtle */
#announcement-pill:hover {
    background: linear-gradient(180deg, rgba(28, 28, 32, 0.96) 0%, rgba(20, 20, 22, 0.98) 100%);
}

#announcement-pill:hover::after {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(223, 184, 55, 0.25) 30%,
            rgba(223, 184, 55, 0.45) 50%,
            rgba(223, 184, 55, 0.25) 70%,
            transparent 100%);
}

/* Message text - centered */
.pill-message {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

/* Message transition wrapper for crossfade */
.pill-message-text {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pill-message-text.fade-out {
    opacity: 0;
    transform: translateY(-4px);
}

.pill-message-text.fade-in {
    opacity: 0;
    transform: translateY(4px);
}

@media (min-width: 640px) {
    .pill-message {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .pill-message {
        font-size: 0.9375rem;
    }
}

/* CTA button - sleek */
.pill-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    padding: 0.375rem 0.75rem;
    background: rgba(223, 184, 55, 0.08);
    border: 1px solid rgba(223, 184, 55, 0.25);
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pill-cta:hover {
    background: rgba(223, 184, 55, 0.15);
    border-color: rgba(223, 184, 55, 0.5);
}

@media (min-width: 1024px) {
    .pill-cta {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
    }
}

/* Dismiss button - hidden */
.pill-dismiss {
    display: none;
}

/* Hide mobile/desktop text based on screen size */
.pill-cta .mobile-text {
    display: inline;
}

.pill-cta .desktop-text {
    display: none;
}

@media (min-width: 640px) {
    .pill-cta .mobile-text {
        display: none;
    }

    .pill-cta .desktop-text {
        display: inline;
    }
}

/* ==========================================================================
   LAYOUT OFFSET - Account for sticky bar under navbar
   ========================================================================== */
/* Bar height is approximately 36px. Combined with 80px navbar = 116px offset needed */

.hero {
    padding-top: 120px !important;
    /* 80px navbar + ~40px for bar */
}

@media (min-width: 640px) {
    .hero {
        padding-top: 125px !important;
    }
}

/* ==========================================================================
   SECTION NAVIGATOR
   ========================================================================== */
#section-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--z-navigator);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    #section-nav {
        display: flex;
    }
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-subtle);
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.nav-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.nav-dot:hover::after {
    opacity: 1;
}

/* Mobile FAB */
#section-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-navigator);
    box-shadow: var(--shadow-cta);
}

@media (min-width: 1024px) {
    #section-fab {
        display: none;
    }
}

#section-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-zinc);
    padding: 1.5rem;
    z-index: calc(var(--z-navigator) + 1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#section-sheet.active {
    transform: translateY(0);
}

#section-sheet a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-zinc);
}

#section-sheet a:hover {
    color: var(--gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: var(--content-max);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(223, 184, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px var(--glow-light);
    }

    50% {
        box-shadow: 0 0 25px rgba(223, 184, 55, 0.3);
    }
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 .text-gold {
    color: var(--gold);
}

/* Premium Hero Highlight with Glow Animation - Text-only glow */
.hero-highlight {
    color: var(--gold);
    display: inline;
    text-shadow:
        0 0 8px rgba(223, 184, 55, 0.5),
        0 0 16px rgba(223, 184, 55, 0.3),
        0 0 24px rgba(223, 184, 55, 0.15);
    animation: heroGlow 3s ease-in-out infinite;
}

/* Breathing glow animation - text-shadow only */
@keyframes heroGlow {

    0%,
    100% {
        text-shadow:
            0 0 8px rgba(223, 184, 55, 0.5),
            0 0 16px rgba(223, 184, 55, 0.3),
            0 0 24px rgba(223, 184, 55, 0.15);
    }

    50% {
        text-shadow:
            0 0 12px rgba(223, 184, 55, 0.7),
            0 0 24px rgba(223, 184, 55, 0.4),
            0 0 36px rgba(223, 184, 55, 0.2);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-highlight {
        animation: none;
        text-shadow:
            0 0 8px rgba(223, 184, 55, 0.5),
            0 0 16px rgba(223, 184, 55, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-body {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-micro {
    font-size: 0.875rem;
    color: var(--text-subtle);
    font-style: italic;
}

/* 3D rotating border (desktop only) */
.hero-3d {
    display: none;
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    animation: rotate3d 20s linear infinite;
}

@media (min-width: 1024px) {
    .hero-3d {
        display: block;
    }
}

@keyframes rotate3d {
    0% {
        transform: perspective(500px) rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: perspective(500px) rotateX(360deg) rotateY(360deg);
    }
}

/* Blur blobs */
.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-dark);
    bottom: 10%;
    right: -50px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(223, 184, 55, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   TIMELINE - Our Process Section
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

/* Vertical rail line */
.timeline-rail {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--border-zinc) 5%,
            var(--border-zinc) 95%,
            transparent 100%);
}

/* Each step container */
.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Gold numbered badge */
.timeline-badge {
    position: absolute;
    left: -36px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(223, 184, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    box-shadow:
        0 0 20px rgba(223, 184, 55, 0.2),
        inset 0 0 8px rgba(223, 184, 55, 0.1);
    z-index: 1;
    flex-shrink: 0;
}

/* Premium card for each step */
.timeline-card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.timeline-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out,
        filter 0.6s ease-out;
}

/* Visible state */
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Staggered delays for sequential reveal */
.scroll-reveal[data-delay="0"] {
    transition-delay: 0ms;
}

.scroll-reveal[data-delay="1"] {
    transition-delay: 100ms;
}

.scroll-reveal[data-delay="2"] {
    transition-delay: 200ms;
}

.scroll-reveal[data-delay="3"] {
    transition-delay: 300ms;
}

.scroll-reveal[data-delay="4"] {
    transition-delay: 400ms;
}

.scroll-reveal[data-delay="5"] {
    transition-delay: 500ms;
}

/* Reverse animation - smoother exit */
.scroll-reveal:not(.visible) {
    transition:
        opacity 0.4s ease-in,
        transform 0.4s ease-in,
        filter 0.4s ease-in;
}

/* Reduced motion preference - respect accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .scroll-reveal.visible {
        transition: none;
    }
}

/* Timeline responsive - Mobile */
@media (max-width: 767px) {
    .timeline {
        padding-left: 50px;
    }

    .timeline-rail {
        left: 20px;
    }

    .timeline-badge {
        left: -30px;
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .timeline-card {
        padding: 1.25rem 1.5rem;
    }

    .timeline-card h3 {
        font-size: 1rem;
    }

    .timeline-card p {
        font-size: 0.875rem;
    }
}

/* Pricing card */
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-card);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-primary);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-monthly {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
}

/* Pricing Card Animations and Interactions */
.pricing-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .pricing-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Clickable area */
.pricing-card-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover .pricing-card-clickable {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card.expanded {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 12px 40px rgba(223, 184, 55, 0.1);
}

/* Expand hint - Premium micro-CTA */
.pricing-expand-hint {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold);
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
}

.pricing-card:hover .pricing-expand-hint {
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.pricing-card.expanded .pricing-expand-hint {
    display: none;
}

/* Actions area */
.pricing-actions {
    margin-top: 1rem;
}

/* Details panel */
.pricing-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

.pricing-card.expanded .pricing-details {
    max-height: 800px;
    opacity: 1;
    margin-top: 1.5rem;
}

.pricing-details-content {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    padding: 1.5rem;
}

.detail-section {
    margin-bottom: 1.25rem;
}

.detail-section:last-of-type {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.detail-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.detail-section li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.pricing-close-btn {
    margin-top: 0.5rem;
}

/* Focus states for keyboard navigation */
.pricing-card-clickable:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-zinc);
}

.process-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-mono);
    flex-shrink: 0;
    width: 40px;
}

.process-content h3 {
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-item {
    border-bottom: 1px solid var(--border-zinc);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ==========================================================================
   FORMS - Premium Styling
   ========================================================================== */

/* Form wrapper panel */
.form-wrapper {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
    .form-wrapper {
        padding: 2.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-label-required::after {
    content: " *";
    color: var(--gold);
}

/* Inputs - larger, touch-friendly, premium */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    /* Larger padding */
    min-height: 52px;
    /* Touch-friendly */
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

/* Premium gold focus state */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px rgba(223, 184, 55, 0.15),
        0 0 20px rgba(223, 184, 55, 0.1);
    background: rgba(24, 24, 27, 0.8);
}

/* Hover state */
.form-input:hover:not(:focus),
.form-select:hover:not(:focus),
.form-textarea:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-subtle);
    opacity: 0.7;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(24, 24, 27, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23DFB837' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ===== NATIVE SELECT OPTION STYLING (Cross-browser) ===== */
/* Base option styling - solid dark background, no patterns */
.form-select option {
    background-color: #18181b !important;
    color: #ffffff !important;
    padding: 12px 16px;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

/* Hover state - subtle lighter background, gold accent */
.form-select option:hover {
    background-color: #27272a !important;
    color: #ffffff !important;
}

/* Selected/checked state - gold accent, NO blue */
.form-select option:checked,
.form-select option:active,
.form-select option[selected] {
    background: linear-gradient(0deg, rgba(223, 184, 55, 0.2) 0%, rgba(223, 184, 55, 0.2) 100%) !important;
    background-color: rgba(223, 184, 55, 0.2) !important;
    color: #DFB837 !important;
    font-weight: 500;
}

/* ===== WEBKIT-SPECIFIC OVERRIDES (Chrome, Safari, Edge) ===== */
/* Remove blue highlight on option hover in webkit */
@supports (-webkit-appearance: none) {
    .form-select option:hover {
        background-color: #27272a !important;
        box-shadow: none !important;
    }

    .form-select option:checked {
        background: linear-gradient(0deg, rgba(223, 184, 55, 0.25) 0%, rgba(223, 184, 55, 0.25) 100%) !important;
        color: #DFB837 !important;
    }
}

/* Chrome/Edge specific - force dark background on dropdown */
.form-select::-webkit-listbox {
    background-color: #18181b !important;
}

/* ===== FIREFOX-SPECIFIC OVERRIDES ===== */
/* Remove default focus ring in Firefox */
.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #ffffff;
}

/* Firefox option styling */
@-moz-document url-prefix() {
    .form-select option {
        background-color: #18181b !important;
        color: #ffffff !important;
    }

    .form-select option:checked {
        background-color: rgba(223, 184, 55, 0.2) !important;
        color: #DFB837 !important;
    }
}

/* ===== IE/EDGE LEGACY OVERRIDES ===== */
.form-select::-ms-expand {
    display: none;
}

/* ===== REMOVE ALL BLUE FOCUS OUTLINES ===== */
.form-select:focus {
    outline: none !important;
    border-color: var(--gold) !important;
}

.form-select:focus-visible {
    outline: 2px solid var(--gold) !important;
    outline-offset: 2px;
}

/* ===== PREVENT WEIRD BACKGROUND PATTERNS ===== */
.form-select,
.form-select option {
    background-blend-mode: normal;
    background-attachment: scroll;
    -webkit-text-fill-color: currentColor;
}

/* ==========================================================================
   CUSTOM DROPDOWN COMPONENT
   ========================================================================== */
/* Container for custom dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
}

/* Hide native select when custom dropdown is active */
.custom-dropdown .form-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

/* Custom dropdown trigger button */
.custom-dropdown-trigger {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1.25rem;
    min-height: 52px;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.custom-dropdown-trigger::after {
    content: '';
    position: absolute;
    right: 1rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.custom-dropdown.open .custom-dropdown-trigger::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23DFB837' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Trigger hover/focus states */
.custom-dropdown-trigger:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.custom-dropdown-trigger:focus,
.custom-dropdown.open .custom-dropdown-trigger {
    outline: none;
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px rgba(223, 184, 55, 0.15),
        0 0 20px rgba(223, 184, 55, 0.1);
    background: rgba(24, 24, 27, 0.8);
}

/* Placeholder text */
.custom-dropdown-trigger.placeholder {
    color: var(--text-subtle);
}

/* Options dropdown panel */
.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(223, 184, 55, 0.05);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.custom-dropdown.open .custom-dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Premium scrollbar for dropdown options */
.custom-dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: rgba(223, 184, 55, 0.3);
    border-radius: 3px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: rgba(223, 184, 55, 0.5);
}

/* Firefox scrollbar */
.custom-dropdown-options {
    scrollbar-width: thin;
    scrollbar-color: rgba(223, 184, 55, 0.3) rgba(0, 0, 0, 0.2);
}

/* Reduced motion preference for dropdown */
@media (prefers-reduced-motion: reduce) {
    .custom-dropdown-options {
        transition: opacity 0.1s ease;
        transform: none;
    }

    .custom-dropdown-trigger::after {
        transition: none;
    }
}

/* Individual option */
.custom-dropdown-option {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.custom-dropdown-option:last-child {
    border-bottom: none;
}

.custom-dropdown-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    box-shadow: inset 3px 0 0 var(--gold);
}

.custom-dropdown-option:focus,
.custom-dropdown-option.focused {
    background: rgba(223, 184, 55, 0.1);
    color: var(--text-primary);
    outline: none;
    box-shadow: inset 3px 0 0 var(--gold);
}

.custom-dropdown-option.selected {
    background: rgba(223, 184, 55, 0.15);
    color: var(--gold);
    font-weight: 500;
    box-shadow: inset 3px 0 0 var(--gold);
}

.custom-dropdown-option.selected::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: 700;
}

/* Focus visible for keyboard navigation */
.custom-dropdown-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Mobile: show native select on touch devices for better UX */
@media (hover: none) and (pointer: coarse) {
    .custom-dropdown .form-select {
        position: static;
        opacity: 1;
        pointer-events: auto;
        height: auto;
        overflow: visible;
    }

    .custom-dropdown-trigger,
    .custom-dropdown-options {
        display: none;
    }
}

/* Checkbox styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
    padding: 1rem 1.25rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.form-checkbox:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(24, 24, 27, 0.6);
}

.form-checkbox:has(input:focus) {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(223, 184, 55, 0.15);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"]:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.form-checkbox span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== GLOBAL CHECKBOX/RADIO STYLING (No Blue) ===== */
input[type="checkbox"],
input[type="radio"] {
    accent-color: #DFB837;
    cursor: pointer;
    width: 18px;
    height: 18px;
    -webkit-tap-highlight-color: transparent;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
    outline: 2px solid #DFB837;
    outline-offset: 2px;
}

input[type="checkbox"]:focus:not(:focus-visible),
input[type="radio"]:focus:not(:focus-visible) {
    outline: none;
}

/* Radio button wrapper styling (if used) */
.form-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 44px;
    /* Touch target */
}

.form-radio:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(24, 24, 27, 0.6);
}

.form-radio:has(input:checked) {
    border-color: var(--gold);
    background: rgba(223, 184, 55, 0.08);
}

/* Form row grid */
.form-row {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Honeypot field - hidden from users */
.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Form submit button enhancements */
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .btn-text {
    transition: opacity 0.2s ease;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit .btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: none;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Form messages - premium styling */
.form-success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--backdrop);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-zinc);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-modal);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-subtle);
    font-size: 1.5rem;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   PACKAGE DETAILS MODAL (Premium Popup)
   ========================================================================== */
.package-details-modal .modal-backdrop {
    animation: modalBackdropIn 0.2s ease-out forwards;
}

.package-details-modal.closing .modal-backdrop {
    animation: modalBackdropOut 0.18s ease-in forwards;
}

@keyframes modalBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalBackdropOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.package-details-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid rgba(223, 184, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow:
        0 0 60px rgba(223, 184, 55, 0.08),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    /* Premium entrance animation */
    animation: modalContentIn 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.package-details-modal.closing .package-details-modal-content {
    animation: modalContentOut 0.18s ease-in forwards;
}

@keyframes modalContentIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalContentOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    to {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

/* Gold accent line at top */
.package-details-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(223, 184, 55, 0.5),
            var(--gold),
            rgba(223, 184, 55, 0.5),
            transparent);
    border-radius: 0 0 2px 2px;
}

/* Modal header */
.package-details-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-zinc);
}

.package-details-badge {
    display: inline-block;
    background: rgba(223, 184, 55, 0.15);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.package-details-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-details-modal-price {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.package-details-modal-price strong {
    color: var(--gold);
    font-weight: 700;
}

/* Modal body - details content */
.package-details-modal-body {
    margin-bottom: 1.5rem;
}

.package-details-modal-body .detail-section {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.package-details-modal-body .detail-section:last-child {
    margin-bottom: 0;
}

.package-details-modal-body .detail-section h4 {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.package-details-modal-body .detail-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.package-details-modal-body .detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-details-modal-body .detail-section li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.package-details-modal-body .detail-section li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Modal footer */
.package-details-modal-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-zinc);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .package-details-modal .modal-backdrop,
    .package-details-modal-content {
        animation: none;
    }

    .package-details-modal.closing .modal-backdrop,
    .package-details-modal.closing .package-details-modal-content {
        animation: none;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-zinc);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 300px;
    line-height: 1.5;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.footer-social:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-group-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.link-gold {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(223, 184, 55, 0.3);
}

.link-gold:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-zinc);
    text-align: center;
    color: var(--text-subtle);
    font-size: 0.875rem;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: var(--content-max);
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

/* ==========================================================================
   LAB ROOMS SUBNAV
   ========================================================================== */
.subnav {
    position: sticky;
    top: 116px;
    /* 80px navbar + ~36px bar height */
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-zinc);
    padding: 0.875rem 0;
    z-index: calc(var(--z-navbar) - 10);
    overflow-x: auto;
}

.subnav-scroll {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    padding: 0 1rem;
    min-width: max-content;
}

@media (min-width: 1024px) {
    .subnav-scroll {
        justify-content: center;
    }
}

.subnav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border: 1px solid var(--border-zinc);
    border-radius: 9999px;
    white-space: nowrap;
    transition: all 0.2s;
}

.subnav-btn:hover,
.subnav-btn.active {
    color: var(--gold);
    border-color: var(--border-gold);
    background: rgba(223, 184, 55, 0.1);
}

/* ==========================================================================
   ROOM SECTIONS
   ========================================================================== */
.room-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-zinc);
}

.room-header {
    margin-bottom: 2rem;
}

.room-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(223, 184, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-mono);
    margin-bottom: 1rem;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .room-title {
        font-size: 1.875rem;
    }
}

.room-desc {
    color: var(--text-muted);
    max-width: 600px;
}

.room-features {
    margin-top: 2rem;
}

.room-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-zinc);
}

.room-feature:last-child {
    border-bottom: none;
}

.room-feature-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.room-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.room-feature p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   ABOUT PAGE - TIMELINE
   ========================================================================== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-zinc);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateX(-5px);
}

.timeline-step {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-zinc);
}

.comparison-table th {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.comparison-table td {
    font-size: 0.875rem;
}

.comparison-table .check {
    color: var(--gold);
}

.comparison-table .cross {
    color: var(--text-subtle);
}

/* ==========================================================================
   CONTACT CARDS
   ========================================================================== */
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 8px 32px rgba(223, 184, 55, 0.1);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(223, 184, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--gold-light);
}

/* ==========================================================================
   DEMO CARDS
   ========================================================================== */
.demo-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.demo-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.demo-card h3 {
    margin-bottom: 0.5rem;
}

.demo-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.demo-link {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   ADD-ONS GRID
   ========================================================================== */
.addon-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    padding: 1.5rem;
}

.addon-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.addon-price {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hidden {
    display: none !important;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* ==========================================================================
   LAB ROOMS OVERHAUL
   ========================================================================== */
.lab-rooms-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.lab-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    scroll-margin-top: 140px;
}

.lab-card:hover {
    border-color: var(--gold-dim);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.lab-card-header {
    border-bottom: 1px solid var(--border-zinc);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.room-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.room-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
}

.lab-card h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.lab-card-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
}

.lab-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.lab-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.lab-feature-icon {
    flex-shrink: 0;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: grid;
    place-items: center;
}

.lab-feature h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.lab-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .lab-card h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .lab-card {
        padding: 1.5rem;
    }

    .room-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .lab-card h3 {
        font-size: 1.5rem;
    }

    .lab-card-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lab-card-header {
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   ABOUT PAGE UPDATES
   ========================================================================== */

/* Feature Card (What You Get) */
.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card .card-icon {
    background: rgba(212, 175, 55, 0.05);
    /* very subtle gold bg */
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

/* Contact Block (Connect With Us) */
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin: 2rem auto 0;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-zinc);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 2rem;
    /* slide effect */
    color: var(--text-primary);
}

.contact-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* ========== ADD-ONS (ACCORDION) ========== */
.addons-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.addon-item {
    border-bottom: 1px solid var(--border-light);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--surface-dark);
    border: none;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: all 0.2s ease;
}

.addon-header:hover,
.addon-header[aria-expanded="true"] {
    background: var(--surface-light);
    box-shadow: inset 4px 0 0 var(--gold);
}

.addon-header:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

.addon-info {
    flex: 1;
    display: block;
}

.addon-name {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.addon-desc {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.addon-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.addon-cost {
    color: var(--text-gold);
    font-weight: 500;
    font-size: 0.95rem;
}

.addon-chevron {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

/* Accordion Active State */
.addon-header[aria-expanded="true"] .addon-chevron {
    transform: rotate(180deg);
    color: var(--text-gold);
}

.addon-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-dark);
    /* Slightly darker inner bg */
}

.addon-header[aria-expanded="true"]+.addon-details {
    border-bottom: 1px solid var(--border-light);
    /* Separator when open */
}

.details-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.detail-block h4 {
    color: var(--text-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.detail-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-block li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.detail-block li::before {
    content: "•";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
}

.detail-block p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .addon-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .addon-meta {
        width: 100%;
        justify-content: space-between;
    }

    .details-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 400px;
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    animation: cookie-shimmer 8s ease-in-out infinite;
}

@keyframes cookie-shimmer {

    0%,
    90%,
    100% {
        opacity: 0;
    }

    95% {
        opacity: 1;
    }
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cookie-icon {
    font-size: 1.25rem;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cookie-settings-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0.5rem;
}

.cookie-settings-btn:hover {
    color: var(--text-primary);
}

.cookie-settings-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-zinc);
}

.cookie-setting {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.toggle-status {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-zinc);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: var(--gold);
}

input:checked+.toggle-slider::before {
    transform: translateX(20px);
    background-color: var(--bg-primary);
}

.toggle-switch.disabled .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== 72H LABS OFFER MODAL ========== */
.labs-offer-modal .modal-backdrop {
    backdrop-filter: blur(8px);
}

.labs-offer-content {
    max-width: 520px;
    text-align: center;
    padding: 2.5rem;
    animation: offer-pop-in 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes offer-pop-in {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.labs-offer-modal.closing .labs-offer-content {
    animation: offer-pop-out 0.2s ease forwards;
}

@keyframes offer-pop-out {
    to {
        opacity: 0;
        transform: scale(0.96);
    }
}

.offer-countdown-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-timer {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'SF Mono', 'Monaco', monospace;
    letter-spacing: 0.05em;
}

.countdown-timer.expired {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.offer-header {
    margin-bottom: 1.5rem;
}

.offer-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
}

/* Shimmer effect on headline */
.shimmer-text {
    background: linear-gradient(90deg,
            var(--text-primary) 0%,
            var(--gold) 50%,
            var(--text-primary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 100% 0;
    }

    50% {
        background-position: 0 0;
    }
}

.offer-discount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.offer-discount span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.offer-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.offer-body {
    text-align: left;
    margin-bottom: 1.5rem;
}

.offer-condition {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.offer-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.offer-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.bullet-icon {
    color: var(--gold);
    font-weight: 700;
}

.offer-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.offer-cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.offer-secondary {
    margin-top: 0.5rem;
}

.labs-link {
    color: var(--gold);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.labs-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Trigger Button Style */
.offer-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 20px 2px rgba(212, 175, 55, 0.2);
    }
}

.offer-trigger-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .cookie-banner {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .labs-offer-content {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .offer-headline {
        font-size: 1.35rem;
    }

    .offer-discount {
        font-size: 2rem;
    }

    .countdown-timer {
        font-size: 1.5rem;
    }

    .offer-cta {
        flex-direction: column;
    }

    .offer-cta .btn {
        width: 100%;
    }
}

/* ========== FLOATING 72H OFFER BADGE ========== */
.floating-offer-badge {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9998;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(28, 28, 28, 0.95));
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: badge-pulse 3s ease-in-out infinite;
}

/* Close button for floating badge */
.offer-badge-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
}

.offer-badge-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

/* Show close button more prominently on mobile */
@media (max-width: 767px) {
    .offer-badge-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
        top: -10px;
        right: -10px;
    }
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(212, 175, 55, 0.3),
            0 0 60px rgba(212, 175, 55, 0.15),
            0 8px 32px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow:
            0 0 40px rgba(212, 175, 55, 0.5),
            0 0 80px rgba(212, 175, 55, 0.25),
            0 12px 40px rgba(0, 0, 0, 0.5);
    }
}

.floating-offer-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    animation: badge-shimmer 6s ease-in-out infinite;
}

@keyframes badge-shimmer {

    0%,
    85%,
    100% {
        opacity: 0;
        left: 20%;
        right: 60%;
    }

    90% {
        opacity: 1;
        left: 60%;
        right: 20%;
    }

    95% {
        opacity: 0;
        left: 80%;
        right: 0%;
    }
}

.floating-offer-badge:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.5),
        0 0 100px rgba(212, 175, 55, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.5);
}

.offer-badge-glow {
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    opacity: 0.3;
    filter: blur(8px);
    animation: glow-rotate 4s linear infinite;
    z-index: -1;
}

@keyframes glow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.offer-badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.offer-badge-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offer-badge-discount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.offer-badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.offer-badge-sub {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-badge-timer {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'SF Mono', 'Monaco', monospace;
}

.offer-badge-timer.expired {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.offer-badge-chevron {
    color: var(--gold);
    transition: transform 0.2s ease;
}

.floating-offer-badge:hover .offer-badge-chevron {
    transform: translateX(3px);
}

/* Mobile positioning */
@media (max-width: 767px) {
    .floating-offer-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5rem;
        padding: 0.85rem 1rem;
    }

    .floating-offer-badge:hover {
        transform: translateX(-50%) translateY(-4px) scale(1.03);
    }

    .offer-badge-discount {
        font-size: 1.25rem;
    }

    .offer-badge-label {
        font-size: 0.6rem;
    }

    .offer-badge-timer {
        font-size: 0.8rem;
    }

    .offer-badge-sub {
        padding-left: 0.75rem;
        gap: 0.35rem;
    }
}

/* Avoid overlap with cookie banner */
.cookie-banner.visible~.floating-offer-badge,
.cookie-banner.visible+.floating-offer-badge {
    bottom: 180px;
}

@media (max-width: 767px) {

    .cookie-banner.visible~.floating-offer-badge,
    .cookie-banner.visible+.floating-offer-badge {
        bottom: 220px;
    }
}

/* ========== BLOG PAGE STYLES ========== */
.blog-page {
    padding-top: 80px;
}

.blog-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--surface));
}

.blog-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blog-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Filters */
.blog-filters {
    margin-bottom: 3rem;
}

.category-dropdown {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-dropdown label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.custom-select {
    position: relative;
    min-width: 280px;
}

.select-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-trigger:hover {
    border-color: var(--gold);
}

.select-trigger.open {
    border-color: var(--gold);
    border-radius: 8px 8px 0 0;
}

.select-trigger svg {
    transition: transform 0.2s ease;
    color: var(--gold);
}

.select-trigger.open svg {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 0;
    overflow: hidden;
    z-index: 100;
    transition: max-height 0.3s ease;
}

.select-options.open {
    max-height: 400px;
    overflow-y: auto;
}

.select-option {
    width: 100%;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-option:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
}

.select-option.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

/* Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-post-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.post-category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.no-posts-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--surface), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-zinc);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 2rem;
}

.newsletter-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-inputs {
    display: flex;
    gap: 1rem;
}

.newsletter-inputs .form-group {
    flex: 1;
}

.newsletter-message {
    margin-top: 1rem;
}

/* ========== ARTICLE PAGE STYLES ========== */
.article-page {
    padding-top: 100px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-back {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-back:hover {
    color: var(--text-primary);
}

.article-category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--text-primary);
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-zinc);
}

.article-share {
    margin-bottom: 2rem;
}

.article-share h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 2rem 0;
    }

    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-hero-text h1 {
        font-size: 2rem;
    }

    .blog-hero-image {
        order: -1;
    }

    .category-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-select {
        width: 100%;
        min-width: auto;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-section {
        padding: 2rem 1.5rem;
    }

    .newsletter-inputs {
        flex-direction: column;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-cta {
        flex-direction: column;
    }

    .article-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ========== BLOG PREMIUM BACKGROUND ========== */
.blog-body {
    position: relative;
}

.blog-bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.blog-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
}

.blog-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -200px;
}

.blog-glow-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--gold), rgba(255, 255, 255, 0.3));
    bottom: 20%;
    left: -150px;
}

.blog-noise-overlay {
    position: absolute;
    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='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
}

/* ========== NAVBAR DROPDOWN ========== */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 100%;
}

.nav-dropdown-trigger svg {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
}

/* ========== MOBILE ACCORDION ========== */
.mobile-accordion {
    display: flex;
    flex-direction: column;
}

.mobile-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.mobile-accordion-trigger svg {
    transition: transform 0.2s ease;
}

.mobile-accordion-trigger.open svg {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-accordion-content.open {
    max-height: 400px;
}

.mobile-accordion-content a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-left: 2px solid var(--border-zinc);
    padding-left: 1rem;
}

.mobile-accordion-content a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
}

/* ========== CATEGORY CARDS ========== */
.blog-categories {
    padding-top: 0;
}

.blog-categories .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.category-card {
    background: var(--surface);
    border: 1px solid var(--border-zinc);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.category-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.category-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    color: var(--gold);
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.category-card-newsletter {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
}

/* ========== SKELETON LOADING ========== */
.skeleton-loading {
    position: relative;
    overflow: hidden;
}

.skeleton-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.05),
            transparent);
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.loaded {
    animation: fade-in-up 0.4s ease forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animations */
.blog-post-card.loaded:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-post-card.loaded:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-post-card.loaded:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card.loaded:nth-child(1) {
    animation-delay: 0.05s;
}

.category-card.loaded:nth-child(2) {
    animation-delay: 0.1s;
}

.category-card.loaded:nth-child(3) {
    animation-delay: 0.15s;
}

.category-card.loaded:nth-child(4) {
    animation-delay: 0.2s;
}

.category-card.loaded:nth-child(5) {
    animation-delay: 0.25s;
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
}

.article-container.glass-card {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Dev Note Blockquote */
.dev-note {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
}

.article-footer-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-zinc);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== BLOG SECTION HEADER ========== */
.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.blog-section-header .section-title {
    margin-bottom: 0;
}

/* ========== NEWSLETTER SIMPLIFIED ========== */
.newsletter-inputs {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-inputs .form-input {
    flex: 1;
}

/* ========== RESPONSIVE FOR NEW BLOG COMPONENTS ========== */
@media (max-width: 1200px) {
    .category-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .nav-dropdown-menu {
        display: none;
    }

    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card {
        padding: 1rem;
    }

    .category-card-icon {
        width: 40px;
        height: 40px;
    }

    .category-card h3 {
        font-size: 0.9rem;
    }

    .category-card p {
        font-size: 0.75rem;
        display: none;
    }

    .blog-section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .newsletter-inputs {
        flex-direction: column;
    }

    .newsletter-inputs .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .category-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .skeleton-loading::after,
    .loaded,
    .blog-post-card.loaded,
    .category-card.loaded {
        animation: none;
    }
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-zinc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(223, 184, 55, 0.1);
    border-color: var(--gold);
}

.scroll-to-top:hover svg {
    color: var(--gold);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   LANGUAGE SWITCHER
   ========================================================================== */

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    min-width: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(223, 184, 55, 0) 0%, rgba(223, 184, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(223, 184, 55, 0.08);
    border-color: rgba(223, 184, 55, 0.3);
    transform: translateY(-1px);
}

.lang-toggle:hover::before {
    opacity: 1;
}

.lang-toggle:active {
    transform: translateY(0);
}

.lang-toggle .lang-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.lang-toggle:hover .lang-text {
    color: var(--gold);
}

.lang-toggle .globe-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.lang-toggle:hover .globe-icon {
    color: var(--gold);
    transform: rotate(15deg);
}

/* Desktop Navigation - show toggle */
@media (min-width: 1024px) {
    .nav-cta .lang-toggle {
        display: flex;
    }
}

/* Mobile Language Toggle in Mobile Menu */
.mobile-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-lang-toggle:hover {
    background: rgba(223, 184, 55, 0.08);
    border-color: rgba(223, 184, 55, 0.2);
}

.mobile-lang-toggle .lang-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.mobile-lang-toggle .lang-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
}

/* ==========================================================================
   LANGUAGE SWITCH ANIMATION
   ========================================================================== */

/* Smooth transition for all translatable elements */
[data-i18n] {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Fade out state during language switch */
[data-i18n].lang-switching {
    opacity: 0;
    transform: translateY(-4px);
}

/* Staggered animation for better visual effect */
[data-i18n]:nth-child(1) {
    transition-delay: 0ms;
}

[data-i18n]:nth-child(2) {
    transition-delay: 20ms;
}

[data-i18n]:nth-child(3) {
    transition-delay: 40ms;
}

[data-i18n]:nth-child(4) {
    transition-delay: 60ms;
}

[data-i18n]:nth-child(5) {
    transition-delay: 80ms;
}

/* Reset delay on fade back in */
[data-i18n]:not(.lang-switching) {
    transition-delay: 0ms;
}

/* Special animation for hero elements */
.hero [data-i18n].lang-switching {
    transform: translateY(-8px);
}

/* Prevent layout shift during animation */
[data-i18n] {
    will-change: opacity, transform;
}