/* ============================================
UNISCADE - Premium Landing Page Styles
Premium indigo & cyan palette
============================================ */

/* === CSS Variables === */
:root {
--primary: #6366f1;
--primary-light: #818cf8;
--primary-dark: #4f46e5;
--accent: #06b6d4;
--accent-light: #22d3ee;
--dark-bg: #0a0a14;
--dark-bg-light: #0e0e1a;
--dark-bg-lighter: #131320;
--card-bg: #131320;
--text-primary: #f0eeff;
--text-secondary: #9d9cb5;
--text-muted: #5e5d75;
--border: rgba(224, 220, 255, 0.08);
--border-light: rgba(224, 220, 255, 0.14);
--success: #34d399;
--warning: #6366f1;
--danger: #f43f5e;
--info: #06b6d4;
--radius: 12px;
--radius-lg: 20px;
--shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
--shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0;
    min-height: 46px;
}

.btn::before {
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--text-primary), #d8c9af);
    color: #12100c;
    box-shadow: 0 16px 34px rgba(99, 102, 241, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(99, 102, 241, 0.26);
}

.btn-outline {
    background: rgba(224, 220, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: rgba(6, 182, 212, 0.45);
    background: rgba(6, 182, 212, 0.08);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-video {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
    padding-right: 24px;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
}

.btn-secondary {
    background: var(--dark-bg-lighter);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover { background: var(--border-light); }

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(11, 10, 8, 0.68);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 220, 255, 0.08);
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(11, 10, 8, 0.88);
    border-bottom-color: rgba(224, 220, 255, 0.14);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 0;
}

.logo-icon { flex-shrink: 0; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(224, 220, 255, 0.68);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(224, 220, 255, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar.scrolled {
    background: rgba(15, 13, 30, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    border-bottom: 1px solid rgba(224, 220, 255, 0.08);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: white;
}

.logo-icon { flex-shrink: 0; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-links a:hover { color: white; background: rgba(255,255,255,0.05); }

.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover { background: rgba(99, 102, 241, 0.15); color: white; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.login-btn {
    color: var(--text-secondary);
    font-size: 16px;
    transition: color 0.2s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.login-btn:hover { color: white; background: rgba(255,255,255,0.05); }

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
	background: linear-gradient(180deg, #0a0a14 0%, #0e0e1a 42%, #0a0a14 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

/* Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.orb-1 {
    width: 600px; height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(99, 102, 241, 0.04));
    top: -200px; right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(6, 182, 212, 0.02));
    bottom: -100px; left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 500px; height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(6, 182, 212, 0.03));
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: pulse 6s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-light), var(--info));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.05; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.08; }
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    position: relative;
    z-index: 2;
    flex: 1;
    align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #12100c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(99, 102, 241, 0.5); }
    to { box-shadow: 0 0 20px rgba(99, 102, 241, 0.8); }
}

.eyebrow-text {
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 450px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.badge i { color: var(--success); }

/* Hero Right - Mockup Stack */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Gold accent button */
.btn-gold {
    position: relative;
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.btn-gold:hover::after {
    opacity: 0.4;
}

.btn-gold:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

/* Mockup Stack Container */
.hero-mockup-stack {
    position: relative;
    width: 480px;
    height: 400px;
}

/* Laptop Frame */
.mockup-laptop-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
	background: #131320;
	border: 1px solid rgba(224, 220, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.06);
    z-index: 1;
    animation: laptopFloat 6s ease-in-out infinite;
}

@keyframes laptopFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.laptop-top-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
	background: #0a0a14;
	border-bottom: 1px solid rgba(224, 220, 255, 0.06);
}

.laptop-dots {
    display: flex;
    gap: 6px;
}

.laptop-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(224, 220, 255, 0.1);
}

.laptop-dots span:nth-child(1) { background: #ff6b4a; }
.laptop-dots span:nth-child(2) { background: #6366f1; }
.laptop-dots span:nth-child(3) { background: #34d399; }

.laptop-url {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    flex: 1;
    text-align: center;
}

.laptop-screen-content {
    padding: 20px;
}

/* Invoice Preview Inside Laptop */
.invoice-preview {
    background: white;
    border-radius: 10px;
    padding: 20px;
	color: #0a0a14;
}

.inv-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.inv-logo-mark {
    width: 28px;
    height: 28px;
}

.inv-badge-paid {
    font-size: 10px;
    font-weight: 700;
    color: #34d399;
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.inv-badge-paid i { font-size: 6px; }

.inv-preview-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.inv-preview-num {
    font-size: 11px;
    color: #6b7280;
    display: block;
    margin-bottom: 14px;
}

.inv-preview-table {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    margin-bottom: 10px;
}

.inv-pt-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 5px 0;
    color: #374151;
}

.inv-pt-row span:last-child { font-weight: 600; }

.inv-preview-total {
    text-align: right;
    font-size: 13px;
    font-weight: 700;
	color: #0a0a14;
    border-top: 1px solid #e5e7eb;
    padding-top: 8px;
}

.inv-preview-total strong { color: #6366f1; }

/* Phone Frame */
.mockup-phone-frame {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 150px;
    background: #0e0e1a;
    border: 2px solid rgba(224, 220, 255, 0.1);
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: phoneFloat 5s ease-in-out infinite 1s;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.phone-notch {
    width: 50px;
    height: 4px;
    background: rgba(224, 220, 255, 0.1);
    border-radius: 2px;
    margin: 4px auto 8px;
}

.phone-screen-content {
    background: #0a0a14;
    border-radius: 14px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-app-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.phone-app-header i { color: var(--primary-light); font-size: 12px; }

.phone-calendar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 220, 255, 0.06);
    border-radius: 8px;
    padding: 8px;
}

.pcal-month {
    font-size: 9px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    text-align: center;
}

.pcal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
    font-size: 7px;
    color: var(--text-muted);
}

.pcal-grid span:first-child { font-weight: 600; color: var(--text-secondary); }

.pcal-active {
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-weight: 700;
}

.phone-slot-card {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 220, 255, 0.06);
    border-radius: 8px;
    padding: 6px 8px;
}

.slot-time {
    font-size: 8px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(99, 102, 241, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
    white-space: nowrap;
}

.slot-info {
    flex: 1;
    min-width: 0;
}

.slot-info strong {
    display: block;
    font-size: 8px;
    color: white;
    font-weight: 600;
}

.slot-info span {
    font-size: 7px;
    color: var(--text-muted);
}

.slot-status {
    font-size: 7px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
}

.slot-status.confirmed { color: var(--success); background: rgba(34, 197, 94, 0.1); }
.slot-status.pending { color: var(--accent); background: rgba(99, 102, 241, 0.1); }

/* Chat Widget */
.mockup-chat-widget {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 200px;
    background: #0e0e1a;
    border: 1px solid rgba(224, 220, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
    animation: chatFloat 5s ease-in-out infinite 2s;
}

@keyframes chatFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.chat-widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--primary);
    border-bottom: 1px solid rgba(224, 220, 255, 0.1);
}

.chat-widget-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white;
}

.chat-widget-info strong {
    display: block;
    font-size: 10px;
    color: white;
    font-weight: 600;
}

.chat-online {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-dot {
    width: 5px;
    height: 5px;
    background: var(--success);
    border-radius: 50%;
}

.chat-widget-messages {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 80px;
}

.chat-msg-bot, .chat-msg-user {
    font-size: 9px;
    line-height: 1.4;
    padding: 6px 8px;
    border-radius: 8px;
    max-width: 85%;
}

.chat-msg-bot {
    background: rgba(224, 220, 255, 0.06);
    color: white;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.chat-msg-user {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.chat-widget-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-top: 1px solid rgba(224, 220, 255, 0.06);
}

.chat-widget-input span {
    font-size: 9px;
    color: var(--text-muted);
}

.chat-send-btn {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: white;
}

/* Hero Marquee */
.hero-marquee { 
    position: relative;
    z-index: 2;
    padding: 20px 0;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    margin-top: auto;
}

.marquee-track {
    display: flex;
    gap: 80px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.marquee-track span i { color: var(--success); }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Shared Section Styles === */
.section-label {
    display: block;
    text-align: center;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === Trust Section (Premium Redesign) === */
.trust-section {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
              var(--dark-bg-light);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Stats Bar */
.trust-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 60px;
  padding: 20px 40px;
  margin-bottom: 56px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}

.trust-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}

.trust-stat-star {
  color: var(--accent);
  font-size: 18px;
}

.trust-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  flex-shrink: 0;
}

/* Main Heading */
.trust-main-heading {
  text-align: center;
  margin-bottom: 48px;
}

.trust-main-heading .trust-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.trust-main-heading .trust-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.trust-main-heading .trust-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Infinite Logo Marquee */
.trust-marquee-wrap {
  margin-bottom: 56px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.trust-marquee {
  overflow: hidden;
  width: 100%;
}

.trust-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: trustMarqueeScroll 35s linear infinite;
}

.trust-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes trustMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 14px;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.trust-marquee-item:hover {
  background: rgba(224, 220, 255, 0.06);
  border-color: rgba(224, 220, 255, 0.12);
  transform: translateY(-2px);
}

.tmi-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(224, 220, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--tmi-c, var(--primary-light));
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trust-marquee-item:hover .tmi-icon {
  transform: scale(1.1) rotate(5deg);
}

.trust-marquee-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.trust-marquee-item:hover span {
  color: white;
}

/* Featured Client Cards */
.trust-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.trust-featured-card {
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.trust-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-featured-card:hover::before {
  opacity: 1;
}

.trust-featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(99, 102, 241, 0.06);
}

.tfc-quote {
  font-size: 20px;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
}

.tfc-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.tfc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 220, 255, 0.06);
}

.tfc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tfc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tfc-info strong {
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.tfc-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.tfc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
  border: 1px solid rgba(34, 197, 94, 0.12);
}

/* Trust CTA */
.trust-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.trust-cta p {
  font-size: 16px;
  color: var(--text-secondary);
}

.trust-cta strong {
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-featured { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .trust-stats-bar { flex-wrap: wrap; gap: 16px; border-radius: 20px; padding: 20px 24px; }
  .trust-stat-divider { display: none; }
  .trust-stat-item { padding: 8px 16px; }
}

@media (max-width: 640px) {
  .trust-main-heading .trust-title { font-size: 30px; }
  .trust-stats-bar { padding: 16px; }
  .trust-stat-num { font-size: 22px; }
  .trust-featured-card { padding: 20px; }
}

/* Hide Roadmap Section */
.roadmap-section { display: none !important; }

/* === Stats Section (Premium Bento Redesign) === */
.stats-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(13, 165, 233, 0.03) 0%, transparent 50%),
              var(--dark-bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.stats-heading {
  text-align: center;
  margin-bottom: 56px;
}

.stats-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 12px;
}

/* Bento Grid Layout */
.stats-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.bento-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 220, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.bento-glow {
  position: absolute;
  top: -60px; left: -60px; right: -60px; bottom: -60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover .bento-glow { opacity: 1; }

/* Featured Card (Large - Left) */
.bento-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 320px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(99, 102, 241, 0.12);
}

.bento-ring-wrap {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 8px;
}

.bento-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bento-ring-progress {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-ring-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: var(--primary-light);
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(99, 102, 241, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  margin-top: 4px;
}

/* Tall Card (Middle Top) */
.bento-tall {
  grid-column: 2;
  grid-row: 1;
  min-height: 180px;
}

.bento-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bento-icon-sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon-sm { transform: scale(1.08) rotate(3deg); }

.bento-mini-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.bento-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-sparkline {
  flex: 1;
  min-height: 40px;
  margin-top: auto;
}

.bento-sparkline svg {
  width: 100%;
  height: 100%;
}

/* Wide Card (Bottom Middle + Right) */
.bento-wide {
  grid-column: 2 / 4;
  grid-row: 2;
}

.bento-wide-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.bento-wide-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.bento-wide-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-satisfaction-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-sat-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.bento-sat-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-sat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Small Card (Bottom Right) */
.bento-small {
  grid-column: 3;
  grid-row: 1;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(255, 255, 255, 0.02));
  border-color: rgba(99, 102, 241, 0.1);
}

.bento-pulse-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  margin-top: auto;
}

.bento-pulse-dot span {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Shared Bento Typography */
.bento-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}

.bento-num-slash {
  font-size: 36px;
  opacity: 0.5;
}

.bento-featured .bento-number { font-size: 56px; }

.bento-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-top: 4px;
}

.bento-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.bento-content { position: relative; z-index: 1; }

/* Responsive Bento */
@media (max-width: 900px) {
  .stats-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-featured {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: auto;
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .bento-wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .bento-tall, .bento-small {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .stats-bento { grid-template-columns: 1fr; }
  .bento-featured { grid-column: 1; flex-direction: column; text-align: center; }
  .bento-wide { grid-column: 1; }
  .bento-wide-inner { flex-direction: column; gap: 24px; }
  .bento-number { font-size: 36px; }
  .bento-featured .bento-number { font-size: 42px; }
  .stats-title { font-size: 30px; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(224, 220, 255, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-glow-1 { background: rgba(99, 102, 241, 0.2); }
.stat-glow-2 { background: rgba(13, 165, 233, 0.2); }
.stat-glow-3 { background: rgba(236, 72, 153, 0.2); }
.stat-glow-4 { background: rgba(34, 197, 94, 0.2); }

.stat-item:hover { transform: translateY(-6px); }
.stat-item:hover .stat-glow { opacity: 1; }

.stat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-light);
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #b8a4e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.stat-item:nth-child(1) .stat-icon-wrap { background: rgba(99, 102, 241, 0.08); border-color: rgba(99, 102, 241, 0.15); 	color: #818cf8; }
.stat-item:nth-child(2) .stat-icon-wrap { background: rgba(13, 165, 233, 0.08); border-color: rgba(13, 165, 233, 0.15); color: #38bdf8; }
.stat-item:nth-child(3) .stat-icon-wrap { background: rgba(236, 72, 153, 0.08); border-color: rgba(236, 72, 153, 0.15); color: #f472b6; }
.stat-item:nth-child(4) .stat-icon-wrap { background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.15); color: #4ade80; }

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 32px 20px; }
  .stat-number { font-size: 36px; }
}
/* === How It Works === */
.how-it-works {
  padding: 100px 0;
  background: var(--dark-bg-light);
  border-bottom: 1px solid var(--border);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.12);
}

.step-bg-number {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-light);
    opacity: 0.06;
    user-select: none;
    font-family: var(--font-main);
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-light);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    transition: var(--transition);
}

.step-card:hover .step-icon-wrap {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
    font-size: 14px; 
    line-height: 1.6; 
}

/* === Testimonials Section === */
.testimonials-section { padding: 100px 0; background: var(--dark-bg-light); border-bottom: 1px solid var(--border); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 32px;
  box-shadow: none;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.testimonial-card:hover { border-color: var(--primary); box-shadow: none; }

.testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 14px; }
.testimonial-text { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; color: white; }
.author-info span { font-size: 13px; color: var(--text-muted); }

/* === Integration Section === */
.integration-section { padding: 100px 0; background: var(--dark-bg); border-bottom: 1px solid var(--border); }

.integration-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.integration-left h2 { font-size: 36px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; }
.integration-left > p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }

.integration-list { list-style: none; margin-bottom: 32px; }
.integration-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--text-secondary); font-weight: 500; }
.integration-list li i { color: var(--success); font-size: 16px; }

.integration-right { display: flex; justify-content: center; align-items: center; }

.integration-orbit {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center { z-index: 2; }

.orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed var(--border-light); }

.orbit-ring.ring-1 { width: 280px; height: 280px; animation: orbitRotate 20s linear infinite; }
.orbit-ring.ring-2 { width: 380px; height: 380px; animation: orbitRotate 30s linear infinite reverse; }

@keyframes orbitRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.orbit-icon:nth-child(1) { top: -24px; left: 50%; transform: translateX(-50%); animation: counterRotate 20s linear infinite; }
.orbit-icon:nth-child(2) { top: 50%; right: -24px; transform: translateY(-50%); animation: counterRotate 20s linear infinite; }
.orbit-icon:nth-child(3) { bottom: -24px; left: 50%; transform: translateX(-50%); animation: counterRotate 20s linear infinite; }
.orbit-icon:nth-child(4) { top: 50%; left: -24px; transform: translateY(-50%); animation: counterRotate 20s linear infinite; }

/* === Pricing Section === */
.pricing-section { padding: 120px 0; background: var(--dark-bg); border-bottom: 1px solid var(--border); }

.pricing-tabs {
    display: flex;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 6px;
    border-radius: 16px;
    width: max-content;
    margin: 0 auto 48px;
    gap: 4px;
}

.pricing-tab-btn {
    border: none;
    background: transparent;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-tab-btn:hover { color: white; }
.pricing-tab-btn.active { background: rgba(112,70,224,0.12); color: white; border: 1px solid rgba(112,70,224,0.2); }

.product-pricing-wrapper { width: 100%; }

.product-pricing-group { display: none; gap: 24px; width: 100%; }
.product-pricing-group.active { display: flex; }

.pricing-card {
    background: rgba(255,255,255,0.015);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.025); }

.pricing-card.featured { border-color: rgba(112,70,224,0.25); background: rgba(112,70,224,0.04); }
.pricing-card.featured:hover { border-color: rgba(112,70,224,0.35); box-shadow: 0 20px 40px rgba(112,70,224,0.08); }

.pricing-badge { position: absolute; top: 16px; right: 16px; background: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 8px; }

.pricing-tagline { font-size: 12px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }

.pricing-card h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 4px; }

.pricing-price { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 4px; }
.pricing-price .amount { font-size: 44px; font-weight: 800; color: white; line-height: 1; letter-spacing: -0.02em; }
.pricing-price .period { font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 500; }
.pricing-desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; line-height: 1.6; }

.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.pricing-features li { font-size: 14px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: var(--success); font-size: 12px; }

.pricing-card .btn { width: 100%; margin-top: auto; }

/* Bundle Card */
.bundle-card-container { margin-top: 48px; display: flex; justify-content: center; }
.bundle-card { max-width: 800px; display: flex; flex-direction: row !important; align-items: center; gap: 40px; text-align: left; padding: 40px 48px; border-color: rgba(112,70,224,0.3) !important; }
.bundle-card:hover { border-color: rgba(112,70,224,0.4) !important; box-shadow: 0 20px 40px rgba(112,70,224,0.1) !important; }
.bundle-left { flex: 1; }
.bundle-right { min-width: 200px; text-align: center; }
.bundle-card h3 { font-size: 24px; margin-bottom: 8px; }
.bundle-card .pricing-price { margin: 0 0 20px; justify-content: center; }
.bundle-card .pricing-price .amount { font-size: 56px; }

/* Coming Soon Card */
.coming-soon-pricing-card { background: rgba(255,255,255,0.015); border-radius: 20px; border: 1px dashed rgba(255,255,255,0.08); max-width: 600px; margin: 0 auto; padding: 60px 40px; text-align: center; }
.cs-icon { width: 64px; height: 64px; background: rgba(112,70,224,0.06); color: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 24px; border: 1px solid rgba(112,70,224,0.12); }
.coming-soon-pricing-card h3 { font-size: 24px; font-weight: 700; color: white; margin-bottom: 12px; }
.coming-soon-pricing-card p { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 24px; line-height: 1.7; }

.waitlist-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #4ade80; background: rgba(34,197,94,0.08); padding: 6px 14px; border-radius: 30px; margin-bottom: 30px; border: 1px solid rgba(34,197,94,0.12); }

/* Guarantee */
.guarantee-badge-container { max-width: 800px; margin: 60px auto 0; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: 28px 32px; border-radius: 16px; }
.guarantee-badge { display: flex; gap: 20px; align-items: center; }
.badge-icon { font-size: 32px; color: var(--primary-light); }
.badge-content h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.badge-content p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

@media (max-width: 1024px) {
    .product-pricing-group.active { flex-direction: column; max-width: 480px; margin-left: auto; margin-right: auto; }
    .bundle-card { flex-direction: column !important; text-align: center; }
    .bundle-card .pricing-features { text-align: left; }
}
@media (max-width: 640px) {
    .pricing-tabs { width: 100%; flex-direction: column; border-radius: 16px; }
    .coming-soon-pricing-card { padding: 40px 24px; }
    .guarantee-badge { flex-direction: column; text-align: center; }
    .trust-logos { grid-template-columns: repeat(2, 1fr); }
    .trust-title { font-size: 28px; }
}

/* === FAQ Section === */
.faq-section { padding: 120px 0; background: var(--dark-bg); border-bottom: 1px solid var(--border); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    border: 1px solid rgba(224, 220, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.015);
}

.faq-item:hover { border-color: rgba(224, 220, 255, 0.1); background: rgba(255, 255, 255, 0.022); }

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: color 0.2s;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary-light);
    transition: var(--transition);
}

