/* -------------------------------------------------------------
 * Sanid (ساند) Premium Landing Page Design System & Stylesheet
 * ------------------------------------------------------------- */

/* Reset & Base Rules */
:root {
    --bg-primary: #070B13;
    --bg-secondary: #0D1325;
    --bg-card: rgba(18, 26, 47, 0.6);
    --bg-card-hover: rgba(22, 32, 59, 0.85);
    
    --color-primary: #2563EB;
    --color-cyan: #00F2FE;
    --color-purple: #9D6EFF;
    --color-teal: #6EE7D4;
    --color-green: #10B981;
    --color-orange: #FB923C;
    --color-red: #EF4444;
    
    --text-white: #FFFFFF;
    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 242, 254, 0.3);
    
    --font-cairo: 'Cairo', sans-serif;
    --font-tajawal: 'Tajawal', sans-serif;
    --font-outfit: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-tajawal);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Typography Helpers */
h1, h2, h3, h4, .btn {
    font-family: var(--font-cairo);
}

strong {
    color: var(--text-white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-white {
    color: var(--text-white);
}

/* Background Glowing Orbs */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -5%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-cyan) 0%, rgba(0, 242, 254, 0) 70%);
    animation: float-orb 28s infinite alternate ease-in-out;
}

.orb-2 {
    top: 40%;
    left: -15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-purple) 0%, rgba(157, 110, 255, 0) 70%);
    animation: float-orb 24s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    bottom: 5%;
    right: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-teal) 0%, rgba(110, 231, 212, 0) 70%);
    animation: float-orb 20s infinite alternate ease-in-out;
}

@keyframes float-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 10%) scale(1.1); }
}

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 11, 19, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: rgba(7, 11, 19, 0.85);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.25));
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #000000;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-cyan) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.45);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Main layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Scroll reveal initial states */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: right;
}

.badge-container {
    margin-bottom: 24px;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 19, 37, 0.6);
    border: 1px solid var(--border-hover);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-green);
    border-radius: 50%;
    animation: beacon-pulse 2.2s infinite ease-out;
}

@keyframes beacon-pulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    color: var(--text-white);
    margin-bottom: 24px;
}

.hero-subheading {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-footnote {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-footnote .separator {
    color: rgba(255, 255, 255, 0.15);
}

/* Mascot visual animations */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mascot-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jellyfish-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(0, 242, 254, 0.2));
    transition: transform 0.3s ease-out;
}

.mascot-speech-bubble {
    position: absolute;
    top: 5%;
    right: -10%;
    background: rgba(18, 26, 47, 0.8);
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    padding: 14px 20px;
    max-width: 220px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: bubble-float 6s infinite ease-in-out;
    pointer-events: none;
}

.mascot-speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: rgba(18, 26, 47, 0.8) transparent;
    display: block;
    width: 0;
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Trustbar / Social Proof Sectors */
.trustbar {
    background: var(--bg-secondary);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trustbar-title {
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.sector-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.sector-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.sector-icon {
    font-size: 1.25rem;
}

.sector-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Advanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    text-align: right;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(0, 242, 254, 0.03);
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.feature-icon-wrapper.cyan { background: rgba(0, 242, 254, 0.08); border: 1px solid rgba(0, 242, 254, 0.2); color: var(--color-cyan); }
.feature-icon-wrapper.teal { background: rgba(110, 231, 212, 0.08); border: 1px solid rgba(110, 231, 212, 0.2); color: var(--color-teal); }
.feature-icon-wrapper.orange { background: rgba(251, 146, 60, 0.08); border: 1px solid rgba(251, 146, 60, 0.2); color: var(--color-orange); }
.feature-icon-wrapper.purple { background: rgba(157, 110, 255, 0.08); border: 1px solid rgba(157, 110, 255, 0.2); color: var(--color-purple); }
.feature-icon-wrapper.green { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2); color: var(--color-green); }
.feature-icon-wrapper.red { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.2); color: var(--color-red); }

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Showcase Section & Tabs */
.showcase {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(157, 110, 255, 0.1) 100%);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.08);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease-out;
}

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

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-info {
    text-align: right;
}

