:root {
    /* Color System - Luxury Pure Black & Premium Gold/Yellow Gradients */
    --bg-base: #000000;
    --bg-surface: #070707;
    --bg-card: rgba(18, 18, 18, 0.65);
    --bg-card-hover: rgba(28, 28, 28, 0.85);
    
    /* Neon Accent Colors - Vibrant Yellow/Gold/Amber */
    --color-blue: #F4DB00;     /* Premium menetalk Yellow */
    --color-violet: #FF9E00;   /* Vibrant Gold/Amber Orange */
    --color-cyan: #FFE600;     /* Intense Neon Yellow */
    --color-magenta: #FFF59D;  /* Radiant Soft Yellow Light */
    
    /* Gaps & Borders */
    --border-glass: rgba(244, 219, 0, 0.08);
    --border-glow: rgba(244, 219, 0, 0.25);
    
    /* Typography */
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3; /* Sleek Neutral Slate Grey */
    --text-muted: #666666;
    
    /* Font Families */
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    
    /* Grid & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --section-padding: 120px 0;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-base);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(244, 219, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(255, 158, 0, 0.04) 0%, transparent 40%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dot Grid Background Overlay */
.dot-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -2;
    pointer-events: none;
}

/* Floating Neon Blobs in Background */
.neon-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-blue);
    top: 15%;
    left: -10%;
    animation-duration: 20s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--color-violet);
    top: 45%;
    right: -15%;
    animation-duration: 28s;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--color-cyan);
    bottom: 10%;
    left: 20%;
    animation-duration: 22s;
    animation-delay: -2s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(60px, -40px) scale(1.1) rotate(90deg); }
    100% { transform: translate(-40px, 80px) scale(0.9) rotate(180deg); }
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Clickable symbol styling helper */
.link-symbol {
    cursor: pointer;
    transition: var(--transition-fast);
}

/* Helper Gradient Texts */
.gradient-text {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-violet) 50%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

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

/* Section Header Styling */
.section-header {
    max-width: 700px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
}

/* Premium Buttons & Shimmer Animations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-violet) 100%);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(244, 219, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 219, 0, 0.45), 0 0 15px rgba(255, 230, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
}

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

.btn-outline-cyan {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 230, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.05);
}

.btn-outline-cyan:hover {
    background: rgba(255, 230, 0, 0.05);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(244, 219, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(244, 219, 0, 0.15);
}

/* Header & Sticky Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 14px 0;
    background: rgba(5, 7, 13, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    font-family: var(--font-accent);
    color: var(--text-primary);
}

.logo img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.3);
}

/* Mega Menu Dropdown */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: max-content;
    min-width: 550px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.mega-icon {
    width: 48px;
    height: 48px;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--color-cyan);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mega-item:hover .mega-icon {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.2);
}

.mega-text h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-family: var(--font-primary);
}

