:root {
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadcn/ui Zinc Palette */
    --background: #09090b;       /* zinc-950 */
    --foreground: #fafafa;       /* zinc-50 */
    
    --card: #131316;             /* zinc-900 slightly lighter for contrast */
    --card-foreground: #fafafa;
    

    
    --popover: #09090b;
    --popover-foreground: #fafafa;
    
    --primary: #ffffff;          /* Contrast White Button */
    --primary-foreground: #09090b;
    
    --secondary: #27272a;        /* zinc-800 */
    --secondary-foreground: #fafafa;
    
    --muted: #18181b;            /* zinc-900 */
    --muted-foreground: #a1a1aa; /* zinc-400 */
    
    --accent: #27272a;
    --accent-foreground: #fafafa;
    
    --border: #27272a;           /* zinc-800 */
    --input: #27272a;
    
    --gold: #e8a743;             /* Warm Gold Highlight */
    --gold-glow: rgba(232, 167, 67, 0.08);
    
    --red: #ef4444;              /* Loss Indicators */
    --red-glow: rgba(239, 68, 68, 0.15);
    
    --header-bg: rgba(9, 9, 11, 0.95);
    --header-bg-scycled: rgba(9, 9, 11, 0.9);
    --footer-bg: #040405;
    --gradient-card: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    --gradient-mockup: linear-gradient(180deg, rgba(14, 14, 18, 0.7) 0%, rgba(8, 8, 10, 0.95) 100%);
    --mockup-shadow: rgba(0, 0, 0, 0.4);
    --glass-blur: rgba(255, 255, 255, 0.03);
    --grid-dot: rgba(255, 255, 255, 0.06);
    --hero-glow: rgba(255, 255, 255, 0.04);
    --hero-bg-gradient: radial-gradient(circle at center, #0f1626 0%, #09090b 100%);
    --hero-title-gradient: linear-gradient(to bottom, #ffffff 60%, rgba(255, 255, 255, 0.7) 100%);
    --primary-hover: rgba(255, 255, 255, 0.9);
    --secondary-hover: #3f3f46;

    

    

    
    --radius: 8px;               /* Clean Minimalist Radius */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    

    
    --max-width: 1200px;
    --header-height: 64px;
}

.light {


    --background: #fafafa;       /* zinc-50 */
    --foreground: #09090b;       /* zinc-950 */
    
    --card: #ffffff;             /* white cards */
    --card-foreground: #09090b;
    
    --popover: #ffffff;
    --popover-foreground: #09090b;
    
    --primary: #09090b;          /* Dark Primary Button */
    --primary-foreground: #fafafa;
    
    --secondary: #e4e4e7;        /* zinc-200 */
    --secondary-foreground: #09090b;
    
    --muted: #f4f4f5;            /* zinc-100 */
    --muted-foreground: #71717a; /* zinc-500 */
    
    --accent: #e4e4e7;
    --accent-foreground: #09090b;
    
    --border: #e4e4e7;           /* zinc-200 */
    --input: #e4e4e7;
    
    --gold: #d97706;             /* amber-600 gold */
    --gold-glow: rgba(217, 119, 6, 0.05);
    
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-bg-scycled: rgba(255, 255, 255, 0.95);
    --footer-bg: #ffffff;        /* Pure White footer background */
    --gradient-card: linear-gradient(135deg, #f4f4f5 0%, #ffffff 100%);
    --gradient-mockup: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(244, 244, 245, 0.95) 100%);
    --mockup-shadow: rgba(0, 0, 0, 0.08);
    --glass-blur: rgba(0, 0, 0, 0.02);
    --grid-dot: rgba(9, 9, 11, 0.05);
    --hero-glow: rgba(0, 0, 0, 0.02);
    --hero-bg-gradient: radial-gradient(circle at center, #f1f5f9 0%, #ffffff 100%);
    --hero-title-gradient: linear-gradient(to bottom, #09090b 60%, rgba(9, 9, 11, 0.7) 100%);
    --primary-hover: rgba(9, 9, 11, 0.9);
    --secondary-hover: #d4d4d8;
}

    

    

    




/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--background);
    color: var(--foreground);
    transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal);
}





.text-center {
    text-align: center !important;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--background);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--muted-foreground);
}

/* Base Typographies */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--foreground);
}

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

