/* ============================================
sharemypost - Complete Design System
============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--primary-light: #818cf8;
--secondary: #06b6d4;
--secondary-dark: #0891b2;
--accent: #f59e0b;
--accent-dark: #d97706;
--violet: #8b5cf6;
--rose: #f43f5e;
--emerald: #10b981;
--sky: #0ea5e9;

--bg: #ffffff;
--bg-alt: #f8fafc;
--bg-card: #ffffff;
--surface: #f1f5f9;
--border: #e2e8f0;
--text: #0f172a;
--text-secondary: #64748b;
--text-muted: #94a3b8;
--glass-bg: rgba(255, 255, 255, 0.7);
--glass-border: rgba(255, 255, 255, 0.3);
--glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
--nav-blur: rgba(255, 255, 255, 0.85);
--card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
--card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
--gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
--sidebar-bg: #6366f1;
--gradient-hero: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
--gradient-accent: linear-gradient(135deg, #f59e0b, #f97316);
--gradient-card: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 20px;
--radius-xl: 28px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark {
--bg: #0b0f1a;
--bg-alt: #111827;
--bg-card: #1a1f35;
--surface: #1e293b;
--border: #1e293b;
--text: #f8fafc;
--text-secondary: #94a3b8;
--text-muted: #64748b;
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.08);
--glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
--nav-blur: rgba(11, 15, 26, 0.9);
--card-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
--card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
--sidebar-bg: #1a1f35;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
pre { overflow-x: auto; padding-bottom: 28px; }

html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

body {
font-family: var(--font-sans);
background: var(--bg);
color: var(--text);
line-height: 1.6;
transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-secondary); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

/* --- Utilities --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--bg-alt); padding: 30px 0; }
.pricing-bg { background: linear-gradient(135deg, #fafcff, #f5faff); }
.dark .pricing-bg { background: var(--bg-alt); }
.dark .theme-toggle-btn { color: #fff !important; background: rgba(255,255,255,0.08); }
.dark .theme-toggle-btn:hover { color: #fff !important; background: rgba(255,255,255,0.2); }
.gradient-text {
background: var(--gradient-hero);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gradient-text-single {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.tag {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
border-radius: 100px;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
background: var(--gradient-card);
color: var(--primary);
border: 1px solid rgba(99, 102, 241, 0.2);
}

/* --- Glassmorphism Components --- */
.glass {
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
box-shadow: var(--glass-shadow);
}
.glass-card {
background: var(--glass-bg);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid var(--glass-border);
border-radius: var(--radius-lg);
padding: 32px;
transition: var(--transition);
}
.glass-card:hover {
border-color: rgba(99, 102, 241, 0.3);
box-shadow: 0 8px 40px rgba(99, 102, 241, 0.1);
transform: translateY(-4px);
}
.glass-card.docs-hover-border:hover {
border-left: 4px solid var(--primary);
}

/* --- Buttons --- */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 28px;
border-radius: var(--radius-sm);
font-weight: 600;
font-size: 0.95rem;
border: none;
cursor: pointer;
transition: var(--transition);
text-decoration: none;
position: relative;
overflow: hidden;
}
.btn-primary {
background: var(--gradient-primary);
color: #fff;
box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45); color: #fff; }
.btn-secondary {
background: var(--glass-bg);
color: var(--text);
border: 1px solid var(--border);
backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-accent {
background: var(--gradient-accent);
color: #fff;
box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45); color: #fff; }
.btn-ghost {
background: transparent;
color: var(--text);
border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: rgba(99, 102, 241, 0.05); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* --- Navbar --- */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 5px 0;
background: var(--nav-blur);
background-image: linear-gradient(180deg, rgba(99,102,241,0.04) 0%, transparent 100%);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--glass-border);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
}
.navbar.scrolled {
padding: 2px 0;
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
border-bottom-color: transparent;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar .logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.navbar .logo span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.navbar .logo svg { width: 32px; height: 32px; }
.footer-brand .logo span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand .logo { font-size: 1.4rem; font-weight: 800; }
.theme-toggle-btn {
background: rgba(99, 102, 241, 0.08);
border: 1px solid transparent;
color: var(--primary);
font-size: 0.85rem;
cursor: pointer;
transition: var(--transition);
display: flex; align-items: center; gap: 6px;
border-radius: 40px;
font-weight: 500;
padding: 8px 12px;
min-width: auto;
}
.theme-toggle-btn:hover { background: rgba(99, 102, 241, 0.15); transform: translateY(-1px); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
padding: 8px 16px;
border-radius: var(--radius-sm);
color: var(--text-secondary);
font-weight: 500;
font-size: 0.9rem;
transition: var(--transition);
text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(99, 102, 241, 0.08); }
.nav-links .btn { margin-left: 8px; }
.nav-links .btn-primary { color: #fff; }
.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 8px;
background: none;
border: none;
}
.mobile-toggle span {
width: 24px;
height: 2px;
background: var(--text);
border-radius: 2px;
transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: -1;
overflow: hidden;
}
.hero-bg .orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.3;
animation: orbFloat 20s ease-in-out infinite;
}
.hero-bg .orb:nth-child(1) {
width: 600px;
height: 600px;
background: var(--primary);
top: -200px;
right: -200px;
animation-delay: 0s;
}
.hero-bg .orb:nth-child(2) {
width: 400px;
height: 400px;
background: var(--secondary);
bottom: -100px;
left: -100px;
animation-delay: -7s;
}
.hero-bg .orb:nth-child(3) {
width: 300px;
height: 300px;
background: var(--violet);
top: 50%;
left: 50%;
animation-delay: -14s;
}
@keyframes orbFloat {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -50px) scale(1.1); }
66% { transform: translate(-20px, 30px) scale(0.9); }
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text .tag { margin-bottom: 20px; }
.hero-text h1, .hero-text h2 { margin-bottom: 20px; margin-top: -52px; }
.hero-text p { font-size: 1rem; max-width: 520px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border); }
.hero-stat h3 { font-size: 2rem; }
.hero-stat p { font-size: 0.85rem; margin: 0; }