.faq-item:hover .faq-icon { background: rgba(99, 102, 241, 0.12); border-color: rgba(99, 102, 241, 0.25); }

.faq-q-text { flex: 1; font-size: 15px; }

.faq-question .fa-chevron-down {
    transition: transform 0.3s, color 0.2s;
    color: var(--text-muted);
    font-size: 14px;
    margin-left: 8px;
}

.faq-question:hover .faq-q-text { color: var(--primary-light); }

.faq-item.active .faq-question i.fa-chevron-down { transform: rotate(180deg); color: var(--primary-light); }

.faq-answer { max-height: 0; overflow: hidden; transition: none; }
.faq-item.active .faq-answer { max-height: none; padding: 0 28px 24px 76px; }

.faq-answer p { color: rgba(255,255,255,0.45); line-height: 1.8; font-size: 14px; }

/* === CTA Section === */
/* === New CTA Section === */
.cta-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.cta-card-new {
    position: relative;
    border-radius: 28px;
    padding: 64px;
    overflow: hidden;
    border: 1px solid rgba(224, 220, 255, 0.06);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(255, 255, 255, 0.02));
}

.cta-mesh {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.cta-heading {
    font-size: 42px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.cta-trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-trust-avatars {
    display: flex;
}

.cta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
    border: 2px solid var(--dark-bg);
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-avatar:first-child { margin-left: 0; }

.cta-trust-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-trust-text strong { color: white; }

/* CTA Right Visual */
.cta-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 320px;
}

.cta-dashboard-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 200px;
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(224, 220, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.cta-db-bar {
    height: 10px;
    background: rgba(224, 220, 255, 0.06);
    border-radius: 5px;
    width: 80%;
}

.cta-db-bar.short { width: 50%; }
.cta-db-bar.medium { width: 65%; }

.cta-db-chart {
    flex: 1;
    margin-top: auto;
}

.cta-db-chart svg {
    width: 100%;
    height: 100%;
}

/* Floating Cards */
.cta-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    z-index: 2;
    animation: ctaFloat 5s ease-in-out infinite;
}

.cta-card-1 {
    top: 10px;
    right: 10px;
    animation-delay: 0s;
}

.cta-card-2 {
    bottom: 30px;
    left: 0;
    animation-delay: 1.5s;
}

.cta-card-3 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.cta-card-3 {
    animation: ctaFloatSide 5s ease-in-out infinite 3s;
}

@keyframes ctaFloatSide {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-6px); }
}