.accent-tag {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.accent-tag.cyan { background: rgba(0, 242, 254, 0.08); border: 1px solid rgba(0, 242, 254, 0.2); color: var(--color-cyan); }
.accent-tag.purple { background: rgba(157, 110, 255, 0.08); border: 1px solid rgba(157, 110, 255, 0.2); color: var(--color-purple); }

.showcase-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.showcase-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1rem;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-list li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.showcase-list li span {
    font-size: 1.1rem;
}

/* 3D Slanting phone mockup designs */
.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phones-container {
    position: relative;
    width: 100%;
    height: 420px;
}

.phone-mockup {
    position: absolute;
    width: 220px;
    height: 440px;
    background: #0E1325;
    border: 8px solid #2B3553;
    border-radius: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(0, 242, 254, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.phone-speaker {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 12px;
    background: #2B3553;
    border-radius: 10px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #060913;
    padding: 24px 12px 12px 12px;
    color: var(--text-primary);
    font-family: var(--font-tajawal);
}

/* 3D tilts for phones */
.phone-main {
    top: -20px;
    right: 20%;
    z-index: 2;
    transform: rotateY(-18deg) rotateX(12deg) rotateZ(4deg) scale(0.9);
}

.phone-reports {
    top: 20px;
    left: 20%;
    z-index: 1;
    transform: rotateY(-14deg) rotateX(10deg) rotateZ(-3deg) scale(0.85);
    border-color: #202A44;
}

/* Interactive phone hovering */
.phones-container:hover .phone-main {
    transform: rotateY(-8deg) rotateX(4deg) rotateZ(2deg) scale(0.95) translateY(-10px);
    z-index: 3;
}

.phones-container:hover .phone-reports {
    transform: rotateY(-6deg) rotateX(2deg) rotateZ(-1deg) scale(0.9) translateY(10px);
}

/* Mobile Screen components inside mockups */
.app-statusbar {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-outfit);
    margin-bottom: 12px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.app-header-back {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-family: var(--font-cairo);
}

.back-arrow {
    font-size: 0.8rem;
    cursor: pointer;
}

.screen-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.user-name {
    display: flex;
    flex-direction: column;
}

.greeting {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
}

.company-code {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.app-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
}

.app-widget.glow-blue {
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.05);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.widget-value {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-cyan);
    font-family: var(--font-outfit);
}

.widget-progress {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    margin: 6px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--color-cyan);
}

.widget-footer {
    font-size: 0.58rem;
    color: var(--text-muted);
}

.app-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.quick-tile {
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.bg-gradient-sales { background: rgba(37, 99, 235, 0.1); border-color: rgba(37, 99, 235, 0.2); }
.bg-gradient-receipt { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); }
.bg-gradient-customers { background: rgba(0, 242, 254, 0.1); border-color: rgba(0, 242, 254, 0.2); }
.bg-gradient-tasks { background: rgba(157, 110, 255, 0.1); border-color: rgba(157, 110, 255, 0.2); }

.tile-icon { font-size: 1.1rem; }
.tile-label { font-size: 0.65rem; font-weight: 700; color: var(--text-white); }

.jofotara-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.indicator-dot.green {
    background-color: var(--color-green);
    box-shadow: 0 0 8px var(--color-green);
}

.indicator-text {
    font-size: 0.62rem;
    color: var(--text-secondary);
}

.app-mascot-helper {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 8px;
}

.app-mascot-svg { font-size: 1rem; }
.app-speech {
    font-size: 0.58rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Reports Screen mockup details */
.widget-title {
    font-size: 0.68rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.chart-mockup {
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    margin-top: 10px;
}

.chart-bar {
    flex-grow: 1;
    background: linear-gradient(0deg, var(--color-purple) 0%, var(--color-cyan) 100%);
    border-radius: 3px 3px 0 0;
    transition: var(--transition-smooth);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.52rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.aging-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.list-title {
    font-size: 0.68rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 4px;
}

.aging-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    font-size: 0.62rem;
}

.aging-item.red { border-color: rgba(239, 68, 68, 0.15); background: rgba(239, 68, 68, 0.02); }
.aging-item.orange { border-color: rgba(251, 146, 60, 0.15); background: rgba(251, 146, 60, 0.02); }
.aging-item.green { border-color: rgba(16, 185, 129, 0.15); background: rgba(16, 185, 129, 0.02); }

.aging-item .customer { font-weight: 700; color: var(--text-white); }
.aging-item .days { color: var(--text-muted); }
.aging-item .amount { font-family: var(--font-outfit); font-weight: 700; }
.aging-item.red .amount { color: var(--color-red); }
.aging-item.orange .amount { color: var(--color-orange); }
.aging-item.green .amount { color: var(--color-green); }

/* Dashboard CSS Mockup inside Web Tab */
.dashboard-mockup {
    width: 100%;
    max-width: 520px;
    background: #0E1325;
    border: 6px solid #2B3553;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.dashboard-header {
    background: #17203A;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-dots {
    display: flex;
    gap: 4px;
}

.header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
}

.header-search {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 2px 16px;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-outfit);
    flex-grow: 1;
    text-align: left;
}

.dashboard-screen {
    height: 320px;
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    background: #070B13;
}

.dashboard-sidebar {
    background: #0B0F1E;
    border-left: 1px solid rgba(255,255,255,0.05);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-logo {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-white);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    font-size: 0.68rem;
    color: var(--text-secondary);
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
}

.menu-item.active {
    background: rgba(0, 242, 254, 0.08);
    color: var(--color-cyan);
    font-weight: 700;
}

.dashboard-main {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.main-topbar {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 6px;
}

.main-topbar .date {
    color: var(--text-muted);
}

.main-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.d-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
}

.w-label { font-size: 0.52rem; color: var(--text-muted); }
.w-val { font-size: 0.68rem; font-weight: 800; color: var(--text-white); font-family: var(--font-outfit); }

.map-simulation {
    flex-grow: 1;
    background: #111A30;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.04);
    min-height: 140px;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 15px 15px;
}

.map-marker {
    position: absolute;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--text-white);
    background: var(--color-primary);
}

