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

:root {
    --bg: #faf7f2;
    --bg-card: #ffffff;
    --text: #1a1a1a;
    --text-soft: #6b6560;
    --purple: #7c5cbf;
    --purple-soft: #f0ebf8;
    --border: #ebe6df;
    --radius: 16px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

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

/* Header */
.header {
    background: #faf7f2;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 42px;
    height: 42px;
    background: var(--purple);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--text-soft);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-soft);
    cursor: default;
    opacity: 0.7;
}

/* Hero */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(250,247,242,0.92) 0%, rgba(250,247,242,0.6) 45%, rgba(120,100,80,0.35) 100%),
        linear-gradient(135deg, #e8ddd0 0%, #c4b5a5 50%, #9a8b7a 100%);
}

.hero-content {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    z-index: 1;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
    margin-bottom: 20px;
}

.badge-live .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 520px;
}

.hero h1 em {
    font-style: italic;
    color: var(--purple);
}

.hero-desc {
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 400px;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Steps */
.steps-section {
    padding: 48px 0 80px;
}

.steps-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step-pill {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    background: white;
    border: 1px solid var(--border);
    color: var(--text-soft);
}

.step-pill.active {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--purple);
    margin-bottom: 4px;
}

.step-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
}

.step-note {
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Professionals */
.professionals {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.pro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.pro-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 3px solid #f0ebe5;
}

.pro-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pro-card p {
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* Demo note */
.demo-note {
    background: #fff8e6;
    border: 1px solid #f0e0b0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.9rem;
    color: #5c4a1a;
    text-align: center;
}

.demo-note a {
    color: var(--purple);
    font-weight: 500;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.footer .small {
    font-size: 0.8rem;
    margin-top: 6px;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .professionals {
        grid-template-columns: repeat(2, 1fr);
    }
}
