@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --navy: #0f172a;
  --navy2: #1e293b;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-light: #60a5fa;
  --accent: #06b6d4;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #334155;
  --card: #1e293b;
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(15,23,42,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51,65,85,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; }
.nav-logo .logo-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo .logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--blue); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59,130,246,0.4); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 5% 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 50%, #0f172a 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://picsum.photos/id/180/1920/1080');
  background-size: cover; background-position: center;
  opacity: 0.08;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); color: var(--blue-light); padding: 0.375rem 0.875rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; }
h1 span { background: linear-gradient(135deg, var(--blue-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-item { text-align: left; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.hero-img { position: relative; }
.hero-img .img-main { border-radius: 16px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); width: 100%; height: 420px; object-fit: cover; }
.hero-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 12px;
}
.float-icon { width: 40px; height: 40px; background: rgba(6,182,212,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.float-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.float-text strong { display: block; font-size: 0.9rem; font-weight: 700; }
.float-text span { font-size: 0.78rem; color: var(--text-muted); }

/* SECTIONS */
section { padding: 80px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { text-align: center; color: var(--blue-light); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 4rem; }

/* FEATURES */
.features-bg { background: linear-gradient(180deg, var(--navy) 0%, #111827 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: transform 0.2s, border-color 0.2s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.feature-icon { width: 52px; height: 52px; background: rgba(59,130,246,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feature-icon svg { width: 26px; height: 26px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 1.25rem; }
.plan-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.5rem; position: relative; transition: transform 0.2s, border-color 0.2s; }
.plan-card:hover { transform: translateY(-4px); }
.plan-card.popular { border-color: var(--blue); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.85rem; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.plan-storage { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.25rem; }
.plan-price { font-size: 1.1rem; font-weight: 700; color: var(--blue-light); margin-bottom: 1.25rem; }
.plan-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.plan-features { list-style: none; margin-bottom: 1.5rem; }
.plan-features li { font-size: 0.85rem; color: var(--text-muted); padding: 0.3rem 0; display: flex; align-items: center; gap: 8px; }
.plan-features li::before { content: "✓"; color: var(--blue-light); font-weight: 700; flex-shrink: 0; }
.plan-btn { display: block; text-align: center; width: 100%; padding: 0.625rem; border-radius: 8px; font-size: 0.875rem; font-weight: 600; border: 1px solid var(--border); color: var(--text-muted); transition: all 0.2s; }
.plan-btn:hover, .plan-card.popular .plan-btn { background: var(--blue); border-color: var(--blue); color: white; }

/* SECURITY */
.security-bg { background: #111827; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.security-img { border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4); width: 100%; height: 380px; object-fit: cover; }
.security-points { display: flex; flex-direction: column; gap: 1.5rem; }
.sec-point { display: flex; gap: 1rem; }
.sec-icon { width: 44px; height: 44px; background: rgba(59,130,246,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sec-icon svg { width: 22px; height: 22px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; }
.sec-point h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.sec-point p { font-size: 0.85rem; color: var(--text-muted); }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 1rem; }
.testi-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-name { font-size: 0.875rem; font-weight: 700; }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #1d3461, #1e3a5f); border: 1px solid rgba(59,130,246,0.2); border-radius: 20px; text-align: center; padding: 4rem 2rem; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* FOOTER */
footer { background: #080e1a; border-top: 1px solid var(--border); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin-top: 1rem; max-width: 300px; }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.8rem; }

/* AUTH PAGES */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { background: linear-gradient(135deg, #0f172a, #1a2744); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 4rem; }
.auth-visual::before { content: ''; position: absolute; inset: 0; background-image: url('https://picsum.photos/id/683/800/1200'); background-size: cover; opacity: 0.15; }
.auth-visual-content { position: relative; text-align: center; }
.auth-visual h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.auth-visual p { color: var(--text-muted); }
.auth-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.auth-feat-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.auth-feat-item svg { width: 18px; height: 18px; stroke: var(--blue-light); fill: none; stroke-width: 2; flex-shrink: 0; }
.auth-form-side { background: var(--navy2); display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; }
.auth-form-box { width: 100%; max-width: 420px; }
.auth-logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; margin-bottom: 2.5rem; }
.auth-logo .logo-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.auth-logo .logo-icon svg { width: 20px; height: 20px; fill: white; }
.auth-form-box h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.auth-form-box .sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
input[type=text], input[type=email], input[type=password], select {
  width: 100%; padding: 0.75rem 1rem; background: var(--navy); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s;
}
input:focus, select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.4rem; }
.form-footer { margin-top: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--text-muted); }
.form-footer a { color: var(--blue-light); font-weight: 600; }
.form-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--text-muted); font-size: 0.8rem; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.password-wrap { position: relative; }
.password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; }
.auth-btn { width: 100%; padding: 0.875rem; font-size: 1rem; }
.plan-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.5rem; }
.plan-option { position: relative; }
.plan-option input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.plan-option label {
  display: block; padding: 0.75rem; border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; transition: all 0.2s; font-size: 0.82rem; font-weight: 600;
}
.plan-option input:checked + label { border-color: var(--blue); background: rgba(59,130,246,0.1); color: var(--blue-light); }
.plan-storage-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; display: block; }

/* DASHBOARD LOADING */
.dash-loading { min-height: 100vh; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem; }
.spinner { width: 48px; height: 48px; border: 3px solid var(--border); border-top-color: var(--blue); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .security-grid { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plan-selector { grid-template-columns: 1fr; }
}

/* === INNER PAGE COMPONENTS === */

/* Fix all form inputs to match dark theme */
input[type=tel], input[type=number], input[type=search], textarea, select {
  width: 100%; padding: 0.75rem 1rem; background: var(--navy); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s;
}
input[type=tel]:focus, input[type=number]:focus, input[type=search]:focus,
textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px; padding-right: 2.5rem; cursor: pointer; }
select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }

/* PAGE HERO */
.page-hero { padding: 160px 5% 60px; background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; text-align: left; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; }

/* LEGAL PAGES */
.legal-page { padding: 160px 5% 80px; }
.legal-container { max-width: 780px; margin: 0 auto; }
.legal-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.legal-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; text-align: left; }
.legal-meta { color: var(--text-muted); font-size: 0.875rem; }
.legal-body h2 { font-size: 1.15rem; font-weight: 700; margin: 2.5rem 0 1rem; }
.legal-body h3 { font-size: 0.95rem; font-weight: 700; margin: 1.5rem 0 0.6rem; }
.legal-body p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.8; }
.legal-body ul, .legal-body ol { color: var(--text-muted); font-size: 0.875rem; padding-left: 1.5rem; margin-bottom: 1rem; line-height: 1.8; }
.legal-body li { margin-bottom: 0.35rem; }
.legal-body a { color: var(--blue-light); }
.legal-toc { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; }
.legal-toc h4 { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.legal-toc ol { padding-left: 1.25rem; }
.legal-toc li { font-size: 0.82rem; margin-bottom: 0.35rem; }
.legal-toc a { color: var(--blue-light); }

/* ALERTS */
.alert { padding: 0.875rem 1rem; border-radius: 8px; font-size: 0.875rem; margin-bottom: 1.25rem; display: none; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }


/* STATUS PAGE */
.status-overall { display: flex; align-items: center; gap: 16px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); border-radius: var(--radius); padding: 1.25rem 1.75rem; margin-bottom: 2.5rem; }
.status-dot-lg { width: 12px; height: 12px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); flex-shrink: 0; }
.status-overall strong { font-size: 1rem; }
.status-overall span { font-size: 0.85rem; color: var(--text-muted); }
.status-group { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.status-group-header { padding: 0.875rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.status-row { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1.5rem; border-bottom: 1px solid rgba(51,65,85,0.4); }
.status-row:last-child { border-bottom: none; }
.status-row-name { font-size: 0.875rem; }
.status-badge { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: #22c55e; }
.status-badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: rgba(59,130,246,0.12); color: var(--blue-light); font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 100px; margin-bottom: 0.75rem; }
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; flex: 1; line-height: 1.65; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; color: var(--text-muted); margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-author-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.blog-read-more { display: inline-block; margin-top: 0.75rem; color: var(--blue-light); font-size: 0.85rem; font-weight: 600; }
.blog-read-more:hover { text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.125rem 1.5rem; cursor: pointer; font-size: 0.9rem; font-weight: 600; user-select: none; gap: 1rem; }
.faq-question:hover { color: var(--blue-light); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.2s; stroke: currentColor; fill: none; stroke-width: 2; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.875rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* CAREERS */
.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; transition: border-color 0.2s; }
.job-card:hover { border-color: var(--blue); }
.job-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.job-meta { display: flex; gap: 0.75rem; font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; }
.job-tag { background: rgba(59,130,246,0.1); color: var(--blue-light); border-radius: 100px; padding: 0.2rem 0.65rem; font-size: 0.75rem; font-weight: 600; }
.job-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }


/* DOCS */
.docs-body h2 { font-size: 1.3rem; font-weight: 800; margin: 2.5rem 0 1rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.docs-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.docs-body h3 { font-size: 0.95rem; font-weight: 700; margin: 1.5rem 0 0.6rem; }
.docs-body p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.8; }
.docs-body ul { color: var(--text-muted); font-size: 0.875rem; padding-left: 1.5rem; margin-bottom: 1rem; line-height: 1.8; }
pre { background: #0d1117; border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; margin: 1rem 0 1.5rem; overflow-x: auto; }
code { font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace; font-size: 0.8rem; color: #e2e8f0; line-height: 1.6; }
.inline-code { background: rgba(59,130,246,0.1); color: var(--blue-light); padding: 0.15rem 0.45rem; border-radius: 4px; font-size: 0.82rem; font-family: 'Cascadia Code', monospace; }
.method-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 5px; font-size: 0.72rem; font-weight: 700; margin-right: 0.5rem; font-family: monospace; }
.method-get { background: rgba(34,197,94,0.15); color: #4ade80; }
.method-post { background: rgba(59,130,246,0.15); color: var(--blue-light); }
.method-delete { background: rgba(239,68,68,0.15); color: #f87171; }
.endpoint-row { display: flex; align-items: center; padding: 0.75rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 0.75rem; font-size: 0.875rem; gap: 0.5rem; }
.endpoint-path { font-family: monospace; color: var(--text); }
.endpoint-desc { margin-left: auto; color: var(--text-muted); font-size: 0.78rem; }

/* CONTACTS */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block { display: flex; gap: 1rem; }
.contact-icon { width: 44px; height: 44px; background: rgba(59,130,246,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; }
.contact-block h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-block p, .contact-block a { font-size: 0.85rem; color: var(--text-muted); display: block; }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.contact-form h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; transition: transform 0.2s; }
.team-card:hover { transform: translateY(-3px); }
.team-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 2px solid var(--border); }
.team-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.value-num { font-size: 1.75rem; font-weight: 800; background: linear-gradient(135deg, var(--blue-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
.value-label { font-size: 0.82rem; color: var(--text-muted); }

/* BUSINESS */
.biz-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.biz-feature { display: flex; gap: 1rem; padding: 1.25rem; background: var(--card); border: 1px solid var(--border); border-radius: 10px; }
.biz-feature-icon { width: 40px; height: 40px; background: rgba(59,130,246,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.biz-feature-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; }
.biz-feature h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.biz-feature p { font-size: 0.82rem; color: var(--text-muted); }

/* PRESS */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; }
.press-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.press-logo { font-size: 1rem; font-weight: 800; color: var(--text-muted); margin-bottom: 0.75rem; }
.press-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; font-style: italic; line-height: 1.6; }
.press-date { font-size: 0.75rem; color: var(--text-muted); }

/* COMMUNITY */
.community-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.community-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: transform 0.2s, border-color 0.2s; }
.community-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.community-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.community-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.community-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.community-stat { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }

