:root {
    --primary-color: #c026d3;
    --primary-light: #fdf4ff;
    --secondary-color: #ec4899;
    --accent-color: #0ea5e9;
    --accent-hover: #0284c7;
    --success-color: #22c55e;
    --bg-color: #fdf2f8;
    --card-bg: #ffffff;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --warning-bg: #fef08a;
    --warning-text: #854d0e;
}

/* Social proof */
.social-proof {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: -8px;
}

/* CTA pulse ring */
@keyframes ctaPulseRing {
    0%, 100% { box-shadow: 0 10px 20px -5px rgba(14,165,233,0.4), 0 0 0 0 rgba(14,165,233,0.4); }
    50%       { box-shadow: 0 10px 20px -5px rgba(14,165,233,0.4), 0 0 0 8px rgba(14,165,233,0); }
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.5;
}

.background-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 24px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.card {
    background-color: var(--card-bg);
    width: 100%;
    border-radius: 32px;
    padding: 32px 24px;
    box-shadow: 0 20px 40px -10px rgba(192, 38, 211, 0.15), 0 10px 20px -5px rgba(236, 72, 153, 0.10);
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar-container {
    position: relative;
    margin-bottom: 16px;
    width: 128px;
    height: 128px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* Force circular — overrides WordPress/Elementor/theme styles */
img.avatar,
.avatar-container img,
.avatar-container img.avatar {
    width: 128px !important;
    height: 128px !important;
    min-width: 128px !important;
    min-height: 128px !important;
    max-width: 128px !important;
    max-height: 128px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border: 4px solid var(--primary-color) !important;
    padding: 2px !important;
    background-color: var(--card-bg) !important;
    box-shadow: 0 8px 16px -4px rgba(192, 38, 211, 0.25) !important;
    transition: transform 0.3s ease;
    display: block !important;
}

.avatar-container:hover img { transform: scale(1.05); }

.bow-decorator {
    position: absolute;
    top: -12px; right: -12px;
    width: 48px; height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    z-index: 2;
    transform: rotate(15deg);
    animation: floating 3s ease-in-out infinite;
}

.bow-decorator svg { width: 32px; height: 32px; }

.name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.status-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0fdf4;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid #bbf7d0;
    margin-bottom: 14px;
}

.status-indicator { position: relative; width: 10px; height: 10px; }

.status-dot {
    position: absolute;
    inset: 0;
    background-color: var(--success-color);
    border-radius: 50%;
    z-index: 2;
}

.status-pulse {
    position: absolute;
    top: -4px; left: -4px;
    width: 18px; height: 18px;
    background-color: var(--success-color);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s ease-out infinite;
}

.status-text { font-size: 14px; font-weight: 600; color: #166534; }

.response-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    background-color: #f3f4f6;
    padding: 8px 16px;
    border-radius: 12px;
}

.cta-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    width: 100%;
    background-color: var(--accent-color) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none !important;
    animation: ctaPulseRing 2.5s ease-in-out infinite;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

.cta-button:hover {
    transform: translateY(-4px);
    background-color: var(--accent-hover) !important;
    color: #fff !important;
}

.cta-button:active { transform: translateY(0); }
.cta-button svg { flex-shrink: 0; animation: bounceRight 2s ease-in-out infinite; }

.how-it-works {
    background-color: var(--primary-light);
    border-radius: 20px;
    padding: 24px;
}

.how-it-works h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.steps-list { list-style: none; display: flex; flex-direction: column; gap: 16px; padding: 0; margin: 0; }
.step-item { display: flex; align-items: center; gap: 14px; }

.step-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(192, 38, 211, 0.2);
}

.step-item span { font-size: 15px; font-weight: 500; color: var(--text-main); }

.disclaimer-box {
    background-color: var(--warning-bg);
    border-radius: 16px;
    padding: 20px;
    border: 1px dashed #ca8a04;
}

.disclaimer-box h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--warning-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.disclaimer-box h3::before { content: '⚠️'; }
.disclaimer-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }

.disclaimer-box li {
    font-size: 13px;
    color: var(--warning-text);
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}

.disclaimer-box li::before { content: '•'; position: absolute; left: 0; color: #a16207; font-weight: bold; }

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-align: center;
}

.footer-links { display: flex; align-items: center; gap: 12px; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--primary-color); text-decoration: underline; }
.footer p { font-size: 12px; margin: 0; }

/* Legal pages */
.legal-content h1 { font-size: 24px; font-weight: 700; color: var(--primary-color); margin-bottom: 4px; text-align: center; }
.legal-content .last-updated { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 24px; display: block; }
.legal-content h2 { font-size: 15px; font-weight: 600; color: var(--text-main); margin-top: 20px; margin-bottom: 6px; }
.legal-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--accent-color); font-weight: 600; font-size: 15px; margin-bottom: 16px; transition: color 0.2s ease; align-self: flex-start; }
.back-link:hover { color: var(--accent-hover); }

/* Animations */
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(2); opacity: 0; } }
@keyframes shimmer { 0% { transform: translateX(-120%) rotate(45deg); } 100% { transform: translateX(120%) rotate(45deg); } }
@keyframes bounceRight { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
@keyframes floating { 0% { transform: translateY(0) rotate(15deg); } 50% { transform: translateY(-4px) rotate(18deg); } 100% { transform: translateY(0) rotate(15deg); } }

@media (max-width: 400px) {
    .card { padding: 24px 16px; }
    .name { font-size: 22px; }
    .cta-button { font-size: 16px; padding: 16px; }
}