.cfc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.cfc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cfc-info span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.cfc-info strong {
    font-size: 16px;
    color: white;
    font-weight: 700;
}

.cfc-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: auto;
}

.cfc-badge.up {
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
}

/* Responsive CTA */
@media (max-width: 1024px) {
    .cta-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .cta-desc { margin: 0 auto 32px; }
    .cta-buttons { justify-content: center; }
    .cta-trust-row { justify-content: center; }
    .cta-visual { max-width: 350px; height: 280px; }
}

@media (max-width: 640px) {
    .cta-card-new { padding: 32px 20px; }
    .cta-heading { font-size: 30px; }
    .cta-visual { max-width: 300px; height: 240px; }
    .cta-float-card { padding: 10px 14px; }
    .cfc-info strong { font-size: 14px; }
}

/* === Footer === */
.main-footer { background: #050810; color: white; padding: 80px 0 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); }

.footer-wave { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }

.footer-content { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 60px; }

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: white; }

.footer-brand > p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

.social-links { display: flex; gap: 12px; margin-top: 8px; }

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid var(--border);
    font-size: 14px;
}

.social-links a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; color: white; text-transform: uppercase; letter-spacing: 0.5px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a { color: var(--text-secondary); font-size: 14px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: white; transform: translateX(4px); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-credits { font-size: 12px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
    .hero-left { align-items: center; }
    .hero-badges { justify-content: center; }
    .hero-title { font-size: 48px; }
    .hero-description { margin: 0 auto; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .integration-content { grid-template-columns: 1fr; }
    .integration-right { order: -1; }
    .steps-container { flex-direction: column; gap: 40px; }
    .db-bottom { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 640px) {
    .navbar { padding: 16px; flex-wrap: wrap; gap: 12px; }
    .nav-links { order: 3; width: 100%; justify-content: center; display: none; }
    .hero-title { font-size: 36px; }
    .db-stats { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .hero-marquee { display: none; }
}

/* === Instant Scroll Animations === */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
}

[data-anim="fade-up"] {
  transform: translateY(30px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

[data-anim="fade-down"] {
  transform: translateY(-25px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

[data-anim="fade-left"] {
  transform: translateX(40px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

[data-anim="fade-right"] {
  transform: translateX(-40px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

[data-anim="fade-in"] {
  transform: scale(0.95);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

[data-anim="zoom-in"] {
  transform: scale(0.9);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

[data-anim].on {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.section-label, .section-title, .section-subtitle,
.product-card, .pricing-card, .step-card,
.testimonial-card, .security-card,
.bento-card,
.bundle-card-container, .guarantee-badge-container,
.roadmap-timeline,
.hero-left > * {
  will-change: transform;
}

[data-anim] {
  will-change: opacity, transform;
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

/* Product Hero */
.product-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a14 0%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.product-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.product-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.product-hero .orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.product-hero .orb-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.product-badge i { font-size: 16px; }

.product-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
}

.product-hero-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}

.product-hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.product-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.ph-stat { text-align: left; }

.ph-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ph-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; }

.product-hero-right { display: flex; justify-content: center; align-items: center; }

.product-hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
}

/* Visual Cards */
.visual-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.visual-card.main-card { width: 100%; }

.vc-header {
    font-weight: 600;
    font-size: 14px;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.vc-content { display: flex; flex-direction: column; gap: 16px; }

.vc-stats-row { display: flex; gap: 16px; }

.vc-stat { flex: 1; text-align: center; }
.vc-stat .vc-label { display: block; font-size: 10px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.vc-stat .vc-value { display: block; font-size: 20px; font-weight: 700; color: white; }

.vc-chart { height: 100px; margin-top: 8px; }
.vc-chart svg { width: 100%; height: 100%; }

/* Invoice visual */
.vc-invoice-items { display: flex; flex-direction: column; gap: 10px; }
.vc-item { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.vc-item span:first-child { color: var(--text-secondary); }
.vc-item span:last-child { color: white; font-weight: 600; }

.vc-total { display: flex; justify-content: space-between; padding-top: 12px; font-size: 15px; font-weight: 600; color: white; }
.vc-total strong { font-size: 18px; }

/* Chat visual */
.chat-visual .chat-card { height: 300px; overflow: hidden; }
.chat-preview { display: flex; flex-direction: column; gap: 8px; height: 100%; }
.chat-msg { padding: 10px 14px; border-radius: 12px; font-size: 13px; max-width: 85%; line-height: 1.4; }
.chat-msg.bot { background: rgba(255, 255, 255, 0.05); color: white; border-bottom-left-radius: 2px; align-self: flex-start; }
.chat-msg.user { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border-bottom-right-radius: 2px; align-self: flex-end; }
.chat-msg.typing { display: flex; gap: 4px; padding: 12px 14px; }
.chat-msg.typing span { width: 6px; height: 6px; background: var(--text-secondary); border-radius: 50%; animation: typing 0.6s ease-in-out infinite; }
.chat-msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Float cards */
.float-card { 
    position: absolute;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 4s ease-in-out infinite;
}

.float-card-2 { 
    position: absolute;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 4s ease-in-out infinite 1s;
}

.float-card { bottom: -20px; right: -20px; }
.float-card-2 { top: -20px; left: -20px; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.vc-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: white; flex-shrink: 0; }
.vc-text { font-size: 13px; color: white; font-weight: 600; white-space: nowrap; }

/* Product Features */
.product-features { padding: 100px 0; background: #ffffff; }

.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

.pf-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eae8f0;
    transition: var(--transition);
}

.pf-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); border-color: var(--primary); }

.pf-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; margin-bottom: 16px; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); }

.pf-card h3 { font-size: 18px; font-weight: 700; color: var(--dark-bg); margin-bottom: 8px; }
.pf-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* Product How */
.product-how { padding: 100px 0; background: #f8f7fa; }

.phw-steps { display: flex; gap: 32px; margin-top: 48px; }

.phw-step { flex: 1; text-align: center; padding: 32px; background: white; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); border: 1px solid #eae8f0; transition: var(--transition); }

.phw-step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); border-color: var(--primary); }

.phw-num { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 16px; }

.phw-step h3 { font-size: 18px; font-weight: 700; color: var(--dark-bg); margin-bottom: 8px; }
.phw-step p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* Product Testimonial */
.product-testimonial { padding: 80px 0; background: #ffffff; }

.pt-card { max-width: 800px; margin: 0 auto; background: #f8f7fa; border-radius: 20px; padding: 40px; text-align: center; border: 1px solid #eae8f0; }

.pt-stars { color: var(--accent); margin-bottom: 20px; font-size: 14px; }

.pt-card blockquote { font-size: 18px; color: var(--dark-bg); line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.pt-author { display: flex; align-items: center; justify-content: center; gap: 12px; }

.pt-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }

.pt-info { text-align: left; }
.pt-info strong { display: block; font-size: 15px; color: var(--dark-bg); }
.pt-info span { font-size: 13px; color: var(--text-secondary); }

/* Product CTA */
.product-cta { padding: 100px 0; background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-light)); position: relative; overflow: hidden; }

.product-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }

.pc-content { text-align: center; max-width: 600px; margin: 0 auto; }

.pc-content h2 { font-size: 36px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; }
.pc-content p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; font-size: 16px; }

/* Extra responsive for product pages */
@media (max-width: 1024px) {
    .product-hero-content { grid-template-columns: 1fr; text-align: center; }
    .product-hero-left { align-items: center; }
    .product-hero-desc { margin: 0 auto; }
    .product-hero-stats { justify-content: center; width: 100%; }
    .pf-grid { grid-template-columns: repeat(2, 1fr); }
    .phw-steps { flex-direction: column; }
    .float-card, .float-card-2 { position: relative; bottom: auto; right: auto; top: auto; left: auto; margin-top: 16px; }
}

@media (max-width: 640px) {
    .product-hero-title { font-size: 36px; }
    .product-hero-stats { flex-direction: column; gap: 16px; }
    .pf-grid { grid-template-columns: 1fr; }
    .phw-steps { flex-direction: column; }
}

/* ============================================
   UNISCADE - Cost Savings Calculator Styles
   ============================================ */
.calculator-section {
  padding: 100px 0;
  background: var(--dark-bg-light);
  border-bottom: 1px solid var(--border);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: 1px solid var(--border);
  margin-top: 48px;
  align-items: center;
}

.calc-left h3 {
font-size: 24px;
font-weight: 700;
color: white;
margin-bottom: 12px;
}

.calc-left p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.slider-container {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 30px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slider-header span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
}

.slider-header .slider-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.savings-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    margin-bottom: 12px;
}

.savings-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    transition: transform 0.1s;
}

.savings-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.tools-checkboxes span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.checkbox-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.chk-custom {
    color: var(--success);
    font-size: 16px;
}

.calc-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}

.saas-card {
    background: rgba(239, 68, 68, 0.02);
    border-color: rgba(239, 68, 68, 0.1);
}

.saas-card h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--danger);
    margin-bottom: 8px;
    font-weight: 700;
}

.uniscade-card {
    background: rgba(99, 102, 241, 0.03);
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.05);
}

.uniscade-card h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.val-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.calc-cost {
font-size: 28px;
font-weight: 800;
color: white;
margin-bottom: 4px;
}

.cost-period {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 4px;
}

.cost-note {
    font-size: 11px;
    color: var(--text-muted);
}

.savings-highlight {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-light));
    padding: 24px;
    border-radius: var(--radius);
    color: white;
    text-align: center;
    border: 1px solid var(--border);
}