.map-marker::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 8px;
    border-width: 6px 4px 0;
    border-style: solid;
    border-color: var(--color-primary) transparent;
}

.map-marker.rep-1 { background-color: var(--color-primary); }
.map-marker.rep-2 { background-color: var(--color-purple); }
.map-marker.rep-2::before { border-top-color: var(--color-purple); }

.map-customer {
    position: absolute;
    font-size: 0.48rem;
    color: var(--text-muted);
}

.map-zoom-controls {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,0.4);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.58rem;
}

/* Strategic Benefits layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: right;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(157, 110, 255, 0.3);
    box-shadow: 0 15px 30px rgba(157, 110, 255, 0.02);
}

.quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.client-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing Toggle and Cards Styles */
.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 50px;
    margin-top: 16px;
}

.toggle-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-white);
}

.discount-badge {
    color: var(--color-green);
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-toggle {
    width: 50px;
    height: 26px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-toggle.yearly-active {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
}

.pricing-toggle.yearly-active .toggle-handle {
    transform: translateX(24px); /* Checked state translation */
}

.toggle-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: var(--text-white);
    border-radius: 50%;
    transition: var(--transition-smooth);
    transform: translateX(0px); /* Unchecked/monthly default position */
}



.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card.recommended {
    border: 2px solid var(--color-cyan);
    background: rgba(18, 28, 55, 0.8);
    box-shadow: 0 20px 45px rgba(0, 242, 254, 0.08);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: #000000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.plan-header h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 40px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.plan-price .amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    font-family: var(--font-outfit);
    transition: var(--transition-fast);
}

.plan-price .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.plan-price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.plan-seats-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    min-height: 24px;
    display: block;
}

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

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-features li span {
    color: var(--color-green);
    font-weight: bold;
}

.pricing-card.recommended .plan-features li span {
    color: var(--color-cyan);
}

/* Collapsible comparison table styling */
.comparison-trigger-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.detailed-comparison-table-container {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
}

.detailed-comparison-table-container.collapsed {
    max-height: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    text-align: right;
    font-size: 0.92rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(255,255,255,0.02);
    color: var(--text-white);
    font-weight: 700;
}

.comparison-table th:first-child { width: 40%; }
.comparison-table th:not(:first-child) { text-align: center; }

.comparison-table td:not(:first-child) {
    text-align: center;
    font-weight: 500;
}

.comparison-table tr:hover {
    background: rgba(255,255,255,0.01);
}

.table-category-header {
    background: rgba(255, 255, 255, 0.015);
}

.table-category-header td {
    font-weight: 800;
    color: var(--color-cyan);
    font-size: 0.95rem;
}

/* FAQ accordion styling */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 28px;
    text-align: right;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Active FAQ items styles */
.faq-item.active {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: var(--color-cyan);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* CTA & Demo Booking Form Section */
.booking-cta {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info {
    text-align: right;
}

.booking-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-checklist-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
}

.whatsapp-direct {
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    padding: 20px;
}

.whatsapp-direct p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #000000;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* Glassmorphism Booking Form Card */
.glass-card {
    background: rgba(18, 26, 47, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
}

.glass-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    text-align: center;
}

.glass-card .card-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

/* Form controls styling */
#early-access-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    background: rgba(7, 11, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 44px 14px 16px; /* Extra padding on right for the icon */
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-tajawal);
    transition: var(--transition-fast);
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: left 12px center;
}