.mega-text p {
    color: #888888;
    font-size: 13px;
    margin: 0;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero & Orbit Ecosystem Shared Wrapper */
.hero-orbit-wrapper {
    position: relative;
    width: 100%;
    overflow: clip; /* Clip any molecule animations extending outside horizontal view */
    background-color: var(--bg-base);
}

/* 1. HERO SECTION */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Centered Hero Layout */
.centered-hero {
    justify-content: center;
    text-align: center;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(244, 219, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    background: rgba(244, 219, 0, 0.05);
    backdrop-filter: blur(10px);
    animation: blurReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content-centered h1 {
    margin-bottom: 24px;
    animation: blurReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    line-height: 1.15;
}

.hero-subtitle {
    display: block;
    font-size: 24px;
    font-weight: 400; /* not too bold, clean thin style */
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.hero-title {
    display: block;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.15;
}

.typewriter-cursor {
    color: var(--color-cyan);
    font-weight: 300;
    margin-left: 6px;
    display: inline-block;
    animation: typewriterBlink 0.8s step-end infinite;
}

@keyframes typewriterBlink {
    from, to { color: transparent }
    50% { color: var(--color-cyan); }
}

.hero-content-centered p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 720px;
    animation: blurReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions-centered {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: blurReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Right Side - Interactive UI Mockup */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mockup-container {
    width: 100%;
    max-width: 540px;
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 82, 255, 0.15);
    padding: 24px;
    backdrop-filter: blur(20px);
    transform: rotateY(-12deg) rotateX(10deg);
    transition: var(--transition-smooth);
}

.mockup-container:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red { background: #FF5F56; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #27C93F; }

.mockup-title {
    margin-left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mockup Call Screen */
.mockup-call {
    background: rgba(5, 7, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.caller-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.caller-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.caller-details h4 {
    font-size: 14px;
    font-weight: 600;
}

.caller-details p {
    font-size: 11px;
    color: var(--text-muted);
}

.call-status-badge {
    margin-left: auto;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(0, 245, 212, 0.1);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 245, 212, 0.2);
    font-weight: 700;
    animation: pulseGlow 1.5s infinite alternate;
}

.call-wave {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 24px;
    margin-top: 8px;
}

.call-wave span {
    width: 3px;
    height: 40%;
    background: var(--color-cyan);
    border-radius: 2px;
    animation: miniWave 1.2s infinite alternate ease-in-out;
}

.call-wave span:nth-child(2) { animation-delay: 0.2s; height: 70%; }
.call-wave span:nth-child(3) { animation-delay: 0.4s; height: 100%; }
.call-wave span:nth-child(4) { animation-delay: 0.1s; height: 50%; }
.call-wave span:nth-child(5) { animation-delay: 0.3s; height: 80%; }

/* Mockup Dashboard */
.mockup-dashboard {
    background: rgba(5, 7, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 16px;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mockup-row:last-child {
    border-bottom: none;
}

.mockup-label {
    color: var(--text-secondary);
}

.mockup-value {
    font-weight: 600;
}

.mockup-value.green {
    color: var(--color-cyan);
}

/* Floating UI Cards in Hero */
.floating-ui-card {
    position: absolute;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 245, 212, 0.1);
    backdrop-filter: blur(12px);
    z-index: 20;
    animation: floatFloat 6s infinite alternate ease-in-out;
}

.floating-ui-card .icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 14px;
}

.floating-ui-card span {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.fc-1 {
    top: -20px;
    left: -40px;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 40px;
    right: -50px;
    animation-delay: -2s;
    animation-duration: 7s;
}

.fc-3 {
    bottom: -30px;
    left: 20px;
    animation-delay: -4s;
    animation-duration: 8s;
}

@keyframes floatFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes miniWave {
    0% { height: 10%; }
    100% { height: 100%; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(0, 245, 212, 0.1); }
    100% { box-shadow: 0 0 15px rgba(0, 245, 212, 0.4); }
}

@keyframes blurReveal {
    0% { filter: blur(12px); opacity: 1; transform: translateY(24px); }
    100% { filter: blur(0); opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   2. INTERACTIVE COSMIC ORBIT SECTION (BOTTOM SEMI-CIRCLE LAYOUT)
   ========================================================================== */
.orbit-section {
    position: relative;
    min-height: 75vh;
    padding: 120px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: clip; /* Clip bottom half of the rotating circle */
    background: transparent;
}

/* Atmospheric Ambient Cosmic Glow Blobs */
.orbit-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orbit-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: blobBreathe 12s infinite alternate ease-in-out;
}

.blob-purple {
    background: radial-gradient(circle, #7a22ff 0%, transparent 70%);
    width: 600px;
    height: 600px;
    top: 10%;
    left: 15%;
}

.blob-blue {
    background: radial-gradient(circle, #0077ff 0%, transparent 70%);
    width: 700px;
    height: 700px;
    bottom: 10%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes blobBreathe {
    0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
    100% { transform: scale(1.15) translate(30px, -20px); opacity: 0.18; }
}

/* Centered 3D Orbit Viewport */
.orbit-viewport {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 480px; /* Increased height for professional vertical spacing and card headroom */
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Pin to bottom */
    z-index: 3;
    perspective: 1500px;
}

.orbit-area {
    position: relative;
    width: 900px;
    height: 420px; /* Expanded visible dome area height */
}

/* Glowing bottom planetary semi-circle dome */
.orbit-ring {
    position: absolute;
    width: 900px;
    height: 900px;
    bottom: -630px; /* Pushed deep down to show only a very shallow dome hump */
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 11px solid rgba(255, 230, 0, 0.52); /* Thicker bold neon border */
    background: radial-gradient(circle at top, rgba(255, 230, 0, 0.18) 0%, rgba(255, 158, 0, 0.02) 60%, transparent 100%);
    box-shadow: 
        0 -20px 80px rgba(255, 230, 0, 0.22), 
        inset 0 15px 50px rgba(255, 230, 0, 0.08);
    pointer-events: none;
    z-index: 2;
}

.orbit-ring-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 4px solid rgba(255, 230, 0, 0.35); /* Thicker pulse glow border */
    filter: blur(4px);
    animation: ringPulse 4s infinite ease-in-out;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.004); }
}



.orbit-track-wrapper {
    position: absolute;
    width: 900px;
    height: 900px;
    bottom: -630px; /* Kept in absolute sync with dome offset */
    left: 50%;
    transform-origin: center center;
    animation: orbitRotationLoop 45s linear infinite;
    transform-style: preserve-3d;
    z-index: 4;
}

/* Keep the animations in sync when hovering, allowing cards to pause only when a specific box is hovered */
.orbit-track-wrapper:has(.orbit-card:hover),
.orbit-track-wrapper:has(.orbit-card:hover) .orbit-card {
    animation-play-state: paused;
}

/* Cards Positioning around the circle center */
.orbit-card {
    position: absolute;
    width: 330px;
    animation: counterOrbitRotationLoop 45s linear infinite;
    z-index: 5;
}

.orbit-card.pos-top {
    top: 0;
    left: 50%;
}

.orbit-card.pos-right {
    top: 225px;
    left: calc(50% + 390px); /* Balanced 60 degrees right offset for 450px radius */
}

.orbit-card.pos-bottom {
    top: 900px;
    left: 50%; /* Deep underground for smooth horizon rising transition */
}

.orbit-card.pos-left {
    top: 225px;
    left: calc(50% - 390px); /* Balanced 60 degrees left offset for 450px radius */
}

/* Premium Attractive Glassmorphic Card Layout */
.orbit-card-content {
    position: relative;
    padding: 38px 28px 28px;
    border-radius: 24px;
    background: rgba(5, 7, 13, 0.8);
    border: 1px solid rgba(255, 230, 0, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.65), inset 0 0 15px rgba(255, 230, 0, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    animation: floatIdle 6s infinite ease-in-out;
}

.orbit-card.pos-top .orbit-card-content { animation-delay: 0s; }
.orbit-card.pos-right .orbit-card-content { animation-delay: -1.5s; }
.orbit-card.pos-bottom .orbit-card-content { animation-delay: -3s; }
.orbit-card.pos-left .orbit-card-content { animation-delay: -4.5s; }

.orbit-card:hover .orbit-card-content {
    transform: translateY(-12px) scale(1.05);
    border-color: rgba(255, 230, 0, 0.55);
    box-shadow: 
        0 15px 40px rgba(255, 230, 0, 0.22), 
        inset 0 0 25px rgba(255, 230, 0, 0.08);
}

/* Mac-style Window Dots */
.card-header-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    top: 18px;
    left: 20px;
}

.card-header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

/* Diamond shape icon container */
.orbit-icon-diamond {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 18px auto 10px;
    background: rgba(255, 230, 0, 0.05);
    border: 1px solid rgba(255, 230, 0, 0.22);
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.1);
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.orbit-icon-diamond i {
    transform: rotate(-45deg);
    color: var(--color-cyan);
    font-size: 26px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.orbit-card:hover .orbit-icon-diamond {
    transform: rotate(225deg); /* Spin 180 degrees */
    border-color: rgba(255, 230, 0, 0.6);
    background: rgba(255, 230, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.4);
}

.orbit-card:hover .orbit-icon-diamond i {
    transform: rotate(-225deg); /* Counter spin icon to keep upright */
    color: #FFFFFF;
}

.orbit-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 5px;
}

.orbit-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.4s ease;
}

.orbit-card:hover p {
    color: #FFFFFF;
}

/* Animations for counter-clockwise right-to-left orbit */
@keyframes orbitRotationLoop {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(-360deg); } /* rotate negative = counter-clockwise (Right-to-Left at top) */
}

@keyframes counterOrbitRotationLoop {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); } /* rotate positive = counter-rotates to stay upright */
}

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

/* Hide Mobile Carousel by default on Desktop */
.orbit-mobile-carousel {
    display: none;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS FOR TABLET & MOBILE
   ========================================================================== */
@media (max-width: 1024px) {
    .orbit-viewport {
        height: 380px;
    }
    
    .orbit-area {
        width: 800px;
        height: 240px;
    }
    
    .orbit-ring {
        width: 800px;
        height: 800px;
        bottom: -560px;
        border-width: 8px; /* Slightly thinner for tablet scale */
    }
    
    .orbit-track-wrapper {
        width: 800px;
        height: 800px;
        bottom: -560px;
    }
    
    @keyframes orbitRotationLoop {
        0% { transform: translateX(-50%) rotate(0deg); }
        100% { transform: translateX(-50%) rotate(-360deg); }
    }
    
    .orbit-card {
        width: 280px;
    }
    
    .orbit-card.pos-top {
        top: 0;
        left: 50%;
    }
    
    .orbit-card.pos-right {
        top: 200px;
        left: calc(50% + 346px); /* Balanced 60 deg offset for 400px radius */
    }
    
    .orbit-card.pos-bottom {
        top: 800px;
        left: 50%;
    }
    
    .orbit-card.pos-left {
        top: 200px;
        left: calc(50% - 346px); /* Balanced 60 deg offset for 400px radius */
    }
    
    .orbit-card h3 {
        font-size: 18px;
    }
    
    .orbit-card p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* Hide the complex rotating orbital system on mobile */
    .orbit-viewport {
        display: none;
    }
    
    .orbit-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    /* Enable Swipeable Carousel fallback */
    .orbit-mobile-carousel {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        overflow: hidden;
    }
    
    .carousel-swipe-hint {
        text-align: center;
        font-size: 12px;
        color: var(--color-cyan);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        opacity: 0.8;
    }
    
    .orbit-mobile-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 20px 24px 40px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide Firefox scrollbars */
    }
    
    .orbit-mobile-track::-webkit-scrollbar {
        display: none; /* Hide Chrome/Safari scrollbars */
    }
    
    .orbit-mobile-card {
        flex: 0 0 280px;
        width: 280px;
        scroll-snap-align: center;
        padding: 32px 20px 24px;
        border-radius: 20px;
        background: rgba(10, 10, 10, 0.8);
        border: 1px solid rgba(255, 230, 0, 0.15);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        position: relative;
    }
    
    .orbit-mobile-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin-top: 5px;
    }
    
    .orbit-mobile-card p {
        font-size: 13px;
        color: var(--text-secondary);
        line-height: 1.5;
    }
}

/* 4. BUSINESS SIM PURCHASE SECTION */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--color-violet);
    box-shadow: 0 15px 35px rgba(244, 219, 0, 0.15);
    transform: scale(1.03);
}

.pricing-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-align: center;
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.pricing-price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    width: 100%;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-features li i {
    color: var(--color-cyan);
}

.pricing-card .btn {
    width: 100%;
}

/* Floating Sticky Badge */
.sticky-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(11, 15, 26, 0.85);
    border: 1px solid var(--color-cyan);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 245, 212, 0.25);
    backdrop-filter: blur(12px);
    z-index: 99;
    animation: verticalBounce 4s infinite ease-in-out;
}