.savings-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.savings-amount {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* ============================================
   UNISCADE - Lifetime Pricing Selector & Grid
   (Consolidated — see main pricing section above)
   ============================================ */

/* Responsive adjustments for Savings Calculator & Tabs */
@media (max-width: 1024px) {
    .calculator-wrapper { grid-template-columns: 1fr; }
    .product-pricing-group { flex-direction: column; gap: 30px; }
    .pricing-card.featured { transform: translateY(0); }
}

@media (max-width: 640px) {
    .calculator-wrapper { padding: 24px; }
    .slider-header .slider-value { font-size: 20px; }
    .guarantee-badge { flex-direction: column; text-align: center; }
    .pricing-tabs { width: 100%; flex-direction: column; border-radius: 16px; }
}

/* ============================================
   UNISCADE - B2B Security & Sovereignty Grid
   ============================================ */
.security-section {
padding: 100px 0;
background: var(--dark-bg-light);
border-bottom: 1px solid var(--border);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.security-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border);
border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.05);
}

.sec-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.security-card h3 {
font-size: 18px;
font-weight: 700;
color: white;
    margin-bottom: 10px;
}

.security-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   UNISCADE - Vertical Product Roadmap Timeline
   ============================================ */
.roadmap-section {
padding: 100px 0;
background: var(--dark-bg);
border-bottom: 1px solid var(--border);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
background: var(--dark-bg-light);
border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-secondary);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item.completed .timeline-dot {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.timeline-item.active .timeline-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    animation: timelinePulse 2s infinite;
}