/* Layout Grid Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Shadcn Button Engine */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    height: 40px;
    padding: 0 16px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    border: 1px solid transparent;
    cursor: pointer;
    outline: none;
}

.btn-lg {
    height: 48px;
    padding: 0 24px;
    font-size: 0.95rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--border);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}



.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--muted);
    border-color: var(--muted-foreground);
}

/* Custom Badges */
.section-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--foreground);
}

/* Page Wrapper for UI/UX alignment */
.page-wrapper {
    padding: 140px 0 120px 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 64px;
    border-radius: 99px;
    z-index: 50;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 12, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

body.light .main-header {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.logo {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-family: var(--font-display);
}

.logo-deep {
    color: var(--foreground);
}

.logo-flow {
    color: var(--gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 8px 16px;
    border-radius: 99px;
    transition: var(--transition-fast);
}




.nav-link:hover {
    color: var(--foreground);
    background-color: var(--muted);
}

/* Dropdown Menu Toggles */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 8px 12px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

.nav-dropdown-trigger:hover, .nav-item-dropdown:hover .nav-dropdown-trigger {
    color: var(--foreground);
    background-color: var(--muted);
}

/* Base Dropdown layout */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    background-color: var(--popover);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    opacity: 0;
    pointer-events: none;
    --translate-x: 0px;
    --translate-y: 8px;
    transform: translate(var(--translate-x), var(--translate-y));
    transition: opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    --translate-y: 0px;
}

/* About dropdown rules */
.about-menu {
    left: 50%;
    --translate-x: -50%;
    width: 320px;
    flex-direction: column;
    gap: 4px;
}

/* MEGA MENU 3 COLUMNS STYLES (Based on Stone Systems) */
.mega-menu {
    left: 50%;
    --translate-x: -50%;
    width: 820px;
    flex-direction: column;
}

.mega-menu-header {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Dropdown layout components */
.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    background-color: var(--muted);
}

.dropdown-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: var(--muted);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.dropdown-link:hover .dropdown-icon-box {
    background-color: var(--secondary);
    border-color: var(--muted-foreground);
}

.dropdown-link-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-link-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--foreground);
}

.dropdown-link-desc {
    font-size: 0.72rem;
    color: var(--muted-foreground);
}

.chevron {
    transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
}

/* ==========================================================================
   MOBILE DRAWER SECURITY (Ensures it NEVER leaks on desktop)
   ========================================================================== */
.mobile-menu-overlay {
    display: none !important; /* Forces total hiding on desktop */
}

@media (max-width: 992px) {
    .mobile-menu-overlay.active {
        display: flex !important; /* Only displayed on small screens when triggered */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
        z-index: 99;
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-menu {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        height: auto;
        max-height: calc(100vh - 40px);
        padding: 24px;
        z-index: 100;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        border-radius: 28px;
        background: rgba(10, 10, 12, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    }
    
    body.light .mobile-menu {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
}

.mobile-menu-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    margin-bottom: 30px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.mobile-nav-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
}

.mobile-nav-link.sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    padding-left: 12px;
}

.mobile-nav-link.sub:hover {
    color: var(--foreground);
}

.mobile-menu-btn {
    margin-top: 12px;
}

/* Page View Render animation */
#app-view {
    flex: 1 0 auto;
    padding-top: 0;
    padding-bottom: 80px;
    animation: fadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}




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

/* ==========================================================================
   HERO & SECTION STYLING
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 160px 0 140px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--hero-bg-gradient);
    transition: background var(--transition-normal);
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, var(--hero-glow) 0%, transparent 65%),
        radial-gradient(var(--grid-dot) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 24px 24px;
    background-position: center, center;
    z-index: 0;
    pointer-events: none;
}


.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--foreground);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4.25rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--hero-title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background var(--transition-normal);
}



.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 44px;
    width: 100%;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
}

.proof-text {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.proof-text strong {
    color: var(--foreground);
}
/* Niches Badge bar */
.niches-section {
    padding: 24px 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.niches-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.niches-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.niche-badge {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 8px 16px;
    border-radius: 20px;
    background-color: var(--card);
}

/* ==========================================================================
   ALTERNATING DETAIL SERVICES STYLES (Landing Page)
   ========================================================================== */

.services-detail-section {
    padding: 80px 0;
}



.service-row-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-row-title {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--foreground);
}

