/* Page-specific styles for ai-agent.html */
/* Landing page specific styles */
        .lp-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
            min-height: calc(100vh - 80px);
            padding: 140px var(--space-2xl) var(--space-4xl);
            max-width: var(--max-width-wide);
            margin: 0 auto;
        }

        .lp-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--blush);
            color: var(--signal-red);
            font-size: 13px;
            font-weight: 600;
            padding: 10px 18px;
            border-radius: 100px;
            margin-bottom: var(--space-lg);
        }

        .lp-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #22C55E;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }

        .lp-hero h1 {
            font-size: clamp(42px, 5vw, 64px);
            margin-bottom: var(--space-lg);
        }

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

        .lp-hero-text {
            font-size: 20px;
            color: var(--soft-gray);
            line-height: 1.7;
            margin-bottom: var(--space-2xl);
            max-width: 500px;
        }

        .lp-ctas {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
            margin-bottom: var(--space-3xl);
        }

        .lp-stats {
            display: flex;
            gap: var(--space-3xl);
            padding-top: var(--space-xl);
            border-top: 1px dashed rgba(0,0,0,0.1);
        }

        .lp-stat-item {
            text-align: center;
        }

        .lp-stat-number {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
        }

        .lp-stat-label {
            font-size: 13px;
            color: var(--soft-gray);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Phone mockup */
        .phone-mockup {
            background: var(--charcoal);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 50px 100px rgba(0,0,0,0.25);
            max-width: 340px;
            margin: 0 auto;
        }

        .phone-screen {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            height: 600px;
            display: flex;
            flex-direction: column;
        }

        .phone-status-bar {
            padding: 12px 24px 8px;
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 600;
            color: var(--charcoal);
        }

        .phone-notch {
            width: 80px;
            height: 28px;
            background: var(--charcoal);
            border-radius: 20px;
        }

        .chat-header {
            padding: 16px 20px;
            border-bottom: 1px solid #E5E7EB;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E8B4B8 0%, #D4A5A5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 14px;
        }

        .chat-name {
            font-weight: 600;
            color: var(--deep-navy);
            font-size: 15px;
        }

        .chat-status {
            font-size: 12px;
            color: #22C55E;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .chat-status::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #22C55E;
            border-radius: 50%;
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            background: #F9FAFB;
            overflow-y: auto;
        }

        .chat-msg {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.5;
        }

        .chat-msg.user {
            background: var(--signal-red);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .chat-msg.bot {
            background: white;
            color: var(--charcoal);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        .chat-msg strong {
            font-weight: 600;
        }

        .chat-confirm {
            background: white;
            border: 2px solid #E8B4B8;
            border-radius: 16px;
            padding: 16px;
            align-self: flex-start;
            max-width: 85%;
        }

        .chat-confirm-header {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #22C55E;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .chat-confirm-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-bottom: 6px;
        }

        .chat-confirm-row span:first-child {
            color: var(--soft-gray);
        }

        .chat-confirm-row span:last-child {
            font-weight: 500;
            color: var(--charcoal);
        }

        .chat-input {
            padding: 16px 20px;
            border-top: 1px solid #E5E7EB;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .chat-input-field {
            flex: 1;
            background: #F3F4F6;
            border-radius: 24px;
            padding: 12px 20px;
            font-size: 14px;
            color: var(--soft-gray);
        }

        .chat-send {
            width: 40px;
            height: 40px;
            background: var(--signal-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-send svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        /* Floating badges around phone */
        .phone-wrapper {
            position: relative;
        }

        .floating-badge {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .floating-badge.left {
            left: -80px;
            top: 100px;
        }

        .floating-badge.right {
            right: -60px;
            top: 220px;
        }

        .floating-badge.bottom {
            right: -40px;
            bottom: 120px;
            background: var(--warm-gold);
            color: var(--deep-navy);
            font-weight: 600;
            font-size: 13px;
        }

        .floating-badge-number {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
        }

        .floating-badge-label {
            font-size: 12px;
            color: var(--soft-gray);
            margin-top: 4px;
        }

        /* Problem/Solution section */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
        }

        .split-section .section-label {
            margin-bottom: var(--space-md);
        }

        .problem-stats {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
            margin-top: var(--space-xl);
        }

        .problem-stat {
            display: flex;
            align-items: baseline;
            gap: var(--space-lg);
            padding-bottom: var(--space-lg);
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        .problem-stat-number {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 700;
            color: var(--signal-red);
            min-width: 100px;
        }

        .problem-stat-text {
            font-size: 16px;
            color: var(--soft-gray);
        }

        .solution-list {
            list-style: none;
            padding: 0;
            margin-top: var(--space-xl);
        }

        .solution-list li {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            font-size: 16px;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
        }

        .solution-list li svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        /* Pricing cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
            align-items: stretch;
        }

        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: var(--space-2xl);
            border: 1px solid #E5E7EB;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            background: var(--deep-navy);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(29, 53, 87, 0.25);
            border: none;
            position: relative;
        }

        .pricing-card.featured .pricing-tier {
            color: var(--warm-gold);
        }

        .pricing-card.featured .pricing-price {
            color: white;
        }

        .pricing-card.featured .pricing-desc {
            color: rgba(255,255,255,0.7);
        }

        .pricing-card.featured .pricing-feature {
            color: rgba(255,255,255,0.9);
        }

        .pricing-card.featured .pricing-feature svg circle {
            fill: rgba(255,255,255,0.15);
        }

        .pricing-card.featured .pricing-feature svg path {
            stroke: var(--warm-gold);
        }

        .pricing-popular {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--warm-gold);
            color: var(--deep-navy);
            font-size: 11px;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-tier {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--soft-gray);
            margin-bottom: var(--space-sm);
        }

        .pricing-price {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 700;
            color: var(--deep-navy);
            margin-bottom: var(--space-sm);
        }

        .pricing-price span {
            font-size: 18px;
            font-weight: 400;
            opacity: 0.6;
        }

        .pricing-desc {
            font-size: 14px;
            color: var(--soft-gray);
            margin-bottom: var(--space-xl);
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: var(--space-xl);
            flex: 1;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            font-size: 15px;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
        }

        .pricing-feature svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-cta {
            width: 100%;
            padding: 16px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
            text-decoration: none;
            display: block;
        }

        .pricing-card:not(.featured) .pricing-cta {
            background: transparent;
            border: 2px solid var(--signal-red);
            color: var(--signal-red);
        }

        .pricing-card:not(.featured) .pricing-cta:hover {
            background: var(--signal-red);
            color: white;
        }

        .pricing-card.featured .pricing-cta {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
        }

        .pricing-card.featured .pricing-cta:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .lp-hero {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .lp-hero-text {
                margin: 0 auto var(--space-2xl);
            }

            .lp-ctas {
                justify-content: center;
            }

            .lp-stats {
                justify-content: center;
            }

            .phone-wrapper {
                margin-top: var(--space-2xl);
            }

            .floating-badge {
                display: none;
            }

            .split-section {
                grid-template-columns: 1fr;
            }

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

            .pricing-card.featured {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .lp-hero {
                padding: 120px var(--space-lg) var(--space-2xl);
            }

            .lp-stats {
                flex-direction: column;
                gap: var(--space-xl);
            }

            .phone-mockup {
                max-width: 300px;
            }

            .phone-screen {
                height: 520px;
            }
        }

        /* Platform Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }

        .feature-item {
            background: var(--cream);
            border-radius: 16px;
            padding: var(--space-xl);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-color: rgba(230,57,70,0.15);
        }

        .feature-icon-small {
            font-size: 28px;
            margin-bottom: var(--space-md);
        }

        .feature-item h4 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-sm);
        }

        .feature-item p {
            font-size: 14px;
            color: var(--soft-gray);
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        /* Stagger delays for 9 feature items */
        [data-animate-stagger].fade-in > *:nth-child(7) { transition-delay: 0.7s; }
        [data-animate-stagger].fade-in > *:nth-child(8) { transition-delay: 0.8s; }
        [data-animate-stagger].fade-in > *:nth-child(9) { transition-delay: 0.9s; }

        /* Scroll animations */
        [data-animate] {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate].fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered children animations */
        [data-animate-stagger] > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        [data-animate-stagger].fade-in > *:nth-child(1) { transition-delay: 0.1s; }
        [data-animate-stagger].fade-in > *:nth-child(2) { transition-delay: 0.2s; }
        [data-animate-stagger].fade-in > *:nth-child(3) { transition-delay: 0.3s; }
        [data-animate-stagger].fade-in > *:nth-child(4) { transition-delay: 0.4s; }
        [data-animate-stagger].fade-in > *:nth-child(5) { transition-delay: 0.5s; }
        [data-animate-stagger].fade-in > *:nth-child(6) { transition-delay: 0.6s; }

        [data-animate-stagger].fade-in > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero animations - immediate on load */
        .lp-hero-content {
            animation: heroFadeIn 1s ease-out forwards;
        }

        .phone-wrapper {
            animation: heroFadeIn 1s ease-out 0.3s forwards;
            opacity: 0;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