.sticky-badge i {
    color: var(--color-cyan);
    animation: spinSlow 4s infinite linear;
}

.sticky-badge span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes verticalBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* 5. AI RECEPTIONIST SECTION (IMMERSIVE DEMO) */
.waveform-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(5, 7, 13, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 320px;
}

.waveform-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.waveform-canvas {
    width: 100%;
    height: 120px;
    z-index: 2;
}

.call-panel {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.ai-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.5);
    animation: miniPulse 2s infinite ease-in-out;
}

.call-text h5 {
    font-size: 14px;
    margin-bottom: 2px;
}

.call-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.call-active-text {
    font-style: italic;
    color: var(--color-cyan);
    font-weight: 500;
}

@keyframes miniPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

.bullets-list {
    margin: 24px 0 36px;
}

.bullets-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.bullets-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.1);
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}



/* 7. TRUST & IMPACT METRICS */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    text-align: center;
}

.metric-card h3 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(244, 219, 0, 0.25);
    background: linear-gradient(135deg, #FFFFFF, var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 8. FINAL CTA SECTION */
.final-cta {
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(7, 7, 7, 0.6);
    border: 1px solid var(--border-glass);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 219, 0, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* 9. FOOTER */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 0;
    background: rgba(5, 7, 13, 0.95);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blue);
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-col h4.brand-title {
    text-transform: lowercase;
    font-size: 18px;
}

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

.footer-links li a, .footer-info li, .footer-info li a {
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-blue);
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--color-blue);
    color: #000000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    font-size: 12px;
    color: var(--text-muted);
}

