/* Modern Minimalist Theme - FixoTask */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafbfc;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 251, 252, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 8px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0ea5e9;
}

.nav-menu a::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #0ea5e9;
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-search {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-search:hover {
    background: #f1f5f9;
    color: #0ea5e9;
}

.nav-login {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-login:hover {
    color: #0ea5e9;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #64748b;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(250, 251, 252, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 0;
    gap: 30px;
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu.active a {
    font-size: 1.2rem;
    padding: 15px 0;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0ea5e9;
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #64748b;
    padding: 12px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
    background: #f0f9ff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-demo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    transition: all 0.3s ease;
}

.btn-demo:hover .demo-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    color: #0ea5e9;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid #bae6fd;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.05;
    color: #0f172a;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 520px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}

.hero-metrics {
    display: flex;
    gap: 40px;
}

.metric {
    text-align: left;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: #f0f9ff;
    color: #0ea5e9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid #bae6fd;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.solution-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.solution-card.featured {
    border-color: #0ea5e9;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
}

.solution-card.featured::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.solution-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f8fafc;
    color: #475569;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.card-1 {
    top: 20px;
    left: 20px;
    width: 200px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 120px;
    right: 40px;
    width: 180px;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 60px;
    left: 60px;
    width: 220px;
    animation: float 6s ease-in-out infinite 4s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.card-header span {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.card-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 1s ease-out 1s both;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    border: 2px solid white;
}

.user-avatar:nth-child(1) { background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%); }
.user-avatar:nth-child(2) { background: linear-gradient(135deg, #ddd6fe 0%, #8b5cf6 100%); }
.user-avatar:nth-child(3) { background: linear-gradient(135deg, #fecaca 0%, #ef4444 100%); }

.user-count {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin-left: 4px;
}

.card-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 94%;
    height: 100%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 4px;
    animation: progressFill 2s ease-out 1s both;
}

.card-progress span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

/* Solutions Section */
.solutions {
    padding: 140px 0;
    background: white;
    border-top: 1px solid #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0369a1;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #bae6fd;
    letter-spacing: 0.025em;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.solution-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #cbd5e1;
}

.solution-card.featured {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #bae6fd;
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.solution-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.solution-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Platform Section */
.platform {
    padding: 120px 0;
    background: #f8fafc;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.platform-info p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Code Window */
.code-window {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.window-header {
    background: #334155;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.window-title {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

.code-content {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.line-number {
    color: #64748b;
    width: 24px;
    text-align: right;
    margin-right: 16px;
    font-size: 0.8rem;
}

.code-text {
    color: #e2e8f0;
}

.keyword { color: #06b6d4; }
.variable { color: #fbbf24; }
.function { color: #a78bfa; }
.property { color: #34d399; }
.string { color: #fb7185; }

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: white;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.toggle-label {
    font-weight: 500;
    color: #64748b;
}

.discount {
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    display: block;
    width: 48px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-switch label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked + label {
    background: #0ea5e9;
}

.toggle-switch input:checked + label::after {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.pricing-card.featured {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, #f0f9ff 0%, white 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 20px 0;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-header p {
    color: #64748b;
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #64748b;
}

.feature i {
    color: #10b981;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 140px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #334155 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-logo .logo-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1rem;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section ul li a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
    border-radius: 6px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
}

.footer-section ul li a:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(51, 65, 85, 0.6);
    padding: 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height, 100%); }
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 94%; }
}

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

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Platform Section */
.platform {
    padding: 120px 0;
    background: #f8fafc;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-info {
    max-width: 500px;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px 0;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 8px;
}

.platform-visual {
    position: relative;
}

.code-window {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.window-header {
    background: #334155;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.window-title {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.code-content {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.line-number {
    color: #64748b;
    width: 30px;
    text-align: right;
    margin-right: 20px;
    font-size: 0.8rem;
}

.code-text {
    color: #e2e8f0;
}

.keyword { color: #8b5cf6; }
.variable { color: #06b6d4; }
.function { color: #10b981; }
.property { color: #f59e0b; }
.string { color: #ef4444; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .platform-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-demo {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    .hero-metrics {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .metric {
        text-align: center;
        min-width: 80px;
    }
    
    .visual-container {
        height: 350px;
        margin-top: 40px;
    }
    
    .solutions {
        padding: 80px 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .solution-card {
        padding: 32px 24px;
    }
    
    .platform {
        padding: 80px 0;
    }
    
    .platform-content {
        gap: 40px;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .code-window {
        margin-top: 40px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }
    
    .footer-section:first-child {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 24px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.05rem;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
    
    .nav-menu.active {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 30px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-grid {
        padding: 0 16px;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        gap: 12px;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-demo {
        max-width: 100%;
        padding: 14px 24px;
    }
    
    .hero-metrics {
        gap: 16px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .section-header {
        padding: 0 16px;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .solutions {
        padding: 60px 0;
    }
    
    .solutions-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .solution-card {
        padding: 24px 20px;
    }
    
    .solution-card h3 {
        font-size: 1.2rem;
    }
    
    .platform {
        padding: 60px 0;
    }
    
    .platform-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .code-content {
        padding: 16px;
        font-size: 0.8rem;
    }
    
    .visual-container {
        height: 300px;
        margin-top: 30px;
    }
    
    .card-1, .card-2, .card-3 {
        width: 140px;
        padding: 16px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 16px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 50px;
    }
    
    .footer-section:first-child {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 28px 0;
    }
}

/* Page-specific Hero Sections */
.features-hero,
.api-hero,
.about-hero,
.press-hero,
.blog-hero,
.help-hero,
.security-hero,
.legal-hero,
.careers-hero,
.compliance-hero,
.integrations-hero,
.pricing-hero,
.community-hero,
.status-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features-hero::before,
.api-hero::before,
.about-hero::before,
.press-hero::before,
.blog-hero::before,
.help-hero::before,
.security-hero::before,
.legal-hero::before,
.careers-hero::before,
.compliance-hero::before,
.integrations-hero::before,
.pricing-hero::before,
.community-hero::before,
.status-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.features-hero .container,
.api-hero .container,
.about-hero .container,
.press-hero .container,
.blog-hero .container,
.help-hero .container,
.security-hero .container,
.legal-hero .container,
.careers-hero .container,
.compliance-hero .container,
.integrations-hero .container,
.pricing-hero .container,
.community-hero .container,
.status-hero .container {
    position: relative;
    z-index: 2;
}

.features-hero .hero-content,
.api-hero .hero-content,
.about-hero .hero-content,
.press-hero .hero-content,
.blog-hero .hero-content,
.help-hero .hero-content,
.security-hero .hero-content,
.legal-hero .hero-content,
.careers-hero .hero-content,
.compliance-hero .hero-content,
.integrations-hero .hero-content,
.pricing-hero .hero-content,
.community-hero .hero-content,
.status-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.features-hero .hero-title,
.api-hero .hero-title,
.about-hero .hero-title,
.press-hero .hero-title,
.blog-hero .hero-title,
.help-hero .hero-title,
.security-hero .hero-title,
.legal-hero .hero-title,
.careers-hero .hero-title,
.compliance-hero .hero-title,
.integrations-hero .hero-title,
.pricing-hero .hero-title,
.community-hero .hero-title,
.status-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

/* Features Page Styles */
.feature-categories {
    padding: 80px 0;
    background: #ffffff;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    padding: 0 20px;
}

.feature-tab {
    padding: 16px 32px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    position: relative;
}

.feature-tab:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.feature-tab.active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.feature-category {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.feature-category.active {
    display: block;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0ea5e9;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-icon i {
    font-size: 28px;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

/* Feature Comparison Section */
.feature-comparison {
    padding: 80px 0;
    background: #f8fafc;
}

.feature-comparison .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.comparison-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

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

.comparison-table th {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: #ffffff;
    padding: 24px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
}

.comparison-table th:first-child {
    text-align: left;
    background: #1e293b;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1a1a1a;
    background: #f8fafc;
}

.comparison-table tr:hover td {
    background: rgba(14, 165, 233, 0.02);
}

.comparison-table tr:hover td:first-child {
    background: #f1f5f9;
}

.comparison-table .fas.fa-check {
    color: #10b981;
    font-size: 18px;
}

.comparison-table .fas.fa-times {
    color: #ef4444;
    font-size: 18px;
}

/* Enhanced CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: #ffffff;
    color: #0ea5e9;
    border: 2px solid #ffffff;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

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

/* API Page Styles */
.api-hero {
    position: relative;
    overflow: hidden;
}

.api-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.api-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.hero-code {
    position: relative;
}

.code-window {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #334155;
}

.code-header {
    background: #0f172a;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #334155;
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748b;
}

.code-dots span:nth-child(1) { background: #ef4444; }
.code-dots span:nth-child(2) { background: #f59e0b; }
.code-dots span:nth-child(3) { background: #10b981; }

.code-title {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.code-content {
    padding: 24px;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Quick Start Section */
.quickstart {
    padding: 100px 0;
    background: #f8fafc;
}

.quickstart-steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.code-block {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid #334155;
}

.code-block pre {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e2e8f0;
}

/* SDK Tabs */
.sdk-tabs {
    display: flex;
    gap: 8px;
    margin: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
}

.sdk-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.sdk-tab:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.sdk-tab.active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.sdk-content {
    position: relative;
}

.sdk-panel {
    display: none;
}

.sdk-panel.active {
    display: block;
}

/* API Reference Section */
.api-reference {
    padding: 100px 0;
    background: #ffffff;
}

.reference-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-top: 60px;
}

.reference-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.sidebar-section {
    margin-bottom: 32px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section li {
    margin-bottom: 8px;
}

.sidebar-section a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 6px 0;
}

.sidebar-section a:hover {
    color: #0ea5e9;
}

.reference-content {
    max-width: none;
}

.endpoint-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.endpoint-section:last-child {
    border-bottom: none;
}

.endpoint-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.endpoint-section > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.endpoint {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin: 24px 0;
}

.endpoint-header {
    background: #ffffff;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.method {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method.get {
    background: #dcfce7;
    color: #166534;
}

.method.post {
    background: #dbeafe;
    color: #1e40af;
}

.method.put {
    background: #fef3c7;
    color: #92400e;
}

.method.delete {
    background: #fee2e2;
    color: #991b1b;
}

.url {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #475569;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 6px;
    flex: 1;
}

.endpoint-body {
    padding: 24px;
}

.endpoint-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 0 16px 0;
}

.endpoint-body h4:first-child {
    margin-top: 0;
}

.params-table {
    margin: 20px 0;
    overflow-x: auto;
}

.params-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.params-table th {
    background: #f8fafc;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    border-bottom: 1px solid #e2e8f0;
}

.params-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    vertical-align: top;
}

.params-table td:first-child {
    font-family: 'JetBrains Mono', monospace;
    color: #0ea5e9;
    font-weight: 500;
}

.params-table td:nth-child(2) {
    color: #64748b;
    font-style: italic;
}

.params-table td:nth-child(3) {
    color: #475569;
}

/* Rate Limits Section */
.rate-limits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.limit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.limit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
}

.limit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.limit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 24px;
}

.limit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.limit-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.limit-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.limit-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0ea5e9;
}

.limit-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.features-hero .hero-description,
.api-hero .hero-description,
.about-hero .hero-description,
.press-hero .hero-description,
.blog-hero .hero-description,
.help-hero .hero-description,
.security-hero .hero-description,
.legal-hero .hero-description,
.careers-hero .hero-description,
.compliance-hero .hero-description,
.integrations-hero .hero-description,
.pricing-hero .hero-description,
.community-hero .hero-description,
.status-hero .hero-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Additional utility classes for better layouts */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.btn-full {
    width: 100%;
}

/* Fix for API stats and similar components */
.api-stats,
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* Pricing Plans Styles */
.pricing-plans {
    padding: 80px 0;
    background: #fafbfc;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border-color: #0ea5e9;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.plan-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.plan-features {
    margin-bottom: 32px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .fas.fa-check {
    color: #16a34a;
    font-size: 0.9rem;
}

.plan-features .fas.fa-times {
    color: #dc2626;
    font-size: 0.9rem;
}

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

.plan-action .btn-primary,
.plan-action .btn-secondary {
    width: 100%;
    padding: 16px 24px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.plan-action .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.plan-action .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Add-ons Section */
.addons {
    padding: 80px 0;
    background: white;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.addon-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.addon-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.addon-card:hover::before {
    transform: scaleX(1);
}

.addon-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.addon-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.addon-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 20px;
}

.addon-price .period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 80px 0;
    background: #fafbfc;
}

.faq-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0ea5e9;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0ea5e9;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #0ea5e9;
}

.faq-answer {
    padding: 0 24px 24px;
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Comparison Table Wrapper */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: #f8fafc;
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th:first-child {
    background: #0ea5e9;
    color: white;
    border-radius: 16px 0 0 0;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    background: #fafbfc;
}

.comparison-table tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.comparison-table tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.comparison-table .fas.fa-check {
    color: #16a34a;
    font-size: 1.1rem;
}

.comparison-table .fas.fa-times {
    color: #dc2626;
    font-size: 1.1rem;
}

/* Responsive Styles for Pricing Page */
@media (max-width: 768px) {
    .pricing-plans {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .plan-card.featured {
        transform: none;
        order: -1;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .plan-name {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .addons {
        padding: 60px 0;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .pricing-faq {
        padding: 60px 0;
    }
    
    .faq-grid {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .comparison-table-wrapper {
        margin: 20px;
        border-radius: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .comparison-table th:first-child {
        border-radius: 12px 0 0 0;
    }
    
    .comparison-table tr:last-child td:first-child {
        border-radius: 0 0 0 12px;
    }
    
    .comparison-table tr:last-child td:last-child {
        border-radius: 0 0 12px 0;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 32px 24px;
    }
    
    .plan-header {
        margin-bottom: 24px;
    }
    
    .plan-features {
        margin-bottom: 24px;
    }
    
    .addon-card {
        padding: 24px 20px;
    }
    
    .addon-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .comparison-table {
        min-width: 600px;
    }
}

/* Billing toggle styles */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
}

.discount-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#billing-toggle:checked + .toggle-slider {
    background: #0ea5e9;
}

#billing-toggle:checked + .toggle-slider::after {
    transform: translateX(24px);
}

/* Enhanced Page-Specific Styles */

/* Blog Page Styles */
.blog-search {
    margin-top: 40px;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #0284c7;
    transform: translateY(-50%) scale(1.05);
}

/* Featured Article */
.featured-article {
    padding: 80px 0;
    background: #fafbfc;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.featured-image {
    position: relative;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.image-placeholder {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.category {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.85rem;
    color: #64748b;
}

.read-more-btn {
    background: #0ea5e9;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Blog Categories */
.blog-categories {
    padding: 60px 0;
}

.category-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    border-color: #0ea5e9;
    background: #0ea5e9;
    color: white;
    transform: translateY(-2px);
}

/* Documentation Styles */
.docs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: calc(100vh - 80px);
    background: #fafbfc;
}

.docs-sidebar {
    background: white;
    border-right: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-content {
    padding: 40px 24px;
}

.docs-search {
    position: relative;
    margin-bottom: 32px;
}

.docs-search .search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    background: #f8fafc;
}

.docs-search i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.docs-nav .nav-section {
    margin-bottom: 32px;
}

.docs-nav h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.docs-nav ul {
    list-style: none;
    padding: 0;
}

.docs-nav li {
    margin-bottom: 4px;
}

.docs-nav a {
    display: block;
    padding: 8px 12px;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.docs-nav a:hover,
.docs-nav a.active {
    background: #f1f5f9;
    color: #0ea5e9;
    font-weight: 600;
}

/* Legal Pages Styles */
.legal-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: #64748b;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.content-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.toc-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.toc-sidebar h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

.toc-list a:hover {
    color: #0ea5e9;
}

.legal-main {
    max-width: none;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 16px;
}

.legal-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.legal-section li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Careers Page Styles */
.why-join {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    background: #fafbfc;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Status Page Styles */
.status-overview {
    padding: 80px 0;
    background: white;
}

.status-card {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.status-indicator {
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #16a34a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-weight: 600;
    color: #1a1a1a;
}

.service-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-status.operational {
    background: #dcfce7;
    color: #16a34a;
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.our-values {
    padding: 80px 0;
    background: #fafbfc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

.leadership {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    background: #fafbfc;
    padding: 40px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: #e2e8f0;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #94a3b8;
    font-size: 2.5rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.member-title {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-2px);
}

.company-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Enhanced Careers Page Styles */
.open-positions {
    padding: 80px 0;
    background: #fafbfc;
}

.job-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #0ea5e9;
    background: #0ea5e9;
    color: white;
    transform: translateY(-2px);
}

.job-listings {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0ea5e9;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.job-type {
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-details {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.job-location,
.job-department {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
}

.job-location i,
.job-department i {
    color: #94a3b8;
}

.job-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.job-skills {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-apply-btn {
    background: #0ea5e9;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.job-apply-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Help Center Page Styles */
.help-search {
    margin-top: 40px;
}

.quick-actions {
    padding: 80px 0;
    background: white;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.action-card {
    background: #fafbfc;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.action-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.5rem;
}

.action-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.action-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.action-link {
    background: #0ea5e9;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-link:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

.popular-articles {
    padding: 80px 0;
    background: #fafbfc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.article-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0ea5e9;
}

.article-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.article-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #0284c7;
}

/* Enhanced Status Page Styles */
.overall-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 32px;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-indicator.operational {
    width: 48px;
    height: 48px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.status-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 8px;
}

.status-text p {
    color: #16a34a;
    font-size: 1rem;
    margin: 0;
}

.current-status {
    padding: 80px 0;
    background: white;
}

.service-card {
    background: #fafbfc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

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

.service-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.operational {
    background: #dcfce7;
    color: #16a34a;
}

.status-badge.degraded {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.outage {
    background: #fee2e2;
    color: #dc2626;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 500;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.incident-history {
    padding: 80px 0;
    background: #fafbfc;
}

.incident-timeline {
    max-width: 800px;
    margin: 60px auto 0;
}

.incident-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.incident-item.resolved {
    border-left-color: #22c55e;
}

.incident-item.investigating {
    border-left-color: #f59e0b;
}

.incident-item.identified {
    border-left-color: #ef4444;
}

.incident-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}

.incident-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.incident-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.incident-status.resolved {
    background: #dcfce7;
    color: #16a34a;
}

.incident-status.investigating {
    background: #fef3c7;
    color: #d97706;
}

.incident-status.identified {
    background: #fee2e2;
    color: #dc2626;
}

.incident-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.incident-time {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Community Page Styles */
.community-features {
    padding: 80px 0;
    background: white;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.community-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.community-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.community-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.community-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.community-btn {
    background: #0ea5e9;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.community-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Responsive adjustments for page heroes */
@media (max-width: 768px) {
    .features-hero,
    .api-hero,
    .about-hero,
    .press-hero,
    .blog-hero,
    .help-hero,
    .security-hero,
    .legal-hero,
    .careers-hero,
    .compliance-hero,
    .integrations-hero,
    .pricing-hero,
    .community-hero,
    .status-hero {
        padding: 120px 0 60px;
    }
    
    .features-hero .hero-title,
    .api-hero .hero-title,
    .about-hero .hero-title,
    .press-hero .hero-title,
    .blog-hero .hero-title,
    .help-hero .hero-title,
    .security-hero .hero-title,
    .legal-hero .hero-title,
    .careers-hero .hero-title,
    .compliance-hero .hero-title,
    .integrations-hero .hero-title,
    .pricing-hero .hero-title,
    .community-hero .hero-title,
    .status-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .features-hero .hero-description,
    .api-hero .hero-description,
    .about-hero .hero-description,
    .press-hero .hero-description,
    .blog-hero .hero-description,
    .help-hero .hero-description,
    .security-hero .hero-description,
    .legal-hero .hero-description,
    .careers-hero .hero-description,
    .compliance-hero .hero-description,
    .integrations-hero .hero-description,
    .pricing-hero .hero-description,
    .community-hero .hero-description,
    .status-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .api-stats,
    .hero-stats {
        gap: 20px;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 12px;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-content {
        padding: 32px 24px;
    }
    
    .docs-layout {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .toc-sidebar {
        position: static;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .benefits-grid,
    .community-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-member {
        padding: 32px 20px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .photo-placeholder {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .job-filters {
        gap: 8px;
        margin: 32px 0 40px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .job-card {
        padding: 24px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .job-title {
        font-size: 1.2rem;
    }
    
    .job-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .story-content p {
        font-size: 1.1rem;
    }
    
    /* Press Page Responsive */
    .press-contact {
        flex-direction: column;
        gap: 16px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .news-card {
        padding: 24px;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-card:not(.featured) .news-title {
        font-size: 1.1rem;
    }
    
    .kit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .kit-card {
        padding: 24px;
    }
    
    /* Security Page Responsive */
    .security-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .security-shield {
        width: 150px;
        height: 180px;
    }
    
    .security-shield i {
        font-size: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .security-card {
        padding: 32px 24px;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
    
    .security-card h3 {
        font-size: 1.2rem;
    }
    
    /* Compliance Page Responsive */
    .compliance-highlights {
        flex-direction: column;
        gap: 16px;
    }
    
    .highlight-item {
        justify-content: center;
    }
    
    .compliance-chart {
        height: 250px;
    }
    
    .compliance-meter {
        width: 160px;
        height: 160px;
    }
    
    .meter-label {
        width: 120px;
        height: 120px;
    }
    
    .percentage {
        font-size: 2rem;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .standard-card {
        padding: 24px;
    }
    
    .standard-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .standard-card h3 {
        font-size: 1.2rem;
    }
    
    .standard-card:not(.featured) h3 {
        font-size: 1.1rem;
    }

    /* Features Page Responsive */
    .feature-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 40px;
    }

    .feature-tab {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 28px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .feature-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .feature-list li {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .feature-comparison {
        padding: 60px 0;
    }

    .feature-comparison .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .comparison-table {
        overflow-x: auto;
        border-radius: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 0.9rem;
    }

    .comparison-table th {
        font-size: 1rem;
    }

    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .cta p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta .btn-primary,
    .cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* API Page Tablet Responsive */
    .api-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .api-stats {
        justify-content: center;
        gap: 24px;
    }

    .stat {
        min-width: 140px;
        padding: 18px;
    }

    .quickstart {
        padding: 80px 0;
    }

    .step {
        padding: 32px;
    }

    .step-header {
        gap: 24px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .step h3 {
        font-size: 1.4rem;
    }

    .sdk-tabs {
        justify-content: center;
        gap: 12px;
    }

    .sdk-tab {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .reference-grid {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .reference-sidebar {
        padding: 28px;
    }

    .endpoint-header {
        padding: 18px 22px;
    }

    .endpoint-body {
        padding: 22px;
    }

    .params-table th,
    .params-table td {
        padding: 10px 14px;
    }

    .limits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 28px;
    }

    .limit-card {
        padding: 28px;
    }

    .limit-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .code-header {
        padding: 14px 18px;
    }

    .code-content {
        padding: 20px;
    }

    .code-content pre {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .value-card,
    .team-member {
        padding: 24px 16px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-skills {
        gap: 6px;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    /* Help Center Responsive */
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .action-card {
        padding: 24px 16px;
    }

    .action-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-card {
        padding: 16px;
    }

    /* Status Page Responsive */
    .overall-status {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }

    .status-indicator.operational {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .status-text h2 {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .service-header h3 {
        font-size: 1.1rem;
    }

    .service-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .metric {
        padding: 12px;
    }

    .metric-value {
        font-size: 1rem;
    }

    .incident-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .incident-title {
        font-size: 0.95rem;
    }

    .incident-item {
        padding: 16px;
    }

    /* Features Page Responsive */
    .feature-categories {
        padding: 60px 0;
    }

    .feature-tabs {
        padding: 0 10px;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 8px;
        border-bottom: none;
    }

    .feature-tab {
        padding: 10px 16px;
        font-size: 0.95rem;
        border-radius: 8px;
        border-bottom: none;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .feature-card {
        padding: 20px;
        border-radius: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .feature-list li {
        font-size: 0.85rem;
        padding: 5px 0;
        padding-left: 20px;
    }

    .feature-comparison {
        padding: 50px 0;
    }

    .feature-comparison .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .comparison-table {
        overflow-x: auto;
        border-radius: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .comparison-table th {
        font-size: 0.9rem;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta .btn-primary,
    .cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
        text-align: center;
    }

    /* API Page Responsive */
    .api-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .api-stats {
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        min-width: 200px;
        padding: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .quickstart {
        padding: 60px 0;
    }

    .step {
        padding: 24px;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .sdk-tabs {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .sdk-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .reference-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reference-sidebar {
        position: static;
        order: 2;
        padding: 24px;
    }

    .endpoint-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }

    .method {
        align-self: flex-start;
    }

    .url {
        word-break: break-all;
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .endpoint-body {
        padding: 20px;
    }

    .params-table {
        font-size: 0.8rem;
    }

    .params-table th,
    .params-table td {
        padding: 8px 12px;
    }

    .limits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .limit-card {
        padding: 24px;
    }

    .limit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .limit-number {
        font-size: 1.5rem;
    }

    .code-window {
        border-radius: 12px;
    }

    .code-header {
        padding: 12px 16px;
    }

    .code-content {
        padding: 16px;
    }

    .code-content pre {
        font-size: 0.8rem;
    }
}

/* Press Page Styles */
.press-contact {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.latest-news {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.news-card {
    background: #fafbfc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.news-card.featured {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border: none;
}

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

.news-type {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-card:not(.featured) .news-type {
    background: #0ea5e9;
    color: white;
}

.news-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.news-card:not(.featured) .news-date {
    color: #64748b;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: white;
}

.news-card:not(.featured) .news-title {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.news-card:not(.featured) .news-excerpt {
    color: #64748b;
    font-size: 0.95rem;
}

.news-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.news-link:hover {
    opacity: 0.8;
}

.news-card:not(.featured) .news-link {
    color: #0ea5e9;
}

.press-kit {
    padding: 80px 0;
    background: #fafbfc;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.kit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.kit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0ea5e9;
}

.kit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 1.5rem;
}

.kit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.kit-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.kit-download {
    background: #0ea5e9;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.kit-download:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Security Page Styles */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.security-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    position: relative;
    width: 200px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shield-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #0ea5e9;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

.shield-layer:nth-child(2) {
    animation-delay: 1s;
    transform: scale(0.8);
}

.shield-layer:nth-child(3) {
    animation-delay: 2s;
    transform: scale(0.6);
}

.security-shield i {
    font-size: 3rem;
    color: #0ea5e9;
    z-index: 10;
    position: relative;
}

.security-overview {
    padding: 80px 0;
    background: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.security-card {
    background: #fafbfc;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 1.5rem;
}

.security-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.security-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.security-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-card li {
    color: #64748b;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 24px;
}

.security-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.security-card li:last-child {
    border-bottom: none;
}

/* Compliance Page Styles */
.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.compliance-highlights {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.compliance-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.compliance-meter {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#0ea5e9 0deg 352.8deg, #e2e8f0 352.8deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-label {
    text-align: center;
    background: white;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
    display: block;
}

.label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.compliance-standards {
    padding: 80px 0;
    background: white;
}

.standards-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.standard-card {
    background: #fafbfc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.standard-card.featured {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border: none;
}

.standard-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.standard-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.standard-card:not(.featured) .standard-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

.standard-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.standard-card:not(.featured) h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.standard-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.standard-card:not(.featured) p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Authentication Pages */
.auth-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.auth-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 160px);
}

/* Auth Branding */
.auth-branding {
    padding: 40px;
}

.branding-content {
    max-width: 500px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.brand-logo-img {
    width: 40px;
    height: 40px;
}

.brand-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.auth-branding h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.auth-branding p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Auth Stats */
.auth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #7877c6;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Auth Features */
.auth-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7877c6, #9b59b6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #ffffff;
    font-size: 1.1rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.feature-content p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

/* Signup Benefits */
.signup-benefits {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-benefits h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #b0b0b0;
}

.benefits-list i {
    color: #7877c6;
    font-size: 0.9rem;
}

/* Testimonial */
.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content i {
    color: #7877c6;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #e0e0e0;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7877c6, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: #ffffff;
    font-size: 1.1rem;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.85rem;
    color: #888;
}

/* Auth Form Container */
.auth-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.form-header p {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
}

/* Form Styles */
.login-form,
.signup-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #888;
    font-size: 1rem;
    z-index: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7877c6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-left: 15px;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: #7877c6;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4757, #ffa502, #2ed573);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.8rem;
    color: #888;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Checkbox Wrapper */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.4;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: #7877c6;
    border-color: #7877c6;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-wrapper a {
    color: #7877c6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-wrapper a:hover {
    color: #9b59b6;
}

/* Forgot Password */
.forgot-password {
    color: #7877c6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #9b59b6;
}

/* Button Styles */
.btn-full {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
}

/* Auth Divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    color: #888;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 1.1rem;
}

.google-btn:hover {
    border-color: #db4437;
}

.github-btn:hover {
    border-color: #333;
}

.microsoft-btn:hover {
    border-color: #0078d4;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-bottom: 30px;
}

.auth-footer p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.signup-link,
.login-link {
    color: #7877c6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-link:hover,
.login-link:hover {
    color: #9b59b6;
}

/* Contact Sales */
.contact-sales {
    margin-top: 20px;
}

.sales-card {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(155, 89, 182, 0.1));
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.sales-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7877c6, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.sales-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.sales-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.sales-content p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.contact-sales-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #7877c6, #9b59b6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-sales-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(120, 119, 198, 0.4);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 30px;
}

.sales-form .form-group {
    margin-bottom: 20px;
}

.sales-form input,
.sales-form select,
.sales-form textarea {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
}

.sales-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Auth Responsive Design */
@media (max-width: 1024px) {
    .auth-grid {
        gap: 40px;
    }
    
    .auth-branding {
        padding: 20px;
    }
    
    .auth-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .auth-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .auth-branding {
        order: 2;
        padding: 20px 0;
    }
    
    .auth-form-container {
        order: 1;
    }
    
    .auth-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .social-login {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sales-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 60px 0 20px;
    }
    
    .auth-container {
        padding: 0 15px;
    }
    
    .auth-form {
        padding: 25px 20px;
    }
    
    .form-header h1 {
        font-size: 1.6rem;
    }
    
    .auth-branding h3 {
        font-size: 1.8rem;
    }
    
    .auth-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: left;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}