.input-wrapper input:focus, .input-wrapper select:focus {
    border-color: var(--color-cyan);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

/* Invalid states */
.error-message {
    font-size: 0.78rem;
    color: var(--color-red);
    display: none;
    font-weight: 600;
}

.input-group.invalid input, .input-group.invalid select {
    border-color: var(--color-red);
    background: rgba(239, 68, 68, 0.02);
}

.input-group.invalid .error-message {
    display: block;
}

/* Success Card details */
.success-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.success-message {
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.next-steps-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hidden {
    display: none !important;
}

/* Floating WhatsApp Widget in Corner (Simulated Interactive Chat) */
.whatsapp-floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Standard left side placement for Arabic RTL sites */
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.whatsapp-floating-toggle {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 
                0 0 0 0px rgba(37, 211, 102, 0.2);
    position: relative;
    transition: var(--transition-smooth);
    animation: w-pulse 2s infinite;
    outline: none;
}

.whatsapp-floating-toggle:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating-icon {
    font-size: 1.7rem;
}

.whatsapp-floating-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-red);
    color: var(--text-white);
    font-size: 0.72rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #25D366;
    font-family: var(--font-outfit);
}

/* Chat Window Panel */
.whatsapp-chat-window {
    width: 330px;
    background: rgba(18, 26, 47, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-hover);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom left;
    z-index: 1000;
}

.whatsapp-chat-window.hidden {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    pointer-events: none;
    display: none !important;
}

.chat-window-header {
    background: #075E54;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #fff;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: right;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    background-color: var(--bg-primary);
}

.chat-user-details {
    display: flex;
    flex-direction: column;
}

.chat-user-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-cairo);
}

