/* ============================================================
   Aria Landing Page — Futuristic Light Theme
   ============================================================ */

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

:root {
    --bg: #fafafd;
    --bg-alt: #ffffff;
    --bg-subtle: #f2f3f8;
    --surface: #ffffff;
    --text: #1a1d2e;
    --text-secondary: #5a5f7a;
    --text-muted: #8b90a8;
    --accent: #6c3df5;
    --accent-light: #8b6aff;
    --accent-bg: rgba(108, 61, 245, 0.05);
    --accent-border: rgba(108, 61, 245, 0.1);
    --teal: #00c896;
    --teal-bg: rgba(0, 200, 150, 0.05);
    --pink: #f5437b;
    --gradient: linear-gradient(135deg, #6c3df5, #00c896);
    --gradient-text: linear-gradient(135deg, #6c3df5 0%, #00c896 60%, #f5437b 100%);
    --glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.3);
    --border: rgba(0, 0, 0, 0.05);
    --border-strong: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.07);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.09);
    --shadow-glow: 0 8px 40px rgba(108, 61, 245, 0.12);
    --shadow-glow-lg: 0 16px 60px rgba(108, 61, 245, 0.18);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    /* WhatsApp */
    --wa-green: #075e54;
    --wa-in: #ffffff;
    --wa-out: #d9fdd3;
    --wa-header: #075e54;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-light);
}

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

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    z-index: 200;
    transition: width 0.1s linear;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(108, 61, 245, 0.5);
}