.service-row-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.bullet-check {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.service-bullets span strong {
    color: var(--foreground);
    display: block;
    margin-bottom: 2px;
}

.service-row-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.showcase-mockup {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.chat-showcase {
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.chat-showcase .chat-bubble {
    font-size: 0.8rem;
    padding: 10px 14px;
    border-radius: 8px;
    max-width: 85%;
    line-height: 1.4;
}

.chat-showcase .chat-bubble.user {


    background-color: var(--secondary);
    color: var(--foreground);
    align-self: flex-end;
}

.chat-showcase .chat-bubble.bot {


    background-color: var(--muted);
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    align-self: flex-start;
}

.website-showcase {


    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    background-color: var(--card);
    border: 1px solid var(--border);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.browser-header {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    background-color: var(--muted);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dot.red { background-color: #ef4444; }
.browser-dot.yellow { background-color: #eab308; }
.browser-dot.green { background-color: #22c55e; }

.browser-address {
    flex: 1;
    text-align: center;
    font-size: 0.65rem;
    color: var(--muted-foreground);
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 0;
    max-width: 180px;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.website-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    transition: background-color var(--transition-normal);
}

.website-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-logo {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--gold);
}

.website-menu {
    display: flex;
    gap: 8px;
}

.website-menu-bar {
    width: 24px;
    height: 4px;
    background-color: var(--border);
    border-radius: 2px;
    transition: background-color var(--transition-normal);
}

.website-menu-bar.short {
    width: 16px;
}

.website-hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    max-width: 75%;
}

.website-line {
    height: 12px;
    background-color: var(--foreground);
    border-radius: 3px;
    width: 100%;
    opacity: 0.9;
    transition: background-color var(--transition-normal);
}

.website-line.sub {
    width: 80%;
}

.website-line.paragraph {
    height: 6px;
    background-color: var(--muted-foreground);
    border-radius: 2px;
    width: 90%;
    margin-top: 4px;
}

.website-line.paragraph.short {
    width: 60%;
}

.website-cta {
    height: 28px;
    width: 110px;
    background-color: var(--gold);
    border-radius: 99px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #000;
    box-shadow: 0 4px 10px rgba(232, 167, 67, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.website-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(232, 167, 67, 0.35);
}

.mini-floating-badge {
    position: absolute;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--foreground);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.review-showcase {


    padding: 36px 28px;
    text-align: center;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: var(--card);
    border: 1px solid var(--border);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.review-stars {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 2px 12px rgba(232, 167, 67, 0.3);
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.service-divider {
    margin: 40px 0;
}



/* ==========================================================================
   PRICING & TABLES (Minimalist Shadcn/ui)
   ========================================================================== */

.pricing-section {
    padding: 140px 0 80px 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "content visual"
        "bullets visual"
        "cta visual";
    gap: 20px 80px;
    align-items: start;
    padding: 60px 0;
}

.service-row.reverse {
    grid-template-areas: 
        "visual content"
        "visual bullets"
        "visual cta";
}

.service-row-content {
    grid-area: content;
}

.service-row-visual {
    grid-area: visual;
    align-self: center;
}

.service-bullets {
    grid-area: bullets;
}

.shadowpages-cta-link {
    grid-area: cta;
    justify-self: start;
}

.pricing-card-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto 50px auto;
}

.pricing-card {
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    background-color: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-card-wrapper:hover .pricing-card {
    border-color: rgba(232, 167, 67, 0.4);
    box-shadow: 0 25px 50px rgba(232, 167, 67, 0.06);
}



.pricing-badge {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.pricing-plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-plan-desc {
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.pricing-price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 8px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    margin-left: 4px;
}

.no-contract {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.pricing-divider {
    height: 1px;
    background-color: var(--border);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.feature-check {
    color: var(--foreground);
    flex-shrink: 0;
}

.highlight-feature {
    color: var(--foreground);
    font-weight: 600;
}

.guarantee {
    display: block;
    font-size: 0.75rem;
    margin-top: 12px;
}

/* Comparison Tables */
.comparison-table-wrapper {
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.comparison-table-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    text-align: center;
}

.comparison-grid {
    display: grid;
    border-radius: var(--radius);
    overflow: hidden;
}

.comp-col {
    display: flex;
    flex-direction: column;
    background-color: transparent;
}



.comp-cell {
    padding: 16px;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-cell.name {
    font-weight: 600;
    color: var(--foreground);
}

/* ==========================================================================
   MODALS & CONTACT PAGES
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-fast);
}


.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    width: 980px;
    max-width: 95%;
    border-radius: var(--radius);
    position: relative;
    transform: translateY(10px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 500px;
}

.modal-split-info {
    padding: 36px 30px;
    background-color: rgba(255, 255, 255, 0.015);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-split-form {
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    .modal-split-layout {
        grid-template-columns: 1fr;
        max-height: 85vh;
        overflow-y: auto;
    }
    .modal-split-info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 24px;
    }
    .modal-split-form {
        padding: 24px;
    }
}



.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    color: var(--foreground);
}

.modal-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.modal-description {
    font-size: 0.85rem;
    margin-bottom: 24px;
}

/* Forms */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
}

.form-group input, .form-group select {
    height: 40px;
    border-radius: 6px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition-fast);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--foreground);
}

.form-group input::placeholder, .form-group select::placeholder {
    color: var(--muted-foreground);
    opacity: 0.45;
}

body.light .form-group input, body.light .form-group select {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--foreground);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(232, 167, 67, 0.15);
}

body.light .form-group input:focus, body.light .form-group select:focus {
    background-color: rgba(0, 0, 0, 0.01);
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(232, 167, 67, 0.1);
}

/* Loader */
.loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-foreground);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 16px 0;
}

.success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--foreground);
}

.form-success-message h5 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.form-success-message p {
    font-size: 0.85rem;
}

/* Footer Section Styling */
.main-footer {
    padding: 60px 0 24px 0;
    margin-top: auto;
    background-color: var(--footer-bg);
    flex-shrink: 0;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}


.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-desc {
    font-size: 0.85rem;
    margin-top: 12px;
    max-width: 420px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-links-col h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-links-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--foreground);
}

.footer-bottom {
    padding-top: 20px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

/* UI/UX EXPERT STYLINGS FOR SUBPAGES (TRADES, PROCESS, PARTNERS) */

.process-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.step-num-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--foreground);
    margin-bottom: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.trades-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

/* Trades Preview Showcase on Landing */
.trades-preview-section {
    padding: 80px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.01);
}

.trades-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 30px auto;
    padding: 0 40px;
}

.trades-carousel-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    scrollbar-width: none;
    cursor: grab;
}

.trades-carousel-grid.grabbing {
    cursor: grabbing;
    user-select: none;
}

.trades-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin: 30px 0;
}