@keyframes timelinePulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.timeline-content {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.timeline-item.active .timeline-content {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.05);
}

.timeline-quarter {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline-item.completed .timeline-quarter {
    color: var(--success);
    background: rgba(34, 197, 94, 0.05);
}

.timeline-content h3 {
font-size: 18px;
font-weight: 700;
color: white;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Roadmap & Security */
@media (max-width: 768px) {
    .security-grid { grid-template-columns: 1fr; }
    .roadmap-timeline { padding-left: 30px; }
    .timeline-dot { left: -30px; width: 24px; height: 24px; font-size: 10px; top: 8px; }
    .timeline-line { left: 11px; }
}

/* ============================================
UNISCADE - Step Overrides (no original .step definitions)
============================================ */
.step {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border);
box-shadow: none;
}

.step:hover {
border-color: var(--primary);
box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

.step-number {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.step h3 { color: white; }
.step p { color: var(--text-secondary); }

/* ============================================
UNISCADE - Bundle Pricing Card
============================================ */
/* ============================================
   UNISCADE - Hamburger Mobile Menu
   ============================================ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0a0914;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-dropdown {
    flex-direction: column;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex;
  }

  .nav-cta {
    margin-top: 16px;
  }
}

/* ============================================
   PREMIUM REDESIGN - Enhanced Visual Effects
   ============================================ */

/* === Page Loader === */
.page-loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  border-radius: 3px;
  animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

@keyframes loaderSlide {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* === Premium Section Backgrounds === */
.section-bg-mesh {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mesh-gradient-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
}

.mesh-gradient-1.mg-1 { background: var(--primary); top: -200px; right: -100px; }
.mesh-gradient-1.mg-2 { background: var(--accent); bottom: -200px; left: -100px; }
.mesh-gradient-1.mg-3 { background: #06b6d4; top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* Noise texture overlay */
.noise-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* === Animated Section Dividers === */
.section-divider {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  overflow: hidden;
  z-index: 2;
}

.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-divider.flip {
  transform: scaleY(-1);
  bottom: auto;
  top: -2px;
}

/* === Glassmorphism Enhanced Cards === */
.glass-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.2) !important;
  border: 1px solid rgba(224, 220, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(224, 220, 255, 0.06) !important;
}

/* === Animated Border Cards === */
.animated-border {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 2px;
  overflow: hidden;
}

.animated-border::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), transparent, var(--accent), transparent);
  animation: borderRotate 6s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.animated-border:hover::before {
  opacity: 1;
}

.animated-border::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--dark-bg-light);
  border-radius: 18px;
  z-index: 0;
}