/* --- Hero Visual --- */
.hero-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.hero-mockup {
width: 100%;
max-width: 540px;
background: var(--bg-card);
border-radius: var(--radius-lg);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
border: 1px solid var(--border);
overflow: hidden;
position: relative;
}
.hero-mockup-header {
display: flex;
align-items: center;
gap: 8px;
padding: 14px 18px;
background: var(--surface);
border-bottom: 1px solid var(--border);
}
.hero-mockup-header .dot {
width: 10px;
height: 10px;
border-radius: 50%;
}
.hero-mockup-header .dot:nth-child(1) { background: #ef4444; }
.hero-mockup-header .dot:nth-child(2) { background: #f59e0b; }
.hero-mockup-header .dot:nth-child(3) { background: #10b981; }
.hero-mockup-body { padding: 24px; }
.hero-mockup-body .bar {
height: 12px;
border-radius: 6px;
background: var(--surface);
margin-bottom: 12px;
}
.hero-mockup-body .bar:nth-child(1) { width: 60%; }
.hero-mockup-body .bar:nth-child(2) { width: 80%; }
.hero-mockup-body .bar:nth-child(3) { width: 45%; }
.hero-mockup-body .bar:nth-child(4) { width: 70%; }
.floating-share-preview {
position: absolute;
right: -30px;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 8px;
background: var(--bg-card);
padding: 12px;
border-radius: var(--radius-md);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
border: 1px solid var(--border);
animation: floatShare 3s ease-in-out infinite;
}
.floating-share-preview .share-icon {
width: 40px;
height: 40px;
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
transition: var(--transition);
cursor: pointer;
}
.floating-share-preview .share-icon:hover { transform: scale(1.15); }
.share-icon-fb { background: #1877f2; color: #fff; }
.share-icon-tw { background: #000; color: #fff; }
.share-icon-li { background: #0a66c2; color: #fff; }
.share-icon-wa { background: #25d366; color: #fff; }
@keyframes floatShare {
0%, 100% { transform: translateY(-50%) translateX(0); }
50% { transform: translateY(-50%) translateX(-10px); }
}

/* --- Grid & Cards --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 32px;
transition: var(--transition);
position: relative;
overflow: hidden;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 16px;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 3px;
background: var(--gradient-primary);
opacity: 0;
transition: var(--transition);
}
.feature-card:hover {
transform: translateY(-6px);
box-shadow: var(--card-shadow-hover);
border-color: rgba(99, 102, 241, 0.2);
}
.feature-card:hover::before { opacity: 1; }
.feature-card .icon {
width: 52px;
height: 52px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
background: var(--gradient-card);
color: var(--primary);
flex-shrink: 0;
}
.feature-card h3 { margin-bottom: 0; font-size: 1.15rem; flex: 1; min-width: 0; }
.feature-card p { font-size: 0.9rem; line-height: 1.6; width: 100%; }

/* --- Section Headers --- */
.section-header {
text-align: center;
max-width: 640px;
margin: 0 auto 60px;
}
.section-header .tag { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

/* --- Stats / Numbers --- */
.stat-card {
text-align: center;
padding: 40px 24px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.stat-card .number { font-size: 2.5rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card p { margin-top: 8px; font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonial-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 32px;
transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.testimonial-card .stars { color: var(--accent); margin-bottom: 16px; font-size: 1rem; }
.testimonial-card blockquote { font-size: 0.95rem; font-style: italic; line-height: 1.7; margin-bottom: 20px; color: var(--text-secondary); }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
width: 44px; height: 44px;
border-radius: 50%;
background: var(--gradient-primary);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-weight: 700;
font-size: 1rem;
}
.testimonial-card .author-info h4 { font-size: 0.95rem; }
.testimonial-card .author-info p { font-size: 0.8rem; margin: 0; }

/* --- Pricing Cards --- */
.pricing-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 40px 32px;
transition: var(--transition);
position: relative;
}
.pricing-card.featured {
border-color: var(--primary);
box-shadow: 0 0 0 1px var(--primary), var(--card-shadow-hover);
transform: scale(1.03);
}
.pricing-card.featured .badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient-primary);
color: #fff;
padding: 4px 16px;
border-radius: 100px;
font-size: 0.8rem;
font-weight: 600;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.pricing-card.featured:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.pricing-card .plan-name { font-size: 1.8rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; width: 178.4px; min-height: 38.4px; }
.pricing-card .price { font-size: 3.2rem; font-weight: 900; margin-bottom: 4px; width: 178.4px; min-height: 76.8px; }
.pricing-card .price span { font-size: 1.1rem; font-weight: 500; color: var(--text-primary); }
.pricing-card .description { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card .features-list { list-style: none; margin-bottom: 32px; }
.pricing-card .features-list li {
padding: 8px 0;
font-size: 0.9rem;
color: var(--text-secondary);
display: flex;
align-items: center;
gap: 10px;
}
.pricing-card .features-list li::before {
content: '✓';
color: var(--emerald);
font-weight: 700;
font-size: 1rem;
background: rgba(16, 185, 129, 0.12);
width: 22px;
height: 22px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
flex-shrink: 0;
}
.pricing-card .features-list li.disabled { }
.pricing-card .features-list li.disabled::before {
content: '✕';
color: var(--rose);
background: rgba(239, 68, 68, 0.12);
width: 22px;
height: 22px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
flex-shrink: 0;
font-size: 0.85rem;
font-weight: 700;
}

/* --- Footer --- */
.footer {
background: linear-gradient(135deg, #f8faff, #eef2ff);
border-top: 1px solid var(--border);
padding: 48px 0 24px;
}
.dark .footer { background: linear-gradient(135deg, #0b0f1a, #0f172a); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { font-size: 1rem; max-width: 360px; margin-top: 8px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--primary); letter-spacing: 0.3px; display: inline-flex; flex-direction: column; gap: 8px; }
.footer-col h4::after { content: ''; width: 100%; height: 3px; background: linear-gradient(90deg, #6366f1, #8b5cf6); border-radius: 3px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: var(--text-secondary); font-size: 0.9rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
margin-top: 24px;
padding-top: 16px;
border-top: 1px solid var(--border);
display: flex;
justify-content: center;
align-items: center;
font-size: 0.85rem;
color: var(--text-muted);
}

/* --- Dashboard --- */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.dashboard-sidebar {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 20px;
position: sticky;
top: 100px;
}
.dashboard-sidebar .dash-nav { list-style: none; }
.dashboard-sidebar .dash-nav li { margin-bottom: 2px; }
.dashboard-sidebar .dash-nav a {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 14px;
border-radius: var(--radius-sm);
color: var(--text-secondary);
font-size: 0.88rem;
font-weight:500;
transition: var(--transition);
}
.dashboard-sidebar .dash-nav a:hover, .dashboard-sidebar .dash-nav a.active {
background: rgba(99, 102, 241, 0.08);
color: var(--primary);
}
.dashboard-sidebar .dash-nav a .dash-icon { width: 20px; text-align: center; }
.dashboard-main { }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.dashboard-header h1 { font-size: 1.6rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-box {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 20px;
transition: var(--transition);
}
.stat-box:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.stat-box .stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-box .stat-value { font-size: 1.8rem; font-weight: 800; margin: 8px 0; }
.stat-box .stat-change { font-size: 0.8rem; display: flex; align-items: center; gap: 4px; }
.stat-box .stat-change.up { color: var(--emerald); }
.stat-box .stat-change.down { color: var(--rose); }
.chart-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 24px;
margin-bottom: 24px;
}
.chart-card .chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }

.compare-table-wrap { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table tr { border-top: 1px solid var(--border); }
.compare-table th, .compare-table td { border-right: 1px solid var(--border); padding: 14px 20px; font-size: 0.88rem; }
.compare-table th:last-child, .compare-table td:last-child { border-right: none; }
.compare-table thead th { text-align: left; font-weight: 600; }
.compare-table thead th + th { text-align: center; }
.compare-table thead th + th + th { text-align: center; }
.compare-table tbody td { text-align: left; }
.compare-table tbody td + td { text-align: center; }
.compare-table tbody td + td + td { text-align: center; }
.compare-table tbody tr:hover { background: var(--surface); }
.compare-table td .check-mark,
.compare-table td .cross-mark {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
border-radius: 50%;
font-weight: 700;
font-size: 0.85rem;
flex-shrink: 0;
}
.compare-table td .check-mark {
background: rgba(16, 185, 129, 0.12);
color: var(--emerald);
}
.compare-table td .cross-mark {
background: rgba(239, 68, 68, 0.12);
color: var(--rose);
}
.chart-card .chart-header h3 { font-size: 1rem; }
.chart-placeholder {
width: 100%;
height: 220px;
background: var(--surface);
border-radius: var(--radius-md);
display: flex;
align-items: flex-end;
gap: 8px;
padding: 16px 24px;
}
.chart-bar {
flex: 1;
background: var(--gradient-primary);
border-radius: 4px 4px 0 0;
transition: var(--transition);
min-height: 4px;
}
.chart-bar:nth-child(odd) { opacity: 0.7; }
.chart-bar:hover { opacity: 1; transform: scaleY(1.02); }

/* --- Feature Tabs --- */
.feature-tabs-wrap {
background: var(--bg-alt);
border-bottom: 1px solid var(--border);
position: sticky;
top: 72px;
z-index: 50;
}
.feature-tabs {
display: flex;
gap: 6px;
justify-content: center;
padding: 16px 0 16px;
}
.feature-tab {
padding: 10px 28px;
border: 1px solid var(--border);
border-radius: 100px;
background: var(--bg);
color: var(--text-secondary);
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: var(--transition);
white-space: nowrap;
display: inline-flex;
align-items: center;
gap: 6px;
}
.feature-tab svg { color: var(--primary); }
.feature-tab:hover { border-color: var(--primary); color: var(--text); }
.feature-tab.active {
background: var(--gradient-primary);
color: #fff;
border-color: transparent;
box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}
.feature-tab.active svg { color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- Feature Card Horizontal --- */
.feature-grid-h {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.feature-card-h {
display: flex;
gap: 20px;
padding: 24px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
transition: var(--transition);
align-items: flex-start;
position: relative;
overflow: hidden;
}
.feature-card-h::before {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 3px;
background: var(--gradient-primary);
opacity: 0;
transition: var(--transition);
}
.feature-card-h:hover::before { opacity: 1; }
.feature-card-h:hover {
transform: translateY(-3px);
box-shadow: var(--card-shadow-hover);
border-color: rgba(99, 102, 241, 0.2);
}
.fch-icon {
width: 52px;
height: 52px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
flex-shrink: 0;
}
.fch-body { flex: 1; min-width: 0; }
.fch-head {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 6px;
flex-wrap: wrap;
}
.fch-head h3 { font-size: 1rem; margin: 0; }
.fch-badge {
font-size: 0.65rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 2px 10px;
border-radius: 100px;
line-height: 1.5;
}
.fch-badge-free { background: rgba(16,185,129,0.12); color: var(--emerald); }
.fch-badge-pro { background: rgba(99,102,241,0.12); color: var(--primary); }
.fch-body p { font-size: 0.88rem; margin: 0; color: var(--text-secondary); line-height: 1.6; }

/* --- Form Styles --- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-input, .form-select, .form-textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
background: var(--bg);
color: var(--text);
font-size: 0.9rem;
font-family: var(--font-sans);
transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* --- Integration / API Key --- */
.api-key-display {
display: flex;
align-items: center;
gap: 12px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 12px 16px;
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--text);
}
.api-key-display .key-text { flex: 1; }

/* --- Tabs --- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab {
padding: 10px 20px;
border: none;
background: none;
color: var(--text-secondary);
font-weight: 500;
font-size: 0.9rem;
cursor: pointer;
border-bottom: 2px solid transparent;
transition: var(--transition);
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* --- Toggle Switch --- */
.toggle-switch {
position: relative;
width: 56px;
height: 30px;
display: inline-block;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
position: absolute;
cursor: pointer;
inset: 0;
background: var(--surface);
border-radius: 30px;
transition: var(--transition);
border: 2px solid var(--border);
box-shadow: inset 0 2px 6px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
.toggle-slider::before {
content: '';
position: absolute;
height: 22px;
width: 22px;
left: 2px;
bottom: 2px;
background: var(--text-muted);
border-radius: 50%;
transition: var(--transition);
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider {
background: var(--gradient-primary);
border-color: transparent;
box-shadow: none;
}
.toggle-switch input:checked + .toggle-slider::before {
transform: translateX(26px);
background: #fff;
box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* --- Price Toggle --- */
.pricing-toggle {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
margin-bottom: 48px;
}
.pricing-toggle span { font-size: 0.95rem; font-weight: 500; color: var(--text); }

/* --- FAQ --- */
.faq-wrap{
display:flex;
flex-direction:column;
gap:16px;
margin-top:32px;
}

.faq-item{
position:relative;
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
background:rgba(255,255,255,0.02);
backdrop-filter:blur(10px);
overflow:hidden;
transition:0.3s ease;
}

.faq-item::before{
content:"";
position:absolute;
left:0;
top:0;
width:4px;
height:0;
background:var(--primary);
transition:0.35s ease;
border-radius:20px;
}

.faq-item:hover{
transform:translateY(-2px);
border-color:rgba(99,102,241,0.25);
background:rgba(255,255,255,0.04);
}

.faq-item.active::before{
height:100%;
}

.faq-question{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
padding:22px 24px;
background:none;
border:none;
cursor:pointer;
color:var(--text);
font-size:1rem;
font-weight:600;
text-align:left;
transition:0.3s ease;
}

.faq-question:hover{
color:var(--primary);
}

.faq-icon{
width:34px;
height:34px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(99,102,241,0.08);
font-size:1.2rem;
font-weight:500;
transition:0.3s ease;
flex-shrink:0;
}

.faq-item.active .faq-icon{
transform:rotate(45deg);
background:var(--primary);
color:#fff;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease,padding 0.4s ease;
padding:0 24px;
}

.faq-item.active .faq-answer{
max-height:220px;
padding:0 24px 22px;
}

.faq-answer p{
font-size:0.92rem;
line-height:1.8;
color:var(--text-light);
margin:0;
}

@media(max-width:768px){

.faq-question{
padding:18px;
font-size:0.95rem;
}

.faq-answer{
padding:0 18px;
}

.faq-item.active .faq-answer{
padding:0 18px 18px;
}

}

/* --- Contact Form --- */
.contact-info-cards { display: grid; grid-template-columns: 550px 550px; gap: 24px; justify-content: center; }
.contact-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 22px 24px 10px;
background: var(--bg-card);
border-style: solid;
border-top-width: 10px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-color: var(--primary);
border-radius: 0 0 20px 20px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
width: 535px;
height: 220px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-card:hover {
border-color: var(--primary);
box-shadow: 0 10px 35px rgba(99,102,241,0.2);
transform: scale(1.015);
}
.contact-card .c-icon {
width: 64px;
height: 64px;
border-radius: 50%;
background: rgba(99,102,241,0.1);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-bottom: 16px;
}
.contact-card .c-icon svg { width: 28px; height: 28px; }
.contact-card h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--primary); font-weight: 700; }
.contact-card p { font-size: 0.9rem; margin: 0; color: var(--text-secondary); line-height: 1.6; }

/* --- Breadcrumb --- */
.breadcrumb {
display: flex;
gap: 8px;
align-items: center;
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-secondary); }

/* --- Page Header (for inner pages) --- */
.page-header {
padding: 140px 0 60px;
text-align: center;
position: relative;
overflow: hidden;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { max-width: 540px; margin: 0 auto; font-size: 1.1rem; }

/* --- Modal / Overlay --- */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.6);
backdrop-filter: blur(8px);
z-index: 2000;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
background: var(--bg-card);
border-radius: var(--radius-lg);
padding: 40px;
max-width: 480px;
width: 100%;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.pricing-compare-section{
padding-top:40px;
}

.compare-table-scroll{
overflow-x:auto;
}

.compare-table{
width:100%;
border-collapse:collapse;
}

.compare-table thead tr{
background:var(--surface);
}

.compare-table th{
padding:16px 20px;
font-size:0.9rem;
text-align:center;
}

.compare-table th:first-child{
text-align:left;
}

.compare-table td{
padding:12px 20px;
border-top:1px solid var(--border);
text-align:center;
font-size:0.88rem;
}

.compare-table td:first-child{
text-align:left;
}

.compare-table .highlight-plan{
color:var(--primary);
}

.compare-table .license-row{
background:rgba(255,255,255,0.02);
}

.check-mark{
color:#22c55e;
font-weight:700;
}

.cross-mark{
color:#ef4444;
font-weight:700;
}
.modal-box h2 { font-size: 1.4rem; margin-bottom: 8px; }
.modal-box p { font-size: 0.9rem; margin-bottom: 24px; }

/* --- Animation Classes --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
.hero-content { grid-template-columns: 1fr; gap: 40px; }
.hero-visual { order: -1; }
.floating-share-preview { right: 0; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.dashboard-layout { grid-template-columns: 1fr; }
.dashboard-sidebar { display: none; }
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
.feature-grid-h { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--nav-blur); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 20px; flex-direction: column; }
.nav-links.open { display: flex; }
.mobile-toggle { display: flex; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
.hero-stats { flex-direction: column; gap: 20px; }
.pricing-card.featured { transform: none; }
.pricing-card.featured:hover { transform: translateY(-6px); }
.contact-info-cards { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.feature-tabs-wrap { position: relative; top: 0; }
.feature-tabs { flex-direction: column; align-items: stretch; padding: 16px 0 16px; }
.feature-tab { text-align: center; }
.page-header { padding: 120px 0 40px; }
.section { padding: 50px 0; }
.section-header { margin-bottom: 40px; }
}
@media (max-width: 480px) {
.container { padding: 0 16px; }
.hero-buttons { flex-direction: column; }
.stats-grid { grid-template-columns: 1fr; }
.dashboard-header { flex-direction: column; align-items: flex-start; }
}


/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* --- Selection --- */
::selection { background: rgba(99, 102, 241, 0.2); color: var(--text); }

/* --- Scroll to Top --- */
#scroll-top {
position: fixed;
bottom: 32px;
right: 32px;
width: 44px;
height: 44px;
border-radius: 50%;
border: none;
background: var(--primary);
color: #fff;
font-size: 1.3rem;
cursor: pointer;
box-shadow: 0 4px 14px rgba(99,102,241,0.35);
transition: opacity 0.3s, transform 0.3s;
z-index: 999;
}
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(99,102,241,0.45); }

/* ============================================
Docs Page — Simuzo-inspired Layout
============================================ */

/* --- Fixed Dark Sidebar --- */
.docs-sidebar {
position: fixed;
top: 72px;
left: 0;
bottom: 0;
width: 260px;
background: var(--sidebar-bg);
color: #fff;
overflow-y: auto;
padding: 0 0 32px;
z-index: 90;
box-shadow: 2px 0 8px rgba(0,0,0,0.06);
}
.docs-sidebar::-webkit-scrollbar { width: 4px; }
.docs-sidebar::-webkit-scrollbar-track { background: transparent; }
.docs-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 6px; }
body:has(.docs-sidebar) .logo { font-size: 1.70rem !important; margin-left: calc(-1 * max(20px, (100vw - 1280px) / 2 + 20px)); }
body:has(.docs-sidebar) .navbar .container { padding-left: 28px; }
.sidebar-logo {
display: flex;
align-items: center;
gap: 10px;
padding: 20px 16px 20px;
border-bottom: 1px solid rgba(255,255,255,0.1);
margin-bottom: 0;
}
.sidebar-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.sidebar-logo {
font-size: 16px;
font-weight: 700;
color: #fff;
}
.sidebar-search-wrap {
position: relative;
padding: 14px 16px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-search {
width: 100%;
padding: 9px 12px;
border-radius: 6px;
border: 1px solid rgba(255,255,255,0.2);
background: rgba(255,255,255,0.1);
color: #fff;
font-size: 13px;
outline: none;
transition: border-color 0.15s, background 0.15s;
}
.sidebar-search::placeholder { color: rgba(255,255,255,0.75); }
.sidebar-search:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.16); }
.sidebar-search-wrap #searchClear {
display: none;
position: absolute;
right: 30px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
color: #f43f5e;
font-size: 14px;
font-weight: 700;
line-height: 1;
}
.sidebar-nav { padding: 6px 0; }
.sidebar-nav .nav-section-title {
padding: 18px 16px 4px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: rgba(255,255,255,0.7);
}
.sidebar-nav a {
position: relative;
display: block;
padding: 7px 16px;
color: rgba(255,255,255,0.95);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: background 0.15s, color 0.15s;
border-left: 3px solid transparent;
}
.sidebar-nav a:hover {
background: rgba(255,255,255,0.08);
color: #fff;
}
.sidebar-nav a.active {
background: rgba(255,255,255,0.12);
color: #fff;
border-left-color: #fff;
}

.sidebar-nav a:first-child {
margin-bottom: 4px;
}

/* --- Main Content Area --- */
.docs-main {
margin-left: 260px;
padding: 88px 56px 60px;
max-width: 1280px;
background: var(--bg-alt);
min-height: 100vh;
}
.docs-main h1 {
font-size: 36px;
font-weight: 800;
color: var(--text);
margin-top: 24px;
margin-bottom: 12px;
letter-spacing: -0.02em;
}
.docs-lead {
color: var(--text-secondary);
font-size: 16px;
margin-bottom: 24px;
line-height: 1.6;
}

/* --- Intro Grid (3-column) --- */
.intro-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 48px;
}
.intro-item {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 20px 24px;
}
.intro-item .intro-label {
font-size: 22px;
font-weight: 800;
color: var(--primary);
margin-bottom: 4px;
}
.intro-item p {
font-size: 13px;
color: var(--text-muted);
margin: 0;
line-height: 1.5;
}

/* --- Card Grid --- */
.docs-section {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
margin-bottom: 32px;
}
.docs-section .card-grid {
margin-bottom: 0;
}
.docs-main h2 {
font-size: 22px;
font-weight: 600;
color: var(--text);
margin: 0 0 20px;
padding-bottom: 8px;
border-bottom: 2px solid var(--border);
}
.docs-main h2:first-of-type { margin-top: 0; }
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
margin-bottom: 40px;
}
.docs-card {
border: 1px solid var(--border);
border-radius: 10px;
padding: 24px;
background: var(--bg-card);
text-decoration: none;
color: inherit;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
transition: border-color 0.15s, box-shadow 0.15s;
}
.docs-card:hover {
border-color: var(--primary);
box-shadow: 0 4px 16px rgba(99, 102, 241, 0.10);
}
.docs-card .dc-icon {
width: 40px;
height: 40px;
border-radius: var(--radius-md);
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--gradient-card);
color: var(--primary);
flex-shrink: 0;
line-height: 0;
}
.docs-card h3 { flex: 1; min-width: 0; }
.docs-card p { width: 100%; }
.docs-card h3 {
font-size: 15px;
font-weight: 700;
color: var(--text);
margin-bottom: 6px;
border: none;
padding: 0;
}
.docs-card p {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.5;
margin: 0;
}

/* --- Docs Divider --- */
.docs-divider {
border: none;
border-top: 2px solid var(--border);
margin: 48px 0;
}

/* --- Detail Section Content --- */
.docs-main section[id] { scroll-margin-top: 130px; padding-top: 24px; }
.docs-main section h2 {
font-size: 22px;
margin: 0 0 16px;
padding-bottom: 8px;
border-bottom: 2px solid var(--border);
}
.docs-main section h3 {
font-size: 17px;
font-weight: 600;
color: var(--text);
margin: 28px 0 12px;
}
.docs-main section p { margin-bottom: 16px; line-height: 1.7; }
.docs-main section ul, .docs-main section ol { margin: 16px 0; padding-left: 24px; }
.docs-main section li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.6; }
.docs-main section code {
font-family: var(--font-mono);
background: var(--surface);
padding: 2px 8px;
border-radius: 4px;
font-size: 0.85em;
}
.docs-main section pre {
background: #0b0f1a;
color: #e2e8f0;
padding: 20px;
border-radius: 10px;
overflow-x: auto;
margin: 20px 0;
font-family: var(--font-mono);
font-size: 0.85rem;
line-height: 1.6;
}
.docs-main section pre code { background: none; padding: 0; font-size: inherit; color: inherit; }
.docs-main .callout {
padding: 16px 20px;
border-radius: 10px;
margin: 20px 0;
display: flex;
gap: 12px;
align-items: flex-start;
}
.docs-main .callout .callout-icon { flex-shrink: 0; line-height: 0; }
.docs-main .callout p { margin: 0; font-size: 0.9rem; }
.docs-main .callout.tip { background: rgba(16, 185, 129, 0.08); border-left: 3px solid var(--emerald); }
.docs-main .callout.note { background: rgba(99, 102, 241, 0.08); border-left: 3px solid var(--primary); }
.docs-main .callout.tip .callout-icon svg { color: var(--emerald); }
.docs-main .callout.note .callout-icon svg { color: var(--primary); }
.docs-main .step-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 24px;
margin: 16px 0;
display: flex;
gap: 16px;
align-items: flex-start;
}
.docs-main .step-number {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--gradient-primary);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.9rem;
flex-shrink: 0;
}
.docs-main .step-card h4 { margin-bottom: 6px; font-size: 1rem; }
.docs-main .step-card p { font-size: 0.9rem; margin: 0; }
.pro-badge {
display: inline-block;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 2px 10px;
border-radius: 100px;
background: rgba(99, 102, 241, 0.12);
color: var(--primary);
vertical-align: middle;
margin-left: 6px;
}

/* --- Quick Start List --- */
.qs-list {
margin: 20px 0 0;
padding-left: 24px;
color: var(--text-secondary);
line-height: 2;
}
.qs-list li { margin-bottom: 4px; }
.qs-list li strong { color: var(--text); }

/* --- Docs Footer --- */
.docs-footer {
margin-top: 48px;
padding-top: 24px;
border-top: 1px solid var(--border);
font-size: 13px;
color: var(--text-muted);
}

/* --- Dark Mode Overrides --- */

/* --- Docs Responsive --- */
@media (max-width: 1024px) {
.docs-sidebar { display: none; }
.docs-main { margin-left: 0; padding: 88px 28px 40px; max-width: 100%; }
}
@media (max-width: 768px) {
.intro-grid { grid-template-columns: 1fr; }
.card-grid { grid-template-columns: 1fr; }
.docs-main { padding: 88px 20px 40px; }
}

.plugin-showcase{padding:90px 0}
.plugin-header{text-align:center;max-width:760px;margin:0 auto 55px}
.plugin-header h2{font-size:clamp(2rem,4vw,3rem);letter-spacing:-0.02em;margin-bottom:18px;color:#111827;font-weight:700;line-height:1.2}
.plugin-header h2 span{background:linear-gradient(135deg,#6366f1,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.plugin-header p{color:#6b7280;line-height:1.9;font-size:1.05rem}
.plugin-layout{display:grid;grid-template-columns:260px 1fr;gap:28px;align-items:start}
.plugin-sidebar{display:flex;flex-direction:column;gap:12px;position:sticky;top:100px}
.plugin-tab{border:none;background:#fff;border-radius:18px;padding:15px 20px;text-align:left;cursor:pointer;transition:.25s ease;border:1px solid #e5e7eb;display:flex;align-items:center;gap:14px}
.plugin-tab:hover{transform:translateX(4px);border-color:#c7d2fe}
.plugin-tab.active{background:linear-gradient(135deg,#89baf1,#1f75e1);color:#fff;border-color:transparent;box-shadow:0 12px 30px rgba(99,102,241,.22)}
.plugin-icon{width:44px;height:44px;border-radius:12px;background:#eef2ff;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.plugin-tab.active .plugin-icon{background:rgba(255,255,255,.15)}
.plugin-tab h4{font-size:1rem;font-weight:700;margin-bottom:4px}
.plugin-tab span{font-size:.88rem;opacity:.75}
.plugin-panel{display:none;animation:fade .3s ease}
.plugin-panel.active{display:block}
@keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.plugin-card{background:#fff;border-radius:26px;overflow:hidden;border:1px solid #eef2f7;box-shadow:0 18px 40px rgba(0,0,0,.05)}
.plugin-image{padding:18px;background:#f8fafc}
.plugin-image img{width:90%;display:block;border-radius:18px}
.plugin-content{padding:34px}
.plugin-content h3{font-size:2rem;color:#111827;margin-bottom:16px;font-weight:800}
.plugin-content p{color:#6b7280;line-height:1.9;font-size:1rem;margin-bottom:28px}
.plugin-features{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.feature-item{background:#f9fafb;border-radius:16px;padding:18px}
.feature-item strong{display:block;margin-bottom:8px;color:#111827;font-size:.95rem}
.feature-item span{color:#6b7280;font-size:.92rem;line-height:1.7}
.dark .plugin-header h2,.dark .plugin-content h3,.dark .feature-item strong{color:#f9fafb}
.dark .plugin-header p,.dark .plugin-content p,.dark .feature-item span{color:#9ca3af}
.dark .plugin-tab{background:#111827;border-color:#1f2937;color:#d1d5db}
.dark .plugin-card{background:#111827;border-color:#1f2937}
.dark .plugin-image{background:#0f172a}
.dark .feature-item{background:#1f2937}
.dark .plugin-icon{background:#1f2937}
.section-subhead {
display: block;
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--primary, #3b82f6);
margin-top: 3rem;
margin-bottom: 1.5rem;
position: relative;
padding-left: 15px;
}
.section-subhead::before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: var(--primary, #3b82f6);
border-radius: 2px;
}
@media(max-width:900px){.plugin-layout{grid-template-columns:1fr}.plugin-sidebar{position:relative;top:0}}
@media(max-width:768px){.plugin-showcase{padding:70px 0}.plugin-header h2{font-size:2.2rem}.plugin-features{grid-template-columns:1fr}.plugin-content{padding:26px}}
@media screen and (max-width: 991px) {
.hero-content {
grid-template-columns: 1fr;
gap: 30px;
text-align: center;
}
.hero-text h1, .hero-text h2 {
margin-top: 0;
}
.hero-text p {
margin-left: auto;
margin-right: auto;
}
.hero-buttons, .hero-stats {
justify-content: center;
}
.grid-3 {
grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 767px) {
.grid-2, .grid-3, .grid-4, .footer-grid {
grid-template-columns: 1fr;
}
.floating-share-preview {
right: 16px;
}
}