.trades-marquee-content {
    display: flex;
    width: max-content;
    animation: trades-marquee-scroll 35s linear infinite;
}

.trades-marquee-content:hover {
    animation-play-state: paused;
}

.trades-marquee-slide {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.trades-marquee-slide .trade-carousel-card {
    flex: 0 0 280px;
    width: 280px;
}

@keyframes trades-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}



.trades-carousel-grid::-webkit-scrollbar {
    display: none;
}


.trade-carousel-card {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--card);
    border: 1px solid var(--border);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 16px);
}

.trade-carousel-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(232, 167, 67, 0.08);
}

.trade-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    background: var(--gradient-card);

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-card-fallback-icon {
    font-size: 3.5rem;
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.trade-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.trade-carousel-card:hover .trade-card-img {
    transform: scale(1.05);
}

.trade-card-footer {

    background-color: var(--card);
    padding: 18px 16px;
    text-align: center;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
    z-index: 3;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}



.trade-carousel-card:hover .trade-card-footer {
    background-color: var(--gold);
    color: #000000;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 3rem;
    z-index: 10;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
    color: var(--foreground);
    transform: translateY(-50%) scale(1.15);
}

.carousel-arrow.left {
    left: 0;
}

.carousel-arrow.right {
    right: 0;
}

/* Category Checklist Section */
.categories-checklist-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.categories-checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.checklist-item:hover {
    color: var(--foreground);
}

.checklist-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* Premium CTA Banner Card */
.cta-banner-card {
    background: var(--gradient-card);

    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 167, 67, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.cta-banner-title {
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-banner-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Dotted Flow Path */
.timeline-flow-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.timeline-flow-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.timeline-flow-line {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

.timeline-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 28%;
    position: relative;
    z-index: 2;
}

.timeline-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--muted);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-flow-step:hover .timeline-circle {
    transform: scale(1.1);
    border-color: var(--gold);
    background-color: var(--secondary);
    box-shadow: 0 0 20px rgba(232, 167, 67, 0.15);
}

.timeline-step-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-step-desc {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Video Testimonial Previews */
.video-testimonials-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.video-testimonial-box {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.video-testimonial-box:hover {
    border-color: var(--muted-foreground);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-preview-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #000;
    border: 1px solid var(--border);
}

.video-preview-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-testimonial-box:hover .video-preview-thumbnail {
    transform: scale(1.03);
    opacity: 0.75;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s ease, color 0.2s ease;
}

.video-testimonial-box:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--gold);
    color: #000000;
}

@media (max-width: 992px) {
    .trade-carousel-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .categories-checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-banner-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }
    
    .timeline-flow-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .timeline-flow-line {
        display: none;
    }
    
    .timeline-flow-step {
        width: 80%;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .trade-carousel-card {
        flex: 0 0 100%;
    }
    
    .trades-carousel-container {
        padding: 0 10px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .categories-checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS (UI/UX EXPERT INTERACTION)
   ========================================================================== */

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

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 167, 67, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(232, 167, 67, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 167, 67, 0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Timeline animations */
.process-grid-layout .bento-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-grid-layout .bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(232, 167, 67, 0.05);
}

.process-grid-layout .bento-card:hover .step-num-badge {
    animation: pulseGlow 1.5s infinite;
    background-color: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* FAQ Accordion Styling */
.faq-container {
    max-width: 720px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--muted);
    overflow: hidden;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

/* Details/Summary Accordion Native Styling */
details.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--muted);
    overflow: hidden;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

details.faq-item[open] {
    border-color: var(--muted-foreground);
    background-color: rgba(255, 255, 255, 0.01);
}

details.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-chevron {
    transition: transform 0.25s ease;
    color: var(--muted-foreground);
}

details.faq-item[open] summary .faq-chevron {
    transform: rotate(180deg);
}

details.faq-item .faq-answer {
    display: none;
}

details.faq-item[open] .faq-answer {
    display: block;
}

.faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Marquee Banderole Scroller */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    margin: 20px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-slide {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 48px;
    flex-shrink: 0;
}

.partner-official-logo {
    max-height: 32px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}





body.light .partner-official-logo {
    filter: brightness(0);
    opacity: 0.45;
}

.partner-official-logo:hover {
    filter: brightness(0) invert(1);
    opacity: 1;
    transform: scale(1.05);
}

body.light .partner-official-logo:hover {
    filter: brightness(0);
    opacity: 0.85;
}




@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.marquee-content-reverse {
    display: flex;
    width: max-content;
    animation: marquee-scroll-reverse 30s linear infinite;
}

/* Uniqueness cards */
.uniqueness-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease, background-color var(--transition-normal);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.uniqueness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uniqueness-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 167, 67, 0.3);
    box-shadow: 0 12px 40px rgba(232, 167, 67, 0.06);
}

.uniqueness-card:hover::before {
    opacity: 1;
}

.uniqueness-icon-container {
    color: var(--gold);
    background: rgba(232, 167, 67, 0.06);
    border: 1px solid rgba(232, 167, 67, 0.15);
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.uniqueness-card:hover .uniqueness-icon-container {
    background: rgba(232, 167, 67, 0.1);
    border-color: rgba(232, 167, 67, 0.3);
}

/* Details/Summary Accordion Native Styling */
details.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--muted);
    overflow: hidden;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

details.faq-item[open] {
    border-color: var(--muted-foreground);
    background-color: rgba(255, 255, 255, 0.01);
}

details.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item[open] summary .faq-chevron {
    transform: rotate(180deg);
}

/* Ambient cursor glow and subtle effects */


.bg-glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.ambient-glow {
    position: absolute;


    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 167, 67, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.glow-1 { top: -10%; left: -10%; }
.glow-2 { bottom: -10%; right: -10%; }

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 167, 67, 0.035) 0%, rgba(232, 167, 67, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-proof {
        justify-content: center;
    }
    
    .mega-menu {
        width: 100%;
        position: relative;
        left: 0;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .service-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    
    .service-row-content {
        max-width: 100%;
        display: block !important;
    }
    
    .service-row-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .service-bullets {
        width: 100%;
        max-width: 480px;
        margin: 15px auto !important;
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: flex-start !important;
    }
    
    .service-bullets li {
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .shadowpages-cta-link {
        margin-top: 10px !important;
        align-self: center;
        display: inline-flex;
    }

    .service-row.reverse .service-row-visual,
    .service-row.reverse .service-row-content {
        grid-column: auto;
        grid-row: auto;
    }
    


    .process-grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hide-mobile,
    #themeToggle,
    #btnHeaderDemo {
        display: none !important;
    }
    
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   SECTION HEADERS & STEP BADGES (UI/UX Premium)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    background-color: var(--muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.step-num-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(232, 167, 67, 0.3);
}



.main-header.scycled {
    background-color: var(--header-bg-scycled);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--mockup-shadow);
}



.nav-link.active, .nav-dropdown-trigger.active {
    color: var(--foreground) !important;
    background-color: var(--muted) !important;
}



/* ==========================================================================
   SHADOWPAGES-STYLE SYSTEMS PRESENTATION & 3D ISOMETRIC MOCKUPS
   ========================================================================== */

@media (min-width: 993px) {


    .services-detail-section {
        position: relative;
    }
    
    .services-detail-section::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(232, 167, 67, 0.12) 10%, rgba(232, 167, 67, 0.12) 90%, transparent);
        transform: translateX(-50%);
        z-index: 1;
        pointer-events: none;
    }
    
    .service-row {
        position: relative;
        z-index: 2;
    }
    
    .service-row::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--gold);
        border: 3px solid #000;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 15px rgba(232, 167, 67, 0.6);
        z-index: 3;
}