.animated-border > * {
  position: relative;
  z-index: 1;
}

@keyframes borderRotate {
  100% { transform: rotate(360deg); }
}

/* === Premium Hero Enhancements === */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark-bg), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-title {
  position: relative;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(-20deg);
  animation: charReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes charReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* === Floating Orbs for Sections === */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.floating-orb.fo-purple { background: #6366f1; opacity: 0.06; }
.floating-orb.fo-amber { background: #06b6d4; opacity: 0.05; }
.floating-orb.fo-cyan { background: #34d399; opacity: 0.04; }
.floating-orb.fo-pink { background: #ff6b4a; opacity: 0.04; }

/* === Premium Section Label === */
.section-label {
  position: relative;
  display: inline-block;
  color: var(--primary) !important;
  letter-spacing: 3px !important;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.section-label::before { right: calc(100% + 12px); }
.section-label::after { left: calc(100% + 12px); background: linear-gradient(90deg, transparent, var(--primary)); }

/* === Enhanced Section Transitions === */
.section-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Staggered Children Animation === */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* === Magnetic Button Effect === */
.magnetic-btn {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.magnetic-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}

.magnetic-btn:hover::after {
  opacity: 0.3;
}

/* === Parallax Depth Layers === */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* === Premium Testimonial Cards === */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--primary-light);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

/* === Premium Pricing Glow === */
.pricing-card.featured {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.15;
  animation: pricingGlow 4s ease-in-out infinite alternate;
}

@keyframes pricingGlow {
  0% { opacity: 0.1; filter: blur(0px); }
  100% { opacity: 0.2; filter: blur(4px); }
}

/* === Animated Counter Glow === */
.stat-number {
  position: relative;
}

/* === Smooth Scroll Snap (optional) === */
html {
  scroll-padding-top: 80px;
}

/* === Enhanced Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-bg-lighter);
  border-radius: 4px;
  border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* === Glow Effect on Hover for Icons === */
.glow-on-hover {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.glow-on-hover:hover {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.25), 0 0 60px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

/* === Section Background Gradients === */
.bg-gradient-dark {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0918 50%, var(--dark-bg) 100%) !important;
}

.bg-gradient-subtle {
  background: linear-gradient(180deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%) !important;
}

.bg-gradient-radial {
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 60%), var(--dark-bg) !important;
}

/* === Animated Gradient Text === */
.gradient-text-animated {
  background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--primary-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientTextShift 4s ease infinite;
}

@keyframes gradientTextShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Premium Trust Logo Hover === */
.trust-logo-card {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-logo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trust-logo-card:hover .tl-icon {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Hero Marquee Premium === */
.hero-marquee {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(99, 102, 241, 0.03) 20%, 
    rgba(99, 102, 241, 0.06) 50%, 
    rgba(99, 102, 241, 0.03) 80%, 
    transparent 100%
  ) !important;
}

/* === Smooth Section Reveal with Clip Path === */
.clip-reveal {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.clip-reveal.visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* === Premium Footer Enhancement === */
.main-footer {
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  opacity: 0.5;
}

/* === Hover Ripple Effect === */
.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ripple-effect:hover::after {
  opacity: 1;
}

/* === Premium Grid Lines Background === */
.grid-lines-bg {
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* === Smooth Reveal Animations (Enhanced) === */
/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* Page Hero */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a3e 50%, #0a0a14 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.page-hero.compact-hero {
  min-height: 40vh;
  padding-top: 110px;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.page-hero-bg .orb-1 {
  width: 500px; height: 500px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  top: -150px; right: -100px;
  animation: float 8s ease-in-out infinite;
}

.page-hero-bg .orb-2 {
  width: 350px; height: 350px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  bottom: -100px; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.page-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.7;
}

/* Page Content */
.page-content {
  padding: 80px 0 100px;
  background: var(--dark-bg);
}

/* Content Grid */
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

.content-grid-2 h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.content-grid-2 p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Content Cards */
.content-card {
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.content-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.content-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.content-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Values Grid */
.values-section { margin-bottom: 80px; }

.values-section h2, .team-section h2, .openings-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.text-center { text-align: center; }

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.value-num {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.2);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Careers */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.perk-card {
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.perk-card:hover { transform: translateY(-4px); }

.perk-card i {
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.perk-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.perk-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Job Listings */
.job-listings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.job-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.job-meta span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-input::placeholder { color: var(--text-muted); }

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b6e80' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-light);
  margin: 0 auto 12px;
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-info-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-socials {
  text-align: center;
  padding: 24px;
}

.contact-socials h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

/* Resources Page */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.resource-card {
  padding: 32px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.2);
}

.resource-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.resource-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Guides */
.resources-featured h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.2);
}

.guide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guide-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.4;
}

.guide-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.guide-time {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Documentation Page */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.docs-nav-group {
  margin-bottom: 24px;
}

.docs-nav-group h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.docs-nav-group ul { list-style: none; }

.docs-nav-group li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.2s;
}

.docs-nav-group li a:hover,
.docs-nav-group li a.active {
  color: white;
  background: rgba(99, 102, 241, 0.1);
}

.docs-main h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.docs-main h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 32px 0 12px;
}

.docs-main p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.docs-breadcrumb i { font-size: 10px; }

.docs-callout {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 12px;
  margin: 24px 0;
}

.docs-callout i {
  font-size: 20px;
  color: var(--primary-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.docs-callout strong {
  display: block;
  color: white;
  margin-bottom: 4px;
}

.docs-callout p { margin-bottom: 0; font-size: 14px; }

.docs-callout-success {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.12);
}

.docs-callout-success i { color: var(--success); }

.docs-code-block {
  background: #0a0a14;
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 12px;
  margin: 16px 0 24px;
  overflow: hidden;
}

.docs-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(224, 220, 255, 0.06);
}

.docs-code-lang {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.docs-copy-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.docs-copy-btn:hover { color: white; }

.docs-code-block pre {
  padding: 20px;
  margin: 0;
  overflow-x: auto;
}

.docs-code-block code {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #e2e8f0;
}

.docs-code-block .kw { color: #c792ea; font-weight: 600; }
.docs-code-block .str { color: #c3e88d; }
.docs-code-block .fn { color: #82aaff; }
.docs-code-block .prop { color: #89ddff; }
.docs-code-block .cmt { color: #546e7a; font-style: italic; }

/* Help Center */
.help-search {
  max-width: 500px;
  margin: 32px auto 0;
  position: relative;
}

.help-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.help-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 220, 255, 0.1);
  border-radius: 50px;
  padding: 16px 24px 16px 52px;
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.help-search-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  background: rgba(224, 220, 255, 0.08);
}

.help-search-input::placeholder { color: var(--text-muted); }

.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.help-cat-card {
  padding: 28px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.help-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.2);
}

.help-cat-card i {
  font-size: 24px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.help-cat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.help-cat-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.help-cat-card span { font-size: 12px; color: var(--text-muted); }

.help-faq h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}

/* Community Page */
.community-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.community-card {
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.community-card:hover { transform: translateY(-4px); }

.community-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.community-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.community-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.comm-stat {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 16px;
}

.comm-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.comm-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Legal Pages */
.legal-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}

.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}

.legal-toc h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.legal-toc ul { list-style: none; }

.legal-toc li { margin-bottom: 8px; }

.legal-toc a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.legal-toc a:hover { color: white; }

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 40px 0 16px;
  padding-top: 16px;
}

.legal-body h2:first-of-type { margin-top: 0; }

.legal-body p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 0 0 20px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: white; }

.legal-body a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover { color: white; }

/* Cookie Table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  color: white;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
}

.cookie-table td { color: var(--text-secondary); }

/* GDPR Highlight */
.gdpr-highlight {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 12px;
  margin: 24px 0;
}

.gdpr-highlight i {
  font-size: 24px;
  color: var(--primary-light);
  margin-top: 2px;
}

.gdpr-highlight strong {
  display: block;
  color: white;
  margin-bottom: 4px;
}

.gdpr-highlight p { margin-bottom: 0; }

/* GDPR Rights Grid */
.gdpr-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}

.gdpr-right-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 220, 255, 0.06);
  border-radius: 12px;
}

.gdpr-right-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.gdpr-right-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Inner Pages */
@media (max-width: 1024px) {
  .content-grid-2, .contact-grid { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .perks-grid, .help-categories, .guides-grid, .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .community-stats { grid-template-columns: repeat(2, 1fr); }
  .docs-layout, .legal-content { grid-template-columns: 1fr; }
  .docs-sidebar, .legal-toc { position: static; }
  .gdpr-rights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-hero-title { font-size: 34px; }
  .values-grid, .team-grid, .perks-grid, .help-categories, .guides-grid, .resources-grid { grid-template-columns: 1fr; }
  .community-channels { grid-template-columns: 1fr; }
  .community-stats { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .gdpr-rights-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============================================
   SUITE TAB SWITCHER
   ============================================ */
.suite-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.04) 0%, transparent 50%), var(--dark-bg);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.suite-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(224, 220, 255, 0.06);
    padding: 6px;
    border-radius: 16px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.suite-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.suite-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.04);
}

.suite-tab.active {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.06));
    color: var(--accent-light);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

