/* GoStayo Landing Page */

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

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #EEF2FF;
    --accent: #FF6B6B;
    --accent-dark: #E85D5D;
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --border: #E2E8F0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(79,70,229,0.12);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

/* ---- TOP URGENCY BAR ---- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: var(--text);
    color: #fff;
    font-size: 13px;
    padding: 8px 16px;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}
.top-bar-cta {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: var(--primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: background 0.2s;
}
.top-bar-cta:hover {
    background: var(--primary-dark);
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--text);
}
.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: var(--radius-sm);
    font-size: 15px;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79,70,229,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(79,70,229,0.4);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 12px;
}
.btn-full {
    width: 100%;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    padding: 176px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 50%, #FFF7ED 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}
.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}
.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,107,0.12) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}
.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 16px;
    line-height: 1.7;
}
.hero-note {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
    opacity: 0.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}
.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ---- SECTIONS ---- */
section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}
.text-accent {
    color: var(--accent);
}

/* ---- PROBLEM ---- */
.problem {
    background: var(--bg-alt);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.problem-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.problem-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}
.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ---- FEATURES ---- */
.features {
    background: var(--bg-alt);
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.feature-card {
    flex: 0 1 calc(50% - 12px);
    min-width: 240px;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ---- FEATURES ALSO ---- */
.features-also {
    margin-top: 40px;
    padding: 28px 32px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.features-also-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}
.features-also-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}
.features-also-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---- MID-PAGE CTA ---- */
.mid-cta {
    background: var(--primary-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
}
.mid-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.mid-cta-inner h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}
.mid-cta-inner p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 28px;
}

/* ---- HINGLISH CHIPS ---- */
.hinglish-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

/* ---- DASHBOARD PREVIEW ---- */
.dashboard-preview {
    background: var(--bg-alt);
}
.dashboard-mockup {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.mockup-topbar {
    background: #1E293B;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #22C55E; }
.mockup-title {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 600;
}
.mockup-body {
    background: #F1F5F9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.mockup-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
}
.mockup-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    flex-shrink: 0;
}
.mockup-stat-icon svg {
    width: 100%;
    height: 100%;
}
.mockup-stat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.mockup-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mockup-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.mockup-main-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12px;
}
.mockup-chart-card,
.mockup-list-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--border);
}
.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.mockup-chart-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.mockup-chart-period {
    font-size: 11px;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
}
.mockup-chart {
    height: 120px;
    display: flex;
    align-items: flex-end;
}
.mockup-bar-group {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    width: 100%;
    justify-content: center;
    height: 100%;
}
.mockup-bar {
    width: 48px;
    height: var(--h);
    background: linear-gradient(180deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.mockup-bar-active {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}
.mockup-bar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
}
.mockup-activity {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mockup-activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid #F1F5F9;
}
.mockup-activity-item:last-child {
    border-bottom: none;
}
.mockup-activity-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mockup-activity-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mockup-activity-text strong {
    color: var(--text);
    font-weight: 600;
}
.mockup-activity-time {
    font-size: 10px;
    color: var(--text-light);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .mockup-stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .mockup-main-row {
        grid-template-columns: 1fr;
    }
    .mockup-bar-group {
        gap: 12px;
    }
    .mockup-bar {
        width: 36px;
    }
}
@media (max-width: 480px) {
    .mockup-stats-row {
        grid-template-columns: 1fr;
    }
    .mockup-stat-card {
        padding: 12px;
    }
    .mockup-body {
        padding: 12px;
    }
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
    background: var(--bg);
}
.steps {
    max-width: 600px;
    margin: 0 auto;
}
.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}
.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.step-content p {
    color: var(--text-muted);
    font-size: 15px;
}
.step-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    margin-left: 23px;
}

/* ---- PRICING ---- */
.pricing {
    background: var(--bg);
}
.pricing-card {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}
.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}
.pricing-num {
    font-size: 56px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    letter-spacing: -2px;
}
.pricing-period {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-offer {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
}
.pricing-features svg {
    width: 18px;
    height: 18px;
    color: #059669;
    flex-shrink: 0;
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
    background: var(--bg);
    padding: 60px 0;
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: center;
}
.proof-card {
    padding: 28px 20px;
}
.proof-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
}
.proof-num {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}
.proof-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq {
    background: var(--bg-alt);
    text-align: center;
}
.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: left;
}

/* ---- WAITLIST ---- */
.waitlist {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #fff;
}
.waitlist .section-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.waitlist h2 {
    color: #fff;
}
.waitlist-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.waitlist-text p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 24px;
}
.waitlist-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}
.perk span {
    color: #22C55E;
    font-weight: 700;
    font-size: 16px;
}
.waitlist-form {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
}
.spots-bar {
    padding: 0 0 20px;
    margin-bottom: 4px;
    border-bottom: 1px solid #f0f0f0;
}
.spots-bar-track {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}
.spots-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #f59e0b);
    border-radius: 4px;
    transition: width 1s ease;
}
.spots-bar-text {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    text-align: center;
}
.spots-bar-text strong {
    color: var(--text);
}
.waitlist-success {
    background: #fff;
    padding: 48px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}