.isometric-container {
    perspective: 1200px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border);


    background: var(--gradient-mockup);
    aspect-ratio: 4/3;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 1px 0 var(--glass-blur), 0 20px 40px var(--mockup-shadow);

    width: 100%;
}

.isometric-scene {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.isometric-container:hover .isometric-scene {
    transform: rotateX(8deg) rotateY(-6deg) translateZ(10px);
}

.isometric-grid {
    position: absolute;
    inset-x: 0;
    bottom: 0;
    height: 55%;
    transform: perspective(900px) rotateX(62deg);
    transform-origin: 50% 100%;
    background-image: 
        linear-gradient(to right, rgba(232, 167, 67, 0.1) 1px, transparent 1px), 
        linear-gradient(to bottom, rgba(232, 167, 67, 0.1) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 100%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 100%, black 30%, transparent 70%);
}





.floating-badge {
    position: absolute;
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);


}

.floating-badge.active {
    background: linear-gradient(180deg, rgba(232, 167, 67, 0.18) 0%, rgba(232, 167, 67, 0.04) 100%);
    border-color: rgba(232, 167, 67, 0.4);
    color: var(--gold);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(232, 167, 67, 0.15);

}

.isometric-container:hover .floating-badge {
    transform: translateZ(50px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.15);

}