.suite-tab i {
    font-size: 16px;
}

.suite-panels {
    position: relative;
}

.suite-panel {
    display: none;
}

.suite-panel.active {
    display: block;
}

.suite-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(224, 220, 255, 0.06);
    border-radius: 24px;
    padding: 48px;
}

.suite-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.suite-panel-left h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.suite-panel-sub {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.suite-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.suite-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.suite-features li i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.suite-features li strong {
    display: block;
    font-size: 14px;
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
}

.suite-features li span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.suite-panel-btn {
    display: inline-flex;
}

/* Preview Blocks */
.suite-preview {
    background: #0a0a14;
    border: 1px solid rgba(224, 220, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(224, 220, 255, 0.06);
}

.bp-dots {
    display: flex;
    gap: 5px;
}

.bp-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bp-dots span:nth-child(1) { background: #ff6b4a; }
.bp-dots span:nth-child(2) { background: #6366f1; }
.bp-dots span:nth-child(3) { background: #34d399; }

.bp-url {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    flex: 1;
    text-align: center;
}

.bp-body {
    padding: 16px;
    display: flex;
    gap: 12px;
    min-height: 280px;
}

/* Booking Preview */
.bp-sidebar {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bp-nav-item {
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.bp-nav-item i { font-size: 10px; }

.bp-nav-item.active {
    background: rgba(99, 102, 241, 0.15);
    color: white;
}

.bp-main {
    flex: 1;
}

.bp-cal-header {
    font-size: 12px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.bp-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    text-align: center;
    font-size: 9px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.bp-cal-grid span:first-child { font-weight: 600; color: var(--text-secondary); }

.bp-active {
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-weight: 700;
}

.bp-slots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bp-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 10px;
    color: var(--text-secondary);
}

.bp-slot.booked {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: white;
}

.bp-slot.available {
    background: rgba(34, 197, 94, 0.06);
    border: 1px dashed rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.bp-slot-time {
    font-weight: 700;
    font-size: 9px;
    min-width: 32px;
}

/* Invoice Preview */
.invoice-body { padding: 16px; }

.inv-doc {
    background: white;
    border-radius: 10px;
    padding: 20px;
	color: #0a0a14;
}

.inv-doc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.inv-doc-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.inv-doc-num {
    font-size: 11px;
    color: #6b7280;
}

.inv-doc-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

.inv-doc-status.paid {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.inv-doc-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.inv-doc-meta strong {
    display: block;
    font-size: 9px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.inv-doc-meta span {
    font-size: 12px;
    color: #374151;
    font-weight: 500;
}

.inv-doc-table {
    margin-bottom: 12px;
}

.inv-doc-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 8px;
    font-size: 11px;
    padding: 6px 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.inv-doc-row.header {
    font-weight: 700;
    color: #9ca3af;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inv-doc-row span:last-child {
    font-weight: 600;
    text-align: right;
}

.inv-doc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 2px solid #e5e7eb;
    font-size: 14px;
    font-weight: 700;
	color: #0a0a14;
}

.inv-doc-total strong {
	color: #818cf8;
    font-size: 18px;
}

/* Chatbot Preview */
.chat-body {
    flex-direction: column;
    padding: 0;
}

.chat-stream {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.cs-msg {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.cs-msg.user {
    justify-content: flex-end;
}

.cs-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    flex-shrink: 0;
}

.cs-bubble {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.5;
    max-width: 80%;
}

.cs-msg.bot .cs-bubble {
    background: rgba(224, 220, 255, 0.06);
    color: white;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(224, 220, 255, 0.06);
}

.cs-msg.user .cs-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 2px;
}

.cs-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-top: 1px solid rgba(224, 220, 255, 0.06);
}

.cs-input span {
    font-size: 11px;
    color: var(--text-muted);
}

.cs-send {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: white;
    cursor: pointer;
}

/* Responsive Suite */
@media (max-width: 1024px) {
    .suite-panel-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
    .suite-tabs { width: 100%; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 640px) {
    .suite-tabs { flex-direction: column; border-radius: 12px; }
    .suite-tab { justify-content: center; }
    .suite-panel-inner { padding: 24px; }
    .bp-body { flex-direction: column; }
    .bp-sidebar { flex-direction: row; width: 100%; }
}