.waitlist-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
.waitlist-success p {
    color: var(--text-muted) !important;
    font-size: 15px;
}
.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.share-whatsapp {
    background: #25D366;
    color: #fff;
}
.share-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}
.hidden {
    display: none !important;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding-top: 48px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.footer-brand p {
    font-size: 14px;
    margin-top: 6px;
}
.footer-made {
    margin-top: 8px;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    padding: 20px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.hinglish-chip {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.4;
}
.hinglish-chip span {
    font-weight: 700;
    color: var(--primary);
    margin-right: 4px;
}
/* ---- WHATSAPP DEMO ---- */
.whatsapp-demo {
    background: var(--bg-alt);
}
.whatsapp-demo-guest {
    background: var(--bg);
}
.wa-section-row {
    display: flex;
    align-items: center;
    gap: 80px;
}
.wa-section-row-reverse {
    flex-direction: row-reverse;
}
.wa-section-text {
    flex: 1;
    min-width: 0;
}
.wa-section-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.wa-section-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.wa-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.wa-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}
.wa-feature-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    background: #059669;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 820px) {
    .wa-section-row,
    .wa-section-row-reverse {
        flex-direction: column;
        gap: 40px;
    }
    .wa-section-text {
        text-align: center;
    }
    .wa-feature-list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wa-section-text .wa-emergency-alert {
        margin-left: auto;
        margin-right: auto;
    }
}
.wa-phone {
    width: 360px;
    max-width: 100%;
    position: relative;
    background: #EFEAE2;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(255,255,255,0.1);
    border: 6px solid #1A1A1A;
}
.wa-status-bar {
    background: #F2F2F7;
    padding: 10px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.wa-status-time {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.2px;
    width: 60px;
}
.wa-dynamic-island {
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}
.wa-status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 60px;
    justify-content: flex-end;
}
.wa-status-icons svg {
    height: 11px;
    width: auto;
    color: #000;
}
.wa-header {
    background: #F2F2F7;
    padding: 8px 12px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 0.5px solid #C6C6C8;
}
.wa-header-left {
    display: flex;
    align-items: center;
    gap: 4px;
}
.wa-header-back {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.wa-header-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}
.wa-header-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.wa-header-name {
    color: #000;
    font-size: 15px;
    font-weight: 600;
}
.wa-header-status {
    color: #65676B;
    font-size: 11px;
}
.wa-header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.wa-header-actions svg {
    width: 20px;
    height: 20px;
}
.wa-chat {
    height: 480px;
    overflow-y: auto;
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #EFEAE2 url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' patternUnits='userSpaceOnUse' width='80' height='80'%3E%3Cpath d='M20 0v20H0M80 20v20H60M40 40v20H20M80 60v20H60M0 40v20' stroke='%23d4cfc6' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23p)' width='400' height='400'/%3E%3C/svg%3E");
    scrollbar-width: none;
}
.wa-chat::-webkit-scrollbar {
    display: none;
}
.wa-bubble {
    max-width: 82%;
    padding: 6px 10px 6px 10px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
    animation: waBubbleIn 0.3s ease;
    white-space: pre-line;
    word-wrap: break-word;
    box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.wa-bubble-host {
    background: #E7FFDB;
    align-self: flex-end;
    border-radius: 16px 4px 16px 16px;
}
.wa-bubble-ai {
    background: #fff;
    align-self: flex-start;
    border-radius: 4px 16px 16px 16px;
}
.wa-bubble-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #8696A0;
    margin-top: 3px;
}
.wa-typing {
    background: #fff;
    align-self: flex-start;
    border-radius: 4px 16px 16px 16px;
    padding: 12px 18px;
    display: flex;
    gap: 4px;
    align-items: center;
    box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.wa-typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #999;
    animation: typingBounce 1.4s ease-in-out infinite;
}
.wa-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}
@keyframes waBubbleIn {
    from { opacity: 0; transform: translateY(8px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-input-bar {
    background: #F2F2F7;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.wa-input-plus {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-input-plus svg {
    width: 22px;
    height: 22px;
}
.wa-input-field {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    border: 0.5px solid #C6C6C8;
    padding: 8px 16px;
}
.wa-input-placeholder {
    font-size: 13px;
    color: #8E8E93;
}
.wa-input-mic {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-input-mic svg {
    width: 20px;
    height: 20px;
}
.wa-home-indicator {
    width: 134px;
    height: 5px;
    background: #000;
    border-radius: 3px;
    margin: 6px auto 8px;
    opacity: 0.2;
}
.wa-replay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.2s;
}
.wa-replay-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.wa-replay-btn:hover {
    background: var(--primary-dark);
}
.wa-replay-btn svg {
    width: 18px;
    height: 18px;
}

.wa-emergency-alert {
    max-width: 100%;
    background: #FEF2F2;
    border: 2px solid #EF4444;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.wa-emergency-alert.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    animation: emergencyPulse 2s ease infinite;
}
.wa-emergency-icon {
    width: 40px;
    height: 40px;
    background: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 9px;
    flex-shrink: 0;
    animation: ring 1s ease infinite;
}
.wa-emergency-icon svg {
    width: 100%;
    height: 100%;
}
.wa-emergency-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.wa-emergency-text strong {
    font-size: 13px;
    color: #991B1B;
}
.wa-emergency-text span {
    font-size: 12px;
    color: #DC2626;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes emergencyPulse {
    0%, 100% { border-color: #EF4444; box-shadow: 0 0 0 0 rgba(239,68,68,0.2); }
    50% { border-color: #FCA5A5; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); }
    50%, 100% { transform: rotate(0deg); }
}
/* ---- DASHBOARD ALERTS ---- */
.mockup-alerts-row {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--border);
}
.mockup-alert-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mockup-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
}
.mockup-alert-urgent {
    background: #FEF2F2;
    border-left: 3px solid #EF4444;
}
.mockup-alert-warning {
    background: #FFFBEB;
    border-left: 3px solid #F59E0B;
}
.mockup-alert-pricing {
    background: #EEF2FF;
    border-left: 3px solid #4F46E5;
}
.mockup-alert-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}
.mockup-badge-urgent {
    background: #FEE2E2;
    color: #DC2626;
}
.mockup-badge-warning {
    background: #FEF3C7;
    color: #D97706;
}
.mockup-badge-pricing {
    background: #E0E7FF;
    color: #4F46E5;
}

/* ---- COST REDUCTION ---- */
.cost-reduction {
    background: var(--bg);
}
.cost-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 820px;
    margin: 0 auto;
}
.cost-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
}
.cost-card-old {
    opacity: 0.85;
}
.cost-card-new {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    opacity: 1;
}
.cost-card-highlight {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.cost-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.cost-card-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.cost-card-header h3 {
    font-size: 18px;
    font-weight: 700;
}
.cost-card-price {
    margin-bottom: 24px;
}
.cost-price-amount {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
}
.cost-price-highlight {
    color: var(--primary);
    font-size: 32px;
}
.cost-price-period {
    font-size: 14px;
    color: var(--text-muted);
}
.cost-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cost-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.4;
}
.cost-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.cost-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--text-light);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    letter-spacing: 2px;
}
.cost-savings {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    color: var(--text);
}
.cost-savings strong {
    font-weight: 800;
}