.isometric-container:hover .floating-badge.active {
    transform: translateZ(60px) scale(1.08);
    border-color: rgba(232, 167, 67, 0.6);
}
@keyframes float-badge-1 {
    0% { transform: translateY(0px) translateZ(25px) rotate(-6deg); }
    50% { transform: translateY(-8px) translateZ(35px) rotate(-8deg); }
    100% { transform: translateY(0px) translateZ(25px) rotate(-6deg); }
}

@keyframes float-badge-2 {
    0% { transform: translateY(0px) translateZ(30px) rotate(5deg); }
    50% { transform: translateY(-6px) translateZ(40px) rotate(7deg); }
    100% { transform: translateY(0px) translateZ(30px) rotate(5deg); }
}

@keyframes float-badge-3 {
    0% { transform: translateY(0px) translateZ(20px) rotate(-2deg); }
    50% { transform: translateY(-10px) translateZ(30px) rotate(-4deg); }
    100% { transform: translateY(0px) translateZ(20px) rotate(-2deg); }
}

.float-badge-1 { animation: float-badge-1 6s ease-in-out infinite; }
.float-badge-2 { animation: float-badge-2 7s ease-in-out infinite 0.5s; }
.float-badge-3 { animation: float-badge-3 8s ease-in-out infinite 1s; }