/* ============================================================
   NAV — Glassmorphism
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.nav-scrolled {
    padding: 10px 32px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    font-size: 22px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 8px 20px !important;
    background: var(--gradient) !important;
    border-radius: 100px;
    color: white !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(108, 61, 245, 0.2);
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
    color: white !important;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--bg-subtle);
    border-radius: 100px;
    padding: 2px;
    border: 1px solid var(--border);
}

.lang-btn {
    padding: 4px 10px;
    border: none;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font);
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--accent);
}

.lang-btn.lang-active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 2px 8px rgba(108, 61, 245, 0.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: var(--font);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-lg);
    color: white;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-ghost {
    color: var(--text-secondary);
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    border-color: var(--accent-border);
    color: var(--accent);
    background: var(--accent-bg);
}

.btn-full {
    width: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 61, 245, 0.07) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.05) 0%, transparent 70%);
    top: 300px;
    left: -150px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 40px 0;
}

/* Staggered reveal for hero */
.hero-badge {
    animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

h1 {
    animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-subtitle {
    animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-ctas {
    animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-proof {
    animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero-demo {
    animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 200, 150, 0.5);
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Typing effect line */
.hero-typing-line {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    min-height: 28px;
}

.hero-tagline {
    color: var(--accent);
    font-weight: 600;
    border-right: 2px solid var(--accent);
    padding-right: 2px;
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
    50% {
        border-color: transparent;
    }
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding: 16px 24px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.proof-item {
    text-align: center;
}

.proof-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.proof-divider {
    width: 1px;
    height: 28px;
    background: var(--border-strong);
}

/* ============================================================
   WHATSAPP MOCKUPS
   ============================================================ */
.wa-phone,
.wa-mini {
    background: #eae0d5;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.wa-phone {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-mini {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.wa-phone::before,
.wa-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8bfaf' fill-opacity='0.08'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3Ccircle cx='20' cy='60' r='1'/%3E%3Ccircle cx='60' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--wa-header);
    color: white;
    position: relative;
    z-index: 1;
}

.wa-back {
    font-size: 20px;
    opacity: 0.8;
}

.wa-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c3df5, #00c896);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.wa-header-info {
    flex: 1;
}

.wa-contact-name {
    font-weight: 600;
    font-size: 14px;
}

.wa-status {
    font-size: 11px;
    opacity: 0.8;
}

.wa-header-actions {
    font-size: 16px;
    opacity: 0.6;
}

.wa-chat {
    padding: 12px 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
    min-height: 280px;
}

.wa-mini .wa-chat {
    min-height: auto;
}

.wa-date-badge {
    align-self: center;
    background: rgba(255, 255, 255, 0.82);
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.wa-msg {
    max-width: 85%;
    padding: 6px 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.wa-msg b {
    font-weight: 600;
}

.wa-msg .wa-time {
    position: absolute;
    bottom: 3px;
    right: 8px;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.wa-in {
    background: var(--wa-in);
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.wa-out {
    background: var(--wa-out);
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.wa-mini-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--wa-header);
    color: white;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.wa-mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c3df5, #00c896);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.wa-mini .wa-msg {
    font-size: 12.5px;
    margin: 0 8px;
}

.wa-link {
    color: #1a73e8;
    text-decoration: underline;
}

/* Email preview mockup (next to Smart Emails WhatsApp chat) */
.email-feature-chat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.email-feature-chat .wa-mini {
    flex: 1;
    min-width: 0;
}

.email-preview {
    flex: 0 0 220px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 11px;
}

.email-preview-header {
    background: #f5f5f5;
    padding: 8px 12px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-dots {
    display: flex;
    gap: 4px;
}

.email-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
}

.email-dots span:first-child {
    background: #ff5f57;
}

.email-dots span:nth-child(2) {
    background: #ffbd2e;
}

.email-dots span:last-child {
    background: #28c840;
}

.email-subject {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.email-preview-body {
    padding: 14px 12px;
}

.email-logo {
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: #222;
}

.email-logo-text {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.email-logo-text b {
    font-weight: 800;
}

.email-logo-divider {
    margin: 0 6px;
    color: #ccc;
    font-weight: 300;
}

.email-logo-realty {
    font-weight: 700;
    color: #e53935;
    font-size: 10px;
    letter-spacing: 2px;
}

.email-note {
    font-size: 10px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.4;
}

.email-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 8px 0;
}

.email-section-title {
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.email-listing {
    margin-bottom: 10px;
}

.email-listing-img {
    width: 100%;
    height: 70px;
    border-radius: 6px;
    margin-bottom: 6px;
    object-fit: cover;
    display: block;
}

.email-listing-name {
    font-weight: 700;
    font-size: 11px;
}

.email-listing-detail {
    font-size: 9px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.email-listing-btn {
    background: #1a1a2e;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
    cursor: default;
}

.email-footer-sig {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #e8e8e8;
    font-size: 9px;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .email-feature-chat {
        flex-direction: column;
    }

    .email-preview {
        flex: auto;
        width: 100%;
    }
}

.wa-mini>.wa-msg:first-of-type {
    margin-top: 10px;
}

.wa-mini>.wa-msg:last-child {
    margin-bottom: 14px;
}

.wa-mini {
    gap: 3px;
}

.wa-mini .wa-chat {
    padding: 10px 8px 14px;
    gap: 3px;
}

/* Chat bubble scroll-in animations */
.wa-msg {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-in {
    transform: translateX(-20px);
}

.wa-out {
    transform: translateX(20px);
}

.wa-msg.msg-revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Pain emoji bounce on hover */
.pain-emoji {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ——— WhatsApp Voice Message ——— */
.wa-voice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.wa-voice-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wa-header);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-voice-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

.wa-voice-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    height: 24px;
}

.wa-voice-bars span {
    width: 3px;
    background: #075e54;
    border-radius: 2px;
    animation: voiceWave 1.2s ease-in-out infinite;
}

.wa-voice-bars span:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.wa-voice-bars span:nth-child(2) {
    height: 12px;
    animation-delay: 0.1s;
}

.wa-voice-bars span:nth-child(3) {
    height: 8px;
    animation-delay: 0.2s;
}

.wa-voice-bars span:nth-child(4) {
    height: 16px;
    animation-delay: 0.15s;
}

.wa-voice-bars span:nth-child(5) {
    height: 10px;
    animation-delay: 0.25s;
}

.wa-voice-bars span:nth-child(6) {
    height: 18px;
    animation-delay: 0.1s;
}

.wa-voice-bars span:nth-child(7) {
    height: 14px;
    animation-delay: 0.3s;
}

.wa-voice-bars span:nth-child(8) {
    height: 8px;
    animation-delay: 0.2s;
}

.wa-voice-bars span:nth-child(9) {
    height: 12px;
    animation-delay: 0.15s;
}

.wa-voice-bars span:nth-child(10) {
    height: 6px;
    animation-delay: 0.25s;
}

.wa-voice-bars span:nth-child(11) {
    height: 14px;
    animation-delay: 0.05s;
}

.wa-voice-bars span:nth-child(12) {
    height: 10px;
    animation-delay: 0.2s;
}

.wa-voice-bars span:nth-child(13) {
    height: 16px;
    animation-delay: 0.1s;
}

.wa-voice-bars span:nth-child(14) {
    height: 8px;
    animation-delay: 0.3s;
}

.wa-voice-bars span:nth-child(15) {
    height: 12px;
    animation-delay: 0.15s;
}

@keyframes voiceWave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.wa-voice-dur {
    font-size: 10px;
    color: #6b7076;
    flex-shrink: 0;
    min-width: 30px;
}

/* ——— Mini Business Card ——— */
.wa-card-img {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    max-width: 200px;
}

.wa-card-img .card-name {
    font-weight: 700;
    font-size: 13px;
    color: #1a1d2e;
    margin-bottom: 4px;
}

.wa-card-img .card-title {
    color: #5a5f7a;
    font-size: 10px;
    margin-bottom: 6px;
}

.wa-card-img .card-detail {
    color: #8b90a8;
    font-size: 9.5px;
}

/* ——— Selfie Placeholder ——— */
.wa-selfie-img {
    background: linear-gradient(135deg, #e8e0f0, #d4eee8);
    border-radius: 8px;
    width: 160px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 36px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.wa-selfie-img::after {
    content: '📸 🤝';
    font-size: 28px;
    letter-spacing: 4px;
}

/* ——— Typing Indicator ——— */
.wa-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: var(--wa-in);
    border-radius: 8px;
    align-self: flex-start;
    border-top-left-radius: 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    max-width: 60px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.wa-typing.typing-visible {
    opacity: 1;
    transform: translateX(0);
}

.wa-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #075e54;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.wa-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.wa-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Aria response entrance */
.wa-msg.aria-response {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-msg.aria-response.msg-revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* ============================================================
   SECTIONS — Reveal animations
   ============================================================ */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--bg-alt);
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 12px;
    /* Reveal animation */
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-eyebrow.revealed {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 48px;
    /* Reveal animation */
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

h2.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pain-card {
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-sm);
    /* Reveal */
    opacity: 0;
    transform: translateY(30px) scale(0.97);
}

.pain-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pain-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-border);
}

.pain-emoji {
    font-size: 32px;
    margin-bottom: 14px;
}

.pain-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pain-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   FEATURES — Alternating rows with slide-in
   ============================================================ */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 100px;
    /* Reveal */
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-row.revealed {
    opacity: 1;
    transform: translateX(0);
}

.feature-row-reverse {
    transform: translateX(40px);
    /* Slide from right */
}

.feature-row-reverse .feature-text {
    order: 2;
}

.feature-row-reverse .feature-chat {
    order: 1;
}

.feature-row-reverse.revealed {
    transform: translateX(0);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--accent-bg);
    border: 1px solid var(--accent-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
}

.tag-icon {
    font-size: 15px;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.feature-text>p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    padding: 24px;
    max-width: 260px;
    /* Reveal */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.step.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.step-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-strong), var(--accent-border));
}

.connector-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(108, 61, 245, 0.3);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    /* Reveal */
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pricing-card:hover {
    box-shadow: var(--shadow-glow-lg);
    transform: scale(1.01);
}

.pricing-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.pricing-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent-bg);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.pricing-amount {
    margin-bottom: 4px;
}

.pricing-dollar {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: top;
    position: relative;
    top: 8px;
}

.pricing-number {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-mo {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
}

.pf-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pf-row:last-child {
    border-bottom: none;
}

.pf-check {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

/* ============================================================
   FORM
   ============================================================ */
.form-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: -36px;
    margin-bottom: 40px;
}

.inquiry-form {
    max-width: 520px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-subtle);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(108, 61, 245, 0.08);
}

.form-hint {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.consent-group {
    margin: 20px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

.btn-submit {
    margin-top: 8px;
}

.form-success {
    margin-top: 16px;
    padding: 18px;
    background: var(--teal-bg);
    border: 1px solid rgba(0, 200, 150, 0.15);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 14px;
    color: #047857;
}

.form-error {
    margin-top: 16px;
    padding: 18px;
    background: rgba(245, 67, 123, 0.05);
    border: 1px solid rgba(245, 67, 123, 0.15);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 14px;
    color: var(--pink);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(108, 61, 245, 0.2);
    box-shadow: 0 2px 12px rgba(108, 61, 245, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-subtle);
}

.footer-main {
    text-align: center;
    margin-bottom: 24px;
}

.footer-main p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE — Super mobile-friendly
   ============================================================ */
@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 10px 16px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .nav-links {
        gap: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 32px 0 16px;
        gap: 32px;
    }

    .hero-subtitle {
        margin: 0 auto 8px;
    }

    .hero-typing-line {
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-proof {
        justify-content: center;
        margin: 28px auto 0;
    }

    .hero-demo {
        max-width: 340px;
        margin: 0 auto;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        transform: translateY(30px);
    }

    .feature-row-reverse .feature-text,
    .feature-row-reverse .feature-chat {
        order: unset;
    }

    .feature-row.revealed,
    .feature-row-reverse.revealed {
        transform: translateY(0);
    }

    .feature-chat {
        max-width: 380px;
        margin: 0 auto;
    }

    .feature-text {
        text-align: center;
    }

    .feature-tag {
        margin: 0 auto 14px;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        flex-direction: column;
        padding-top: 0;
    }

    .connector-line {
        width: 2px;
        height: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-number {
        font-size: 56px;
    }

    .section {
        padding: 60px 0;
    }

    h2 {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 8px 12px;
    }

    .nav-name {
        font-size: 18px;
    }

    h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .hero-subtitle {
        font-size: 14.5px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 10px;
        padding: 14px 20px;
    }

    .hero-proof .proof-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .proof-divider {
        width: 40px;
        height: 1px;
    }

    .proof-value {
        font-size: 22px;
    }

    .section {
        padding: 48px 0;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .section-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .feature-text h3 {
        font-size: 22px;
    }

    .feature-text>p {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input {
        font-size: 16px;
        /* prevent zoom on iOS */
    }

    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-primary svg {
        width: 16px;
        height: 16px;
    }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
    :root {
        --text: #000;
        --text-secondary: #333;
        --border: rgba(0, 0, 0, 0.15);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-progress {
        display: none;
    }

    #particle-canvas {
        display: none;
    }
}