/* SCROLL REVEAL MOTION SYSTEM */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(10px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions-centered {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(200px, auto);
    }
    
    .bento-card.large {
        grid-column: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .telephony-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .diagram-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .diagram-line-wrapper {
        width: 2px;
        height: 40px;
        margin: -10px 0;
    }
    
    .diagram-line-pulse {
        width: 100%;
        height: 30%;
        background: linear-gradient(180deg, transparent, var(--color-cyan), transparent);
    }
}

@media (max-width: 768px) {
    .nav-links, .header-actions {
        display: none;
    }
    
    .footer {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-left h1 {
        font-size: 42px;
    }
    
    .hero-content-centered h1 {
        gap: 6px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .final-cta-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .final-cta-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    /* Mobile Menu Dropdowns Overrides */
    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 78px !important;
        left: 0 !important;
        width: 100% !important;
        max-height: calc(100vh - 78px) !important;
        overflow-y: auto !important;
        background: rgba(0, 0, 0, 0.98) !important;
        padding: 30px 24px !important;
        border-bottom: 1px solid var(--border-glass) !important;
        gap: 20px !important;
        z-index: 9999 !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .nav-links.mobile-active .nav-item-dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links.mobile-active .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: 100% !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 10px 0 10px 16px !important;
        display: none !important; /* Hide by default on mobile */
    }

    .nav-links.mobile-active .nav-item-dropdown.open .mega-menu {
        display: block !important; /* Show when category is clicked */
    }

    .nav-links.mobile-active .mega-menu-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .nav-links.mobile-active .mega-item {
        padding: 8px 10px !important;
        width: 100%;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        box-sizing: border-box;
    }

    .nav-links.mobile-active .mega-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    .nav-links.mobile-active .mega-text h4 {
        font-size: 13px !important;
        margin: 0 !important;
    }

    .nav-links.mobile-active .mega-text p {
        font-size: 11px !important;
        display: block !important;
        margin: 2px 0 0 0 !important;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-left h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-actions-centered {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions-centered .btn {
        width: 100%;
        text-align: center;
    }
    
    .telephony-features {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-ui-card {
        display: none;
    }
    
    .mockup-container {
        transform: none !important;
    }
}

/* ==========================================================================
   PRODUCT TABS SECTION STYLING
   ========================================================================== */
.product-tabs-container {
    margin-top: 48px;
    width: 100%;
}

.tabs-header-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tabs-header-bar {
    display: inline-flex;
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 6px;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 230, 0, 0.01);
}

.tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: #FFFFFF;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-violet) 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(244, 219, 0, 0.35);
}

.tabs-content-container {
    width: 100%;
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: tabFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.tab-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.tab-mini-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tab-main-tagline {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.tab-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tab-features-list {
    list-style: none;
    margin: 8px 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.tab-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-secondary);
}

.tab-features-list li i {
    color: var(--color-cyan);
    font-size: 16px;
}

.tab-cta-wrap {
    margin-top: 8px;
}

.tab-graphic-side {
    position: relative;
    width: 100%;
}

/* Graphics Wrappers */
.sim-graphic-box, .telephony-graphic-box, .ai-graphic-box, .crm-graphic-box {
    position: relative;
    width: 100%;
    height: 360px;
    background: rgba(5, 7, 13, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

/* 1. SIM Card Animation */
.floating-sim-card {
    width: 160px;
    height: 240px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(5, 5, 5, 0.98));
    border: 2px dashed rgba(255, 230, 0, 0.35);
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 230, 0, 0.05);
    animation: simFloat 5s infinite alternate ease-in-out;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

@keyframes simFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(2deg); }
}

.sim-chip {
    width: 48px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
    border-radius: 6px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sim-chip::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-image: 
        linear-gradient(90deg, transparent 50%, rgba(0,0,0,0.15) 50%),
        linear-gradient(0deg, transparent 50%, rgba(0,0,0,0.15) 50%);
    background-size: 8px 8px;
}

.sim-logo {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.sim-type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-cyan);
}

.glow-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: corePulse 4s infinite alternate ease-in-out;
}

@keyframes corePulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

.signal-bars {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 24px;
    z-index: 3;
}

.signal-bars .bar {
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.signal-bars .bar-1 { height: 20%; }
.signal-bars .bar-2 { height: 40%; }
.signal-bars .bar-3 { height: 60%; }
.signal-bars .bar-4 { height: 80%; }
.signal-bars .bar-5 { height: 100%; }

.signal-bars .bar.active {
    background: var(--color-cyan);
    box-shadow: 0 0 8px var(--color-cyan);
    animation: barPulse 1.5s infinite alternate ease-in-out;
}

.signal-bars .bar-1.active { animation-delay: 0.1s; }
.signal-bars .bar-2.active { animation-delay: 0.2s; }
.signal-bars .bar-3.active { animation-delay: 0.3s; }
.signal-bars .bar-4.active { animation-delay: 0.4s; }
.signal-bars .bar-5.active { animation-delay: 0.5s; }

@keyframes barPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* 2. Telephony Graphic - Premium IP Business Desk Phone */
.telephony-phone-device {
    display: flex;
    gap: 24px;
    align-items: stretch;
    width: 380px;
    height: 280px;
    position: relative;
    z-index: 10;
    transform: rotateX(10deg) rotateY(-5deg);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Brushed Gold Handset (Left Side) */
.phone-handset {
    width: 90px;
    background: linear-gradient(135deg, #F4DB00 0%, #D4AF37 40%, #B8860B 75%, #996515 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 45px;
    box-shadow: -12px 16px 28px rgba(0, 0, 0, 0.7), inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -2px -2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 0;
    z-index: 5;
    animation: handsetFloat 4s infinite ease-in-out alternate;
}

@keyframes handsetFloat {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}

.handset-earpiece, .handset-mouthpiece {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0,0,0,0.85) 0%, rgba(20,20,20,0.95) 70%, rgba(50,40,10,0.3) 100%);
    border: 2px solid rgba(184, 134, 11, 0.6);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.8);
    position: relative;
}

.handset-earpiece::after, .handset-mouthpiece::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border: 1px dashed rgba(244, 219, 0, 0.3);
    border-radius: 50%;
}