/* Interactive Phone and Layout Elements inside Isometric container */
.phone-isometric-wireframe {
    width: 170px;
    height: 330px;
    border-radius: 28px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-30deg);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: flex-start;
    gap: 8px;
}

.isometric-chat-bubble {
    background: rgba(232, 167, 67, 0.1);
    border: 1px solid rgba(232, 167, 67, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 0.65rem;
    color: var(--foreground);
    max-width: 85%;
    transform: translateZ(10px);
    transform-style: preserve-3d;
}

.isometric-chat-bubble.bot {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    align-self: flex-start;
    transform: translateZ(5px);
}

.isometric-chat-bubble.user {
    background: linear-gradient(135deg, rgba(232, 167, 67, 0.2), rgba(180, 120, 30, 0.35));
    border-color: rgba(232, 167, 67, 0.4);
    align-self: flex-end;
    color: #fff;
    transform: translateZ(15px);
}
}









.scroll-trigger {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}











.scroll-trigger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--foreground);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
    margin-left: 10px;
    opacity: 0.35;
}

.theme-toggle-btn:hover {
    background-color: var(--secondary);
    border-color: var(--border);
    opacity: 1;
    transform: scale(1.05);
}


/* Hide sun/moon icons based on active mode */
body.light .sun-icon {
    display: none;
}
body:not(.light) .moon-icon {
    display: none;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Cal.com Calendar & Time Picker */
.cal-picker-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 290px;
}

.cal-calendar-box {
    flex: 1;
    min-width: 240px;
}

.cal-time-box {
    width: 170px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 1px solid var(--border);
    padding-left: 20px;
    height: 280px;
    overflow-y: auto;
}

.cal-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cal-current-month {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--foreground);
}

.cal-nav-buttons {
    display: flex;
    gap: 8px;
}

.cal-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--foreground);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.cal-weekdays-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.cal-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background: transparent;
}

.cal-day.empty {
    cursor: default;
    pointer-events: none;
    opacity: 0.2;
}

.cal-day.disabled {
    color: var(--muted-foreground);
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.cal-day.available {
    background: rgba(232, 167, 67, 0.06);
    border: 1px solid rgba(232, 167, 67, 0.15);
    color: var(--gold);
    font-weight: 700;
}

.cal-day.available:hover {
    background: rgba(232, 167, 67, 0.15);
    border-color: var(--gold);
}

.cal-day.selected {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #000 !important;
    font-weight: 800;
}

.cal-time-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.cal-time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cal-time-slot {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--foreground);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-time-slot:hover {
    border-color: var(--gold);
    background: rgba(232, 167, 67, 0.05);
    color: var(--gold);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .cal-picker-layout {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .cal-calendar-box {
        width: 100%;
    }
    .cal-time-box {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 20px;
        height: auto;
        max-height: 250px;
    }
    .cal-time-slots {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .cal-time-slot {
        flex: 1 0 calc(33.333% - 8px);
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .modal-split-info,
    .modal-split-form {
        padding: 20px 16px !important;
    }
    .cal-days-grid,
    .cal-weekdays-grid {
        gap: 2px !important;
    }
    .cal-day {
        height: 34px;
        font-size: 0.75rem;
    }
}

/* Mobile Optimization - Accordion & Layouts */
@media (max-width: 768px) {
    /* Stack hero buttons on mobile */
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Center cta-banner-card components on mobile */
    .cta-banner-card {
        align-items: center !important;
        text-align: center !important;
    }
    
    .cta-banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center uniqueness-cards on mobile */
    .uniqueness-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Vertical proof section on mobile */
    .hero-proof {
        flex-direction: column;
        gap: 8px;
    }
    .hero-proof .proof-text {
        text-align: center;
    }
    .hero-proof .proof-text strong {
        display: block;
        margin-top: 4px;
    }
}

/* Mobile Navigation Accordion */
.mobile-nav-details {
    width: 100%;
}

.mobile-nav-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.mobile-nav-details summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-details summary .chevron-icon {
    transition: transform 0.2s ease;
    opacity: 0.5;
}

.mobile-nav-details[open] summary .chevron-icon {
    transform: rotate(180deg);
}

.mobile-nav-sub-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0 10px 16px;
    border-left: 1px solid var(--border);
    margin-left: 4px;
    margin-top: 6px;
}



















