:root {
    --bg: #fff7fb;
    --bg-soft: #ffeaf4;
    --card: rgba(255, 255, 255, 0.92);
    --text: #2b2030;
    --muted: #74607e;
    --primary: #e75ca8;
    --primary-dark: #c9408f;
    --border: rgba(231, 92, 168, 0.16);
    --shadow: 0 18px 60px rgba(150, 64, 114, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #fff7fb;
    color: var(--text);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.bg-blobs span {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(40px);
    opacity: .55;
    pointer-events: none;
}
.bg-blobs span:nth-child(1) { width: 240px; height: 240px; top: 10%; left: -60px; background: #ffd1e5; }
.bg-blobs span:nth-child(2) { width: 200px; height: 200px; top: 45%; right: -50px; background: #ffb8d8; }
.bg-blobs span:nth-child(3) { width: 180px; height: 180px; bottom: 10%; left: 20%; background: #ffc6ea; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(255, 247, 251, 0.72);
    border-bottom: 1px solid rgba(255,255,255,.6);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
    width: 52px; height: 52px; object-fit: contain; border-radius: 14px;
    box-shadow: var(--shadow); background: white;
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; font-size: .85rem; color: var(--muted); }
.contact-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.contact-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { font-weight: 600; color: var(--muted); }
.nav a:hover { color: var(--primary-dark); }

.hero { padding: 72px 0 36px; }
.hero-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 28px;
    align-items: center;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
    border-radius: 999px; background: var(--bg-soft); color: var(--primary-dark);
    font-weight: 700; font-size: .85rem;border: 1px solid rgba(255, 173, 217, 0.5);
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 14px; }
.hero-copy h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); margin-top: 16px; }
.hero-copy p, .section p { color: var(--muted); font-size: 1.03rem; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
    padding: 0 18px; border-radius: 14px; font-weight: 700; border: 0; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff7abf);
    color: white;
    box-shadow: 0 12px 25px rgba(231, 92, 168, 0.28);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-secondary {
    background: white; border: 1px solid var(--border); color: var(--text);
}

.hero-points {
    display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0;
}
.hero-points li, .notice, .contact-card, .thanks-card, .auth-card, .card, .hero-card, .wizard, .table-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.hero-points li {
    padding: 10px 14px; border-radius: 999px; color: var(--primary-dark); font-weight: 600;
}
.hero-card { border-radius: 28px; padding: 22px; }
.hero-card-top { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.hero-card-top img {
    width: 72px; height: 72px; object-fit: contain; border-radius: 18px; background: white; padding: 10px;
}
.hero-card-top h2 { font-size: 1.5rem; margin-bottom: 8px; }
.hero-card-top p { margin: 0; color: var(--muted); }
.mini-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.mini-stats div {
    padding: 16px 14px; border-radius: 20px; background: linear-gradient(180deg, #fff, #fff6fb);
    border: 1px solid rgba(231, 92, 168, 0.12);
}
.mini-stats strong, .mini-stats span { display: block; }
.mini-stats span { color: var(--muted); font-size: .9rem; margin-top: 4px; }

.section { padding: 46px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255, 234, 244, .58)); }
.section-heading { margin-bottom: 22px; }
.section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); }

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.card { border-radius: 24px; padding: 22px; }
.card p { margin: 0; }

.wizard { border-radius: 30px; padding: 24px; }
.wizard-progress {
    width: 100%; height: 10px; border-radius: 999px; background: #f4dce9; overflow: hidden; margin-bottom: 14px;
}
.wizard-progress-bar {
    width: 25%; height: 100%; background: linear-gradient(90deg, var(--primary), #ff8bc7);
    border-radius: inherit; transition: width .25s ease;
}
.wizard-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 22px;
}
.wizard-steps span {
    text-align: center; padding: 10px 12px; border-radius: 14px; background: #fff3f8;
    color: var(--muted); font-size: .9rem; font-weight: 600;
}
.wizard-steps span.active { background: #ffd7ea; color: var(--primary-dark); }

.wizard-step { display: none; gap: 16px; }
.wizard-step.active { display: grid; }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
label { display: grid; gap: 8px; font-weight: 700; font-size: .95rem; }
input, select, textarea {
    width: 100%;
    border: 1px solid rgba(116, 96, 126, 0.22);
    background: white;
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: rgba(231, 92, 168, 0.55);
    box-shadow: 0 0 0 4px rgba(231, 92, 168, 0.11);
}
.consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
}
.consent input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
}
.notice {
    padding: 14px 16px;
    border-radius: 18px;
    color: var(--primary-dark);
    font-weight: 600;
}
.wizard-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.hidden { display: none !important; }

.contact-grid { align-items: stretch; }
.contact-card, .auth-card, .thanks-card {
    border-radius: 28px;
    padding: 26px;
}
.contact-card p { margin: 0 0 10px; }

.site-footer {
    padding: 26px 0 36px;
    color: var(--muted);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(231, 92, 168, 0.14);
    padding-top: 18px;
    flex-wrap: wrap;
}
.thanks-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.auth-wrap {
    display: grid;
    place-items: center;
}
.auth-card {
    width: min(520px, 100%);
    display: grid;
    gap: 16px;
}
.error {
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffe5ec;
    color: #9c2555;
    font-weight: 700;
}
.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.table-wrap {
    overflow-x: auto;
    border-radius: 26px;
}
.leads-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
    background: white;
}
.leads-table th, .leads-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(231, 92, 168, 0.12);
    text-align: left;
    vertical-align: top;
    font-size: .93rem;
}
.leads-table th { background: #fff0f7; }
.small { color: var(--muted); font-size: .92rem; }
@media (max-width: 960px) {
    .hero-grid, .contact-grid, .cards { grid-template-columns: 1fr; }
    .mini-stats { grid-template-columns: 1fr; }
    .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .container { width: min(100% - 22px, 1120px); }
    .header-inner, .dashboard-top, .footer-inner { flex-direction: column; align-items: flex-start; }
    .nav { gap: 12px; }
    .cards, .grid-2, .wizard-steps { grid-template-columns: 1fr; }
    .wizard-actions { flex-direction: column; }
    .hero { padding-top: 40px; }
}