.chat-user-status {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-online-dot {
    width: 6px;
    height: 6px;
    background-color: #25D366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #25D366;
}

.chat-close-btn {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.chat-close-btn:hover {
    color: #fff;
}

/* Chat Body (Message area) */
.chat-window-body {
    padding: 18px;
    background: #0b101c;
    background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 260px;
    overflow-y: auto;
    text-align: right;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-message.received {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-top-right-radius: 2px;
    align-self: flex-start;
}

.chat-time {
    font-size: 0.58rem;
    color: var(--text-muted);
    align-self: flex-end;
    font-family: var(--font-outfit);
}

/* Chat Footer (Input Area) */
.chat-window-footer {
    padding: 10px 14px;
    background: rgba(7, 11, 19, 0.85);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-window-footer input {
    flex-grow: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.85rem;
    font-family: var(--font-tajawal);
    outline: none;
    transition: var(--transition-fast);
}

.chat-window-footer input:focus {
    border-color: var(--color-cyan);
}

.chat-send-btn {
    background: #25D366;
    color: #000;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(37,211,102,0.4);
}

.send-icon {
    width: 18px;
    height: 18px;
    transform: scaleX(-1); /* mirror icon for RTL */
}

@keyframes w-pulse {
    0% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Footer styling */
.footer {
    background: #04060C;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.6fr;
    gap: 40px;
}

.footer-brand-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links-col, .footer-contact-col {
    text-align: right;
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

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



.footer-contact-col p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-contact-col a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-contact-col a:hover {
    color: var(--color-cyan);
    text-decoration: none;
}

.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: transparent;
    transition: var(--transition-fast);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    color: #ffffff;
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

.footer-social-link:focus-visible {
    outline: 2px solid var(--color-cyan);
    outline-offset: 2px;
}

/* -------------------------------------------------------------
 * Responsive Layouts Breakpoints (Mobile First)
 * ------------------------------------------------------------- */

/* Tablet Viewports */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 130px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        order: -1; /* Put mascot at top on mobile/tablet */
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-list {
        text-align: right;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-direct {
        width: 100%;
        max-width: 480px;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    /* Sticky Navigation menu toggles */
    .nav-menu {
        position: fixed;
        top: 69px; /* Height of header */
        right: -100%;
        width: 100%;
        height: calc(100vh - 69px);
        background: var(--bg-primary);
        flex-direction: column;
        gap: 40px;
        padding-top: 50px;
        transition: var(--transition-smooth);
        border-right: 1px solid var(--border-color);
        z-index: 99;
    }
    
    .nav-menu.mobile-active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Hamburger to X transition */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-actions .btn {
        display: none; /* Hide primary header CTA on mobile menu, shown in body */
    }
    
    .hero-heading {
        font-size: 2.1rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .glass-card {
        padding: 24px;
    }
    
    .whatsapp-chat-window {
        width: 290px;
    }
}

/* -------------------------------------------------------------
 * Sanid AI Command Center & Advisor Styles
 * ------------------------------------------------------------- */
.command-center {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(135deg, #090e18 0%, #05070c 100%);
    overflow: hidden;
}

.command-center .controls-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.command-center .controls-bar .btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.command-center .controls-bar .btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transform: translateY(-2px);
}

.command-center .controls-bar .btn.active {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    color: var(--bg-primary);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.35);
}

/* Scene Container */
.scene-container {
    position: relative;
    width: 100%;
    height: 620px;
    background: radial-gradient(circle at center, rgba(157, 110, 255, 0.04) 0%, transparent 70%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Connection Lines Canvas */
.connections-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Sparkle Elements */
.sparkle {
    position: absolute;
    width: 14px;
    height: 14px;
    color: rgba(110, 231, 212, 0.6);
    pointer-events: none;
    z-index: 0;
    animation: sparkle-glow 3s ease-in-out infinite alternate;
}

@keyframes sparkle-glow {
    0% { transform: scale(0.6) rotate(0deg); opacity: 0.2; filter: drop-shadow(0 0 2px rgba(110, 231, 212, 0.2)); }
    100% { transform: scale(1.1) rotate(180deg); opacity: 0.9; filter: drop-shadow(0 0 8px rgba(110, 231, 212, 0.8)); }
}

/* Center Workspace Card */
.center-card-wrapper {
    position: relative;
    z-index: 5;
    width: 560px;
    height: 280px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    perspective: 1000px;
}

.center-card-wrapper.morphed {
    width: 480px;
    height: 180px;
}

.center-card-wrapper.morphed.has-response {
    height: 410px;
}

.center-card {
    width: 100%;
    height: 100%;
    background: rgba(18, 26, 47, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.center-card-wrapper:hover .center-card {
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(157, 110, 255, 0.15);
}

/* State 1: Profile UI */
.profile-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.5s ease;
}

.center-card-wrapper.morphed .profile-section {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.avatar-container {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(110, 231, 212, 0.45);
    box-shadow: 
        0 0 15px rgba(110, 231, 212, 0.35),
        inset 0 0 10px rgba(110, 231, 212, 0.25);
    pointer-events: none;
    z-index: 1;
    animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(110, 231, 212, 0.45);
        box-shadow: 0 0 15px rgba(110, 231, 212, 0.35), inset 0 0 10px rgba(110, 231, 212, 0.25);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(157, 110, 255, 0.55);
        box-shadow: 0 0 25px rgba(157, 110, 255, 0.45), inset 0 0 15px rgba(157, 110, 255, 0.35);
    }
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

#mascot-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(157, 110, 255, 0.25));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.avatar-container:hover #mascot-svg {
    transform: scale(1.06) translateY(-5px);
}

.status-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--color-green);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #0f172a;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: status-pulse 2s infinite;
    z-index: 3;
}

@keyframes status-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.profile-info h3 {
    font-size: 1.45rem;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.profile-info p {
    font-size: 0.95rem;
    color: var(--color-teal);
    font-family: var(--font-tajawal);
}

.profile-actions {
    display: flex;
    gap: 0.8rem;
    transition: all 0.5s ease;
}

.center-card-wrapper.morphed .profile-actions {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.action-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    padding: 0.8rem;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    transform: translateY(-2px);
}

.action-btn.active {
    background: rgba(157, 110, 255, 0.08);
    border-color: rgba(157, 110, 255, 0.3);
    color: var(--color-purple);
}

/* State 2: Prompt section & Morphed input */
.prompt-section {
    position: absolute;
    top: 2.2rem;
    left: 2.2rem;
    right: 2.2rem;
    bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.center-card-wrapper.morphed .prompt-section {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.prompt-input-row {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 0.2rem 0.5rem;
    transition: var(--transition-smooth);
}

.prompt-input-row:focus-within {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
    background: rgba(0, 0, 0, 0.35);
}

.prompt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-right: 0.6rem;
    margin-left: 0.4rem;
}

.prompt-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: var(--font-tajawal);
    font-size: 1rem;
    padding: 0.8rem 0.2rem;
    direction: rtl;
}

.prompt-input::placeholder {
    color: var(--text-muted);
}

.prompt-close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.prompt-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-red);
}

/* Suggestion Chips */
.suggestions-list {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.7rem;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: 95px;
}

.suggestion-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    font-family: var(--font-tajawal);
}

.suggestion-chip:hover {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.3);
    color: var(--color-cyan);
    transform: translateY(-1px);
}

/* Q&A Response Box */
.advisor-response-container {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 1.1rem;
    display: none;
    flex-direction: column;
    max-height: 190px;
    overflow-y: auto;
}

.center-card-wrapper.morphed.has-response .advisor-response-container {
    display: flex;
}

.advisor-loading {
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    animation: dot-swing 1.4s infinite ease-in-out both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes dot-swing {
    0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

.advisor-answer {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: right;
    white-space: pre-line;
    font-family: var(--font-tajawal);
}

/* Orbiting Badges/Cards System */
.orbit-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    will-change: transform, opacity;
    width: auto;
    height: auto;
    pointer-events: auto;
    z-index: 4;
    transition: opacity 0.5s ease;
    user-select: none;
}

/* Orbit Card Component Styling */
.glass-badge {
    background: rgba(18, 26, 47, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.glass-badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(22, 32, 59, 0.8);
    transform: scale(1.05) translateY(-3px);
}

.orbit-card[data-theme="blue"]:hover .glass-badge { border-color: var(--color-cyan); box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15); }
.orbit-card[data-theme="pink"]:hover .glass-badge { border-color: var(--color-purple); box-shadow: 0 10px 30px rgba(157, 110, 255, 0.15); }
.orbit-card[data-theme="green"]:hover .glass-badge { border-color: var(--color-teal); box-shadow: 0 10px 30px rgba(110, 231, 212, 0.15); }
.orbit-card[data-theme="amber"]:hover .glass-badge { border-color: var(--color-orange); box-shadow: 0 10px 30px rgba(251, 146, 60, 0.15); }

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.15rem;
}

.orbit-card[data-theme="blue"] .badge-icon { color: var(--color-cyan); background: rgba(0, 242, 254, 0.05); }
.orbit-card[data-theme="pink"] .badge-icon { color: var(--color-purple); background: rgba(157, 110, 255, 0.05); }
.orbit-card[data-theme="green"] .badge-icon { color: var(--color-teal); background: rgba(110, 231, 212, 0.05); }
.orbit-card[data-theme="amber"] .badge-icon { color: var(--color-orange); background: rgba(251, 146, 60, 0.05); }

.badge-content {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.badge-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-cairo);
}

.badge-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* Glass block (e.g. daily target) */
.glass-block {
    background: rgba(18, 26, 47, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1rem 1.3rem;
    width: 195px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
}

.glass-block:hover {
    border-color: rgba(157, 110, 255, 0.3);
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 110, 255, 0.1);
}

.block-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-tajawal);
    text-align: right;
}

.block-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-purple);
    font-family: var(--font-cairo);
    text-align: right;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 77%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-cyan) 100%);
    border-radius: 10px;
}