/* ---- FADE IN ANIMATION ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    .hero {
        padding: 156px 0 60px;
    }
    .hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    .hero-sub {
        font-size: 16px;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stat-num {
        font-size: 20px;
    }
    section {
        padding: 60px 0;
    }
    .feature-card {
        flex: 0 1 calc(50% - 12px);
        min-width: 0;
    }
    .waitlist-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .waitlist-text {
        text-align: center;
    }
    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    .pricing-num {
        font-size: 44px;
    }
    .wa-phone {
        width: 340px;
    }
    .wa-emergency-alert {
        width: 340px;
    }
    .cost-compare {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cost-vs {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 11px;
        padding: 6px 12px;
    }
    .top-bar-inner {
        gap: 8px;
    }
    .top-bar-cta {
        font-size: 10px;
        padding: 2px 10px;
        white-space: nowrap;
    }
    .nav {
        top: 32px;
    }
    .hero {
        padding: 148px 0 60px;
    }
    .container {
        padding: 0 16px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-stat-divider {
        display: none;
    }
    .hero-stats {
        gap: 16px;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        flex: 0 1 100%;
    }
    .wa-phone {
        width: 100%;
    }
    .wa-chat {
        height: 420px;
    }
    .wa-emergency-alert {
        width: 100%;
    }
    .cost-card {
        padding: 24px 20px;
    }
    .cost-price-amount {
        font-size: 20px;
    }
    .cost-price-highlight {
        font-size: 28px;
    }
    .mid-cta {
        padding: 48px 0;
    }
    .mid-cta-inner h2 {
        font-size: 24px;
    }
    .features-also-grid {
        grid-template-columns: 1fr;
    }
    .features-also {
        padding: 20px;
    }
    .features-also-item {
        font-size: 13px;
    }
}

/* ---- WHATSAPP FLOATING BUTTON ---- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.wa-float svg {
    width: 32px;
    height: 32px;
}
@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .wa-float svg {
        width: 28px;
        height: 28px;
    }
}