.handset-handle {
    flex: 1;
    width: 32px;
    background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
    margin: 0 auto;
}

/* Spiral Cord */
.spiral-cord {
    position: absolute;
    bottom: -20px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
}

.spiral-cord .loop {
    width: 22px;
    height: 12px;
    border: 3.5px solid #111116;
    border-top-color: #B8860B;
    border-radius: 50%;
    transform: rotate(-15deg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    display: block;
    animation: loopSway 3s infinite ease-in-out alternate;
}

.spiral-cord .loop-2 { animation-delay: 0.2s; }
.spiral-cord .loop-3 { animation-delay: 0.4s; }
.spiral-cord .loop-4 { animation-delay: 0.6s; }
.spiral-cord .loop-5 { animation-delay: 0.8s; }

@keyframes loopSway {
    0% { transform: rotate(-15deg) scaleX(1); }
    100% { transform: rotate(-8deg) scaleX(1.1); }
}

/* Phone Base (Right Side) */
.phone-base {
    flex: 1;
    background: linear-gradient(135deg, #121218 0%, #08080C 100%);
    border: 2.5px solid #D4AF37;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), inset 0 0 15px rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
    border-bottom: 5px solid #B8860B;
}

/* Screen */
.phone-screen {
    background: #050508;
    border: 1.5px solid rgba(244, 219, 0, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: inset 0 0 16px rgba(0,0,0,0.95);
}

.screen-brand {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 11px;
    color: #F4DB00;
    letter-spacing: 1px;
    text-transform: lowercase;
    text-align: center;
    text-shadow: 0 0 6px rgba(244,219,0,0.4);
}

.screen-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 8px;
}

.screen-options .opt {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.screen-options .opt i {
    font-size: 9px;
    color: #B8860B;
}

.screen-options .opt.active {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(244,219,0,0.5);
}

.screen-options .opt.active i {
    color: #F4DB00;
    filter: drop-shadow(0 0 4px #F4DB00);
}

/* Dynamic Waveform Graph */
.screen-waveform {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    justify-content: center;
    height: 24px;
    margin-top: 4px;
    border-top: 1px solid rgba(244,219,0,0.06);
    padding-top: 4px;
}

.screen-waveform .wv {
    width: 2.5px;
    background: #F4DB00;
    border-radius: 1px;
    box-shadow: 0 0 6px rgba(244,219,0,0.6);
    display: block;
    height: 10%;
    animation: waveBounce 1.2s infinite ease-in-out alternate;
}

@keyframes waveBounce {
    0% { height: 10%; }
    100% { height: 100%; }
}

.screen-waveform .wv-1  { animation-delay: 0.1s; animation-duration: 0.9s; }
.screen-waveform .wv-2  { animation-delay: 0.3s; animation-duration: 0.7s; }
.screen-waveform .wv-3  { animation-delay: 0.5s; animation-duration: 1.1s; }
.screen-waveform .wv-4  { animation-delay: 0.2s; animation-duration: 0.8s; }
.screen-waveform .wv-5  { animation-delay: 0.6s; animation-duration: 1.2s; }
.screen-waveform .wv-6  { animation-delay: 0.4s; animation-duration: 0.6s; }
.screen-waveform .wv-7  { animation-delay: 0.7s; animation-duration: 1.0s; }
.screen-waveform .wv-8  { animation-delay: 0.15s; animation-duration: 0.75s; }
.screen-waveform .wv-9  { animation-delay: 0.35s; animation-duration: 1.15s; }
.screen-waveform .wv-10 { animation-delay: 0.55s; animation-duration: 0.85s; }
.screen-waveform .wv-11 { animation-delay: 0.25s; animation-duration: 0.95s; }
.screen-waveform .wv-12 { animation-delay: 0.65s; animation-duration: 1.05s; }
.screen-waveform .wv-13 { animation-delay: 0.45s; animation-duration: 0.65s; }
.screen-waveform .wv-14 { animation-delay: 0.75s; animation-duration: 1.25s; }
.screen-waveform .wv-15 { animation-delay: 0.05s; animation-duration: 0.8s; }

/* Gold Navigation D-Pad */
.navigation-dpad {
    width: 38px;
    height: 38px;
    background: radial-gradient(circle, #F4DB00 0%, #D4AF37 40%, #B8860B 80%, #996515 100%);
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 50%;
    margin: 4px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    cursor: pointer;
    position: relative;
}

.navigation-dpad::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
}

.navigation-dpad .dpad-inner {
    width: 12px;
    height: 12px;
    background: #111116;
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.2);
}

/* Keypad Grid */
.phone-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.key-btn {
    background: linear-gradient(180deg, #1c1c24 0%, #111115 100%);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 4px;
    padding: 3px 0;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: all 0.15s ease;
}

.key-btn:hover {
    border-color: #F4DB00;
    background: #252530;
    transform: scale(1.03);
    box-shadow: 0 0 5px rgba(244,219,0,0.2);
}

.key-btn span {
    font-size: 10px;
    font-weight: 700;
    color: #F4DB00;
    line-height: 1;
}

.key-btn small {
    font-size: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 1px;
    line-height: 1;
}

/* 3. AI Agent Graphic */
.ai-avatar-core {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    color: #000000;
    box-shadow: 0 0 35px rgba(255, 230, 0, 0.3);
    z-index: 3;
    animation: avatarBounce 4s infinite alternate ease-in-out;
}

@keyframes avatarBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.pulse-circle {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 230, 0, 0.3);
    animation: avatarPulse 4s infinite linear;
}

.pulse-circle.pulse-2 {
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid rgba(255, 230, 0, 0.12);
    animation-duration: 8s;
    animation-direction: reverse;
}

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

.ai-chat-bubble {
    position: absolute;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 230, 0, 0.22);
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 4;
}

.ai-chat-bubble.bubble-left {
    top: 60px;
    left: 8%;
    border-bottom-left-radius: 2px;
    animation: bubbleSlideInLeft 4s infinite;
}

.ai-chat-bubble.bubble-right {
    bottom: 60px;
    right: 8%;
    border-bottom-right-radius: 2px;
    border-color: rgba(255, 230, 0, 0.45);
    color: var(--color-cyan);
    animation: bubbleSlideInRight 4s infinite;
}

.bubble-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 10px;
}

.bubble-dots span {
    width: 5px;
    height: 5px;
    background: var(--color-cyan);
    border-radius: 50%;
    animation: dotBlink 1.4s infinite both;
}

.bubble-dots span:nth-child(2) { animation-delay: 0.2s; }
.bubble-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBlink {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

@keyframes bubbleSlideInLeft {
    0%, 100% { transform: translateX(-10px); opacity: 0; }
    10%, 80% { transform: translateX(0); opacity: 1; }
}

@keyframes bubbleSlideInRight {
    0%, 20%, 100% { transform: translateX(10px); opacity: 0; }
    30%, 90% { transform: translateX(0); opacity: 1; }
}

/* 4. CRM Pipeline Graphic */
.crm-graphic-box {
    position: relative;
    width: 100%;
    height: 360px;
    background: rgba(5, 7, 13, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px;
    overflow: hidden;
}

.crm-pipeline-card {
    width: 90%;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    z-index: 2;
}

.crm-pipeline-card:hover {
    border-color: rgba(255, 230, 0, 0.25);
    transform: scale(1.02);
}

.crm-pipeline-card.card-1 {
    animation: crmCard1 6s infinite alternate ease-in-out;
}

.crm-pipeline-card.card-2 {
    animation: crmCard2 6s infinite alternate ease-in-out;
}

.crm-pipeline-card.card-3 {
    animation: crmCard3 6s infinite alternate ease-in-out;
}

@keyframes crmCard1 {
    0% { transform: translateY(0); opacity: 0.7; }
    100% { transform: translateY(-5px); opacity: 1; }
}

@keyframes crmCard2 {
    0% { transform: translateY(0); opacity: 0.9; }
    100% { transform: translateY(-8px); opacity: 1; }
}

@keyframes crmCard3 {
    0% { transform: translateY(0); opacity: 0.6; }
    100% { transform: translateY(-4px); opacity: 1; }
}

.crm-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.badge {
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.badge-lead {
    background: rgba(0, 119, 255, 0.1);
    color: #0077ff;
    border: 1px solid rgba(0, 119, 255, 0.2);
}

.badge-deal {
    background: rgba(255, 158, 0, 0.1);
    color: var(--color-violet);
    border: 1px solid rgba(255, 158, 0, 0.2);
}

.badge-meeting {
    background: rgba(122, 34, 255, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(122, 34, 255, 0.2);
}

.card-time, .card-price {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 600;
}

.crm-pipeline-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.crm-pipeline-card p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive Tabs overrides */
@media (max-width: 1024px) {
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px;
    }
    
    .tab-main-tagline {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .tabs-header-wrapper {
        width: 100%;
        margin-bottom: 24px;
        display: flex;
        justify-content: center;
    }
    
    .tabs-header-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .tab-btn {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-glass);
        border-radius: 8px;
        padding: 12px 10px;
        font-size: 13px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .tab-btn.active {
        background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-violet) 100%);
        color: #000000 !important;
        border-color: transparent;
        box-shadow: 0 5px 15px rgba(244, 219, 0, 0.35);
    }
    
    .tab-features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .sim-graphic-box, .telephony-graphic-box, .ai-graphic-box, .crm-graphic-box {
        height: 280px;
    }

    .telephony-graphic-box {
        transform: translateZ(0);
        -webkit-mask-image: -webkit-radial-gradient(white, black);
    }
    
    .telephony-phone-device {
        transform: rotateX(10deg) rotateY(-5deg) scale(0.62);
        transform-origin: center center;
    }
    
    .tab-grid {
        padding: 24px;
        gap: 24px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .tab-text-side {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .tab-main-tagline {
        font-size: 24px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .tab-description {
        font-size: 14px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .tabs-header-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        background: transparent;
        border: none;
        border-radius: 0;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
        border-radius: 8px;
        padding: 10px 6px;
        font-size: 12px;
    }
    
    .telephony-phone-device {
        transform: rotateX(10deg) rotateY(-5deg) scale(0.52);
    }
}

@media (max-width: 360px) {
    .telephony-phone-device {
        transform: rotateX(10deg) rotateY(-5deg) scale(0.45);
    }
}

/* Custom Line Breaks */
.mobile-only-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only-break {
        display: inline;
    }
}

/* =============================================
   GLOBAL SMALL MOBILE (≤ 480px) — ALL PAGES
   ============================================= */
@media (max-width: 480px) {
    /* Navigation */
    .nav-logo .brand-title { font-size: 1.1rem; }
    .hamburger { display: flex; }

    /* Hero sections (global) */
    .hero-section, .section-hero, .hero-v2 {
        padding-top: 5rem;
        padding-bottom: 2.5rem;
    }
    h1 { font-size: 1.9rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.6rem !important; }
    h3 { font-size: 1.3rem !important; }

    /* Buttons stacking */
    .hero-actions-centered,
    .hero-actions,
    .final-cta-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-actions-centered .btn,
    .hero-actions .btn,
    .final-cta-actions .btn,
    .cta-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Cards & grids */
    .final-cta-content { padding: 1.5rem 1rem; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .container { padding-left: 1rem; padding-right: 1rem; }

    /* Section headings */
    .section-heading, .section-subtitle { text-align: center; }

    /* Tab grid on homepage */
    .tab-grid { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 1rem; }
    .tab-text-side { text-align: center; }
    .tab-features-list { text-align: left; }
    .tab-cta-wrap { display: flex; justify-content: center; }
    .tab-main-tagline { font-size: 1.5rem; }

    /* Pricing section */
    .pricing-tabs-wrap { overflow-x: auto; padding-bottom: 0.5rem; }

    /* Testimonials */
    .testimonials-track { gap: 1rem; }
    .testimonial-card { padding: 1.5rem; }

    /* Floating graphics */
    .sim-graphic-box, .ai-graphic-box, .crm-graphic-box { transform: scale(0.85); }
}

@media (max-width: 375px) {
    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.45rem !important; }
    .tab-main-tagline { font-size: 1.3rem; }
    .nav-logo .brand-title { font-size: 1rem; }
}