/* Glass Pill element */
.glass-pill {
    background: rgba(18, 26, 47, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 0.6rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.glass-pill:hover {
    border-color: var(--color-teal);
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 10px 30px rgba(110, 231, 212, 0.1);
}

.pill-icon {
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-tajawal);
}

.pill-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .scene-container {
        height: 600px;
    }
    
    .center-card-wrapper {
        width: 90% !important;
        height: auto !important;
        min-height: 290px;
    }
    
    .center-card-wrapper.morphed {
        width: 90% !important;
        height: auto !important;
        min-height: 190px;
    }
    
    .center-card-wrapper.morphed.has-response {
        min-height: 440px;
    }
    
    .center-card {
        padding: 1.5rem;
        justify-content: flex-start;
        gap: 1.2rem;
    }
    
    .avatar-container {
        width: 80px;
        height: 80px;
    }
    
    .profile-info h3 {
        font-size: 1.15rem;
    }
    
    .profile-info p {
        font-size: 0.8rem;
    }
    
    .profile-actions {
        margin-top: auto;
    }
    
    .prompt-section {
        top: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
    
    .suggestion-chip {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .advisor-response-container {
        max-height: 160px;
    }
    
    .orbit-card .glass-badge,
    .orbit-card .glass-block,
    .orbit-card .glass-pill {
        transform: scale(0.85);
    }
}

