/* SHARED STYLES for all inner pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #fff; line-height: 1.6; }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(15,23,42,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { max-width: 80rem; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.header-logo { font-size: 1.25rem; font-weight: 800; color: #fff; text-decoration: none; }
.btn-ghost { background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem 0.75rem; border-radius: 0.5rem; transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; text-decoration: none; }
.btn-ghost:hover { color: var(--accent, #22d3ee); }
.btn-primary { background: linear-gradient(135deg, #06b6d4, #3b82f6); color: #fff; border: none; padding: 0.5rem 1.25rem; border-radius: 0.5rem; cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: opacity 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { opacity: 0.88; }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-white { background: #fff; color: var(--accent-dark, #0ea5e9); }
.btn-dark { background: #0f172a; color: #fff; }
.btn-outline-dark { background: #1e293b; color: #fff; border: none; }

.page-wrap { min-height: 100vh; }
.pt-header { padding-top: 5rem; }

.max-w-5xl { max-width: 64rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }
.max-w-7xl { max-width: 80rem; margin: 0 auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.badge { display: inline-block; border-radius: 9999px; padding: 0.3rem 0.9rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1rem; border: 1px solid; }

.section { padding: 3rem 1.5rem; }
.section-title { font-size: 1.9rem; font-weight: 800; margin-bottom: 0.5rem; }
.section-sub { color: #94a3b8; margin-bottom: 2rem; font-size: 0.95rem; }

.hero-section { padding: 7rem 1.5rem 3rem; }
.hero-section h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }

.card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 1rem; }
.card-body { padding: 1.5rem; }
.card-body-lg { padding: 2rem; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: 1 / -1; }
@media(max-width:640px) { .col-span-2, .col-span-3 { grid-column: span 1; } }

.icon-circle { width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.25rem; }

.process-step { display: flex; align-items: flex-start; gap: 1rem; }
.step-num { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; }
.step-content h4 { font-weight: 700; margin-bottom: 0.2rem; }
.step-content p { color: #94a3b8; font-size: 0.875rem; }

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: #94a3b8; }
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 0.45rem; }

.cta-block { border-radius: 1rem; padding: 2rem; text-align: center; }
.cta-block h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-block p { margin-bottom: 1.25rem; opacity: 0.9; font-size: 0.95rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.duration-num { font-size: 2rem; font-weight: 800; }

footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 2rem 1.5rem; text-align: center; color: #64748b; font-size: 0.85rem; }
