/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force remove underlines from all buttons - nuclear option */
#getStartedBtn,
#getStartedHeaderBtn,
#getStartedContactBtn,
a[id="getStartedBtn"],
a[id="getStartedHeaderBtn"],
a[id="getStartedContactBtn"] {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border-bottom-width: 0 !important;
    text-underline-offset: 0 !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
}

#getStartedBtn *,
#getStartedHeaderBtn *,
#getStartedContactBtn *,
#getStartedBtn span,
#getStartedHeaderBtn span,
#getStartedContactBtn span {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Backup approach - override any link styling */
a.header-cta,
a.cta-button,
.header-cta,
.cta-button {
    text-decoration: none !important;
    border-bottom: none !important;
    text-decoration-line: none !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem 1.5rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    left: 0;
    top: 0;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.03;
    z-index: -2;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-link {
    text-decoration: none;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.logo-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 2px 12px rgba(102, 126, 234, 0.5);
        transform: scale(1.05);
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #667eea;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.header-cta:link,
.header-cta:visited,
.header-cta:hover,
.header-cta:active {
    text-decoration: none !important;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Main Content */
.main {
    padding-top: 0px;
}

/* Hero Section - Full Viewport Layout */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 80px 20px 40px;
    position: relative;
    overflow: visible;
}

.hero-content {
    flex: 1;
    max-width: 60%;
    padding-right: 2rem;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 16px;
    align-self: center;
    margin-top: -35px;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #667eea;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: visible;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    text-align: center;
}

.title-logo {
    height: 0.8em;
    width: auto;
    vertical-align: baseline;
    margin: 0 0.2em;
    display: inline-block;
}

.gradient-text {
    color: #000000;
}

.tagline-returned {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 8px;
    margin-top: -12px;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
}



.hero-cta-text {
    margin-bottom: 20px;
}

.hero-cta-text p {
    font-size: 1rem;
    color: #475569;
    margin: 0;
    font-weight: 500;
}

.hero-cta {
    margin-bottom: 6px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
    text-decoration: none !important;
}

.cta-button:link,
.cta-button:visited,
.cta-button:hover,
.cta-button:active {
    text-decoration: none !important;
}

.cta-button span {
    text-decoration: none !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    margin-left: 0;
    margin-top: -4px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #667eea;
}

.phone-display i {
    font-size: 1.8rem;
    color: #667eea;
}

.compliance-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.25;
    margin-top: 4px;
    margin-left: 0;
    text-align: center;
}

.compliance-text a {
    color: #667eea;
    text-decoration: none;
}

.compliance-text a:hover {
    text-decoration: underline;
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 50%, #FFB800 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.coming-soon-banner.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.banner-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.banner-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.banner-close:active {
    transform: scale(0.95);
}

.coming-soon-banner::before {
    content: '🎃';
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    left: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none;
}

.coming-soon-banner::after {
    content: '🎃';
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-text {
    margin-bottom: 30px;
}

.banner-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

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

.banner-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.banner-date {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-weight: 500;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto 20px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

#waitlist-email {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    transition: all 0.2s ease;
}

#waitlist-email:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #FF6B00;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.btn-notify:active {
    transform: translateY(0);
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn-notify:hover .btn-arrow {
    transform: translateX(4px);
}

.form-message {
    min-height: 24px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-message.success {
    color: #00D66C;
    background: rgba(0,214,108,0.15);
    padding: 8px 16px;
    border-radius: 8px;
}

.form-message.error {
    color: #FF3B30;
    background: rgba(255,59,48,0.15);
    padding: 8px 16px;
    border-radius: 8px;
}

.banner-count {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-title {
        font-size: 1.5rem;
    }

    .banner-date {
        font-size: 1rem;
    }

    .form-group {
        flex-direction: column;
    }

    .btn-notify {
        width: 100%;
        justify-content: center;
    }

    .coming-soon-banner::before,
    .coming-soon-banner::after {
        font-size: 60px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #667eea;
}

.features-badge i {
    font-size: 1rem;
    color: #667eea;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0f172a;
}

.title-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-header {
    margin-bottom: 24px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
    min-height: 2em;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.feature-tagline {
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-style: italic;
    min-height: 1.5em;
    line-height: 1.3;
}

.feature-description {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
    min-height: 3em;
}

.feature-metrics {
    display: flex;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
}

.metric {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
    line-height: 1.2;
    min-height: 1.5em;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.3;
    min-height: 2.3rem;
}

.features-footer-cta {
    text-align: center;
}

.text-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #764ba2;
}

/* Founders Section */
.founders {
    padding: 120px 0;
    background: rgba(248, 250, 252, 0.3);
}

.founders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.founders-text {
    max-width: 500px;
}

.founders-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #667eea;
}

.founders-badge i {
    font-size: 1rem;
    color: #667eea;
}

.founders-story {
    margin-top: 32px;
}

.founders-story p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.founders-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.founders-signature p {
    color: #0f172a;
    margin-bottom: 8px;
}

.founders-image {
    position: relative;
}

.founders-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founders-photo:hover {
    transform: translateY(-4px);
}

.image-caption {
    text-align: center;
    margin-top: 16px;
}

.image-caption p {
    color: #64748b;
    font-size: 0.875rem;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #667eea;
}

.pricing-badge i {
    font-size: 1rem;
    color: #667eea;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.02);
}

.pricing-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    vertical-align: top;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}

.price-period {
    font-size: 1.125rem;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: #475569;
}

.feature-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.pricing-button {
    width: 100%;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-button:hover {
    background: rgba(102, 126, 234, 0.15);
}

.pricing-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.pricing-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Individual Card Pricing Toggle */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
}

.toggle-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s ease;
}

.toggle-label.active {
    color: #667eea;
    font-weight: 600;
}

.savings-badge {
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 6px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.billing-toggle {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    border-radius: 24px;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.billing-toggle:checked + .slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.billing-toggle:checked + .slider:before {
    transform: translateX(20px);
}

.pricing-annual-note {
    text-align: center;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Premium Feature Styling */
.premium-feature {
    background: rgba(102, 126, 234, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    margin-bottom: 16px !important;
}

.premium-feature svg {
    color: #667eea;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px 0;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 4px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.pricing-tab:hover:not(.active) {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Custom Pricing Display */
.price-custom {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}

.pricing-footer {
    text-align: center;
}

.pricing-note {
    color: #64748b;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta {
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
}

.footer-logo p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-section h3.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 40px;
    text-align: center;
    color: #94a3b8;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.modal-body {
    padding: 32px;
}

.modal-phone {
    text-align: center;
    margin-bottom: 32px;
}

.modal-phone h4 {
    margin-bottom: 16px;
    color: #0f172a;
}

.phone-number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.large-phone {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.copy-btn {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(102, 126, 234, 0.15);
}

.modal-message {
    margin-bottom: 32px;
}

.modal-message h4 {
    margin-bottom: 16px;
    color: #0f172a;
}

.message-display {
    background: rgba(248, 250, 252, 1);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.modal-instructions {
    margin-bottom: 24px;
}

.modal-instructions p {
    margin-bottom: 8px;
    color: #64748b;
}

.modal-compliance {
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.modal-compliance p {
    color: #64748b;
    line-height: 1.5;
}

.modal-compliance a {
    color: #667eea;
    text-decoration: none;
}

.modal-compliance a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        padding: 0 15px;
        word-break: break-word;
        overflow-wrap: anywhere;
        line-height: 1.3;
        white-space: normal;
    }

    .flipboard-container {
        width: 90px;
        height: 1.1em;
        margin: 0 2px;
        display: inline-block;
    }

    .title-logo {
        max-width: 85px;
        max-height: 1.1em;
    }

    #title-company {
        width: 90px;
        display: inline-block;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .header-actions .nav-link {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .phone-number-display {
        flex-direction: column;
        gap: 12px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .hero-badge {
        align-self: center;
        margin-top: -60px;
        margin-bottom: 20px;
    }

    .phone-display {
        margin-left: 0;
        justify-content: center;
    }

    .hero-cta {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
        padding: 0 10px;
        word-break: break-word;
        overflow-wrap: anywhere;
        line-height: 1.4;
        white-space: normal;
    }

    .flipboard-container {
        width: 70px;
        height: 1em;
        margin: 0 1px;
        display: inline-block;
    }

    .title-logo {
        max-width: 65px;
        max-height: 1em;
    }

    #title-company {
        width: 70px;
        display: inline-block;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 15px 0 25px;
    }

    .features,
    .pricing,
    .contact {
        padding: 80px 0;
    }

    .hero-badge {
        align-self: center;
        margin-top: -70px;
        margin-bottom: 24px;
    }

    .phone-display {
        margin-left: 0;
        justify-content: center;
    }

    .hero-cta {
        margin-left: 0;
        justify-content: center;
    }
}

/* Mobile/Desktop Display Controls - Simplified (using JavaScript for conditional rendering) */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* QR Code Styling */
#qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#qr-code {
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 230px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#qr-code img {
    width: 200px !important;
    height: 200px !important;
    display: block !important;
    border-radius: 8px;
}

.qr-instruction {
    color: #87CEEB;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.qr-timer {
    color: #000000;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.success-message,
.timeout-message {
    text-align: center;
    padding: 30px;
    color: white;
}

.success-message i {
    display: block;
    margin-bottom: 15px;
}

.success-message p,
.timeout-message p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.timeout-message button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 15px;
}

.timeout-message button:hover {
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-it-works-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #667eea;
}

.how-it-works-badge i {
    font-size: 1rem;
    color: #667eea;
}

.how-it-works .section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 16px !important;
    text-align: center !important;
}

.how-it-works .section-subtitle {
    font-size: 1.125rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
}

.step-card {
    flex: 1 !important;
    max-width: 300px !important;
    min-width: 250px !important;
    min-height: 280px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 20px !important;
    padding: 24px 20px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

.step-card .step-icon {
    flex: 0 0 auto !important;
}

.step-card .step-title {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

.step-card .step-description {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    text-align: center !important;
    line-height: 1.4 !important;
}

.compact-qr-container {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.step-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.step-number {
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.step-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
}

.step-icon i {
    font-size: 28px !important;
    color: white !important;
}

.step-title {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.step-description {
    font-size: 1rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
}

.step-qr-container {
    margin-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}

#step-qr-code {
    background: white !important;
    padding: 10px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

#step-qr-code img {
    border-radius: 8px !important;
    display: block !important;
}

.qr-timer {
    font-size: 0.8rem !important;
    color: #667eea !important;
    font-weight: 500 !important;
    text-align: center !important;
}

/* Compact QR in Step 3 */
.compact-qr-container {
    margin-top: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

#step3-qr-code {
    background: white !important;
    padding: 8px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.step-arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #667eea !important;
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
}

.how-it-works-cta {
    text-align: center;
}

/* Full-width button class for mobile */
.full-width {
    width: 100% !important;
    display: block !important;
}

/* Tablet and smaller desktop - allow wrapping */
@media (max-width: 1024px) {
    .steps-container {
        flex-wrap: wrap;
    }
}

/* Mobile layout - vertical stack */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works-header .section-title {
        font-size: 2rem;
    }

    .steps-container {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 20px;
        margin-bottom: 40px;
    }

    .step-card {
        max-width: 100%;
        margin: 0 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .step-arrow:last-child {
        display: none;
    }
}

/* iPhone Mockup Component - Full Screen Layout */
.iphone-mockup {
    position: absolute !important;
    right: 5% !important;
    top: 45% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    z-index: 5 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iphone-mockup:hover {
    transform: translateY(-50%) scale(1.02) !important;
}

.iphone-mockup:hover .interactive-badge {
    animation-duration: 1s;
}

.iphone-frame {
    width: 300px !important;
    height: 610px !important;
    position: relative !important;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25)) !important;
}

.iphone-frame::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: url('./assets/apple-iphone-15-pro-max-2023-medium.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* Hide CSS notch since PNG has real one */
.iphone-notch {
    display: none !important;
}

.iphone-screen {
    position: absolute !important;
    top: 10px !important;
    left: 4px !important;
    right: 4px !important;
    bottom: 2px !important;
    background: #f2f2f7 !important;
    border-radius: 45px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 5 !important;
}

/* Messages Header */
.messages-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 5px 15px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #000 !important;
    background: #f2f2f7 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 45px !important;
    box-sizing: border-box !important;
}

.time {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #000 !important;
    padding-left: 5px !important;
}

.status-right {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding-right: 5px !important;
}

.carrier-info {
    display: flex !important;
    align-items: center !important;
}

.carrier-text {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #000 !important;
}

.wifi-icon {
    display: flex !important;
    align-items: center !important;
}

.wifi {
    font-size: 10px !important;
    transform: rotate(-90deg) !important;
}

.signal-bars {
    display: flex !important;
    align-items: flex-end !important;
    gap: 2px !important;
    height: 10px !important;
}

.signal-bars .bar {
    width: 2px !important;
    background: #000 !important;
    border-radius: 1px !important;
}

.signal-bars .bar:nth-child(1) { height: 3px !important; }
.signal-bars .bar:nth-child(2) { height: 5px !important; }
.signal-bars .bar:nth-child(3) { height: 7px !important; }
.signal-bars .bar:nth-child(4) { height: 9px !important; }

.battery-info {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
}

.battery-percent {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #000 !important;
}

.battery-icon {
    position: relative !important;
    width: 22px !important;
    height: 11px !important;
}

.battery-body {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 18px !important;
    height: 11px !important;
    border: 1px solid #000 !important;
    border-radius: 2px !important;
    background: transparent !important;
}

.battery-tip {
    position: absolute !important;
    top: 3px !important;
    right: 0px !important;
    width: 2px !important;
    height: 5px !important;
    background: #000 !important;
    border-radius: 0 1px 1px 0 !important;
}

.battery-level {
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    width: 12px !important;
    height: 7px !important;
    background: #34c759 !important;
    border-radius: 1px !important;
}

.messages-title {
    display: flex !important;
    align-items: center !important;
    padding: 4px 15px !important;
    background: #f2f2f7 !important;
    border-bottom: 1px solid #c7c7cc !important;
    margin-top: 35px !important;
}

.back-arrow {
    font-size: 24px !important;
    color: #007aff !important;
    margin-right: 10px !important;
}

.contact-info {
    text-align: center !important;
    flex: 1 !important;
    margin-left: -20px !important;
}

.contact-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #000 !important;
}

.contact-number {
    font-size: 11px !important;
    color: #8e8e93 !important;
}

/* Messages Container */
.messages-container {
    flex: 1 !important;
    padding: 10px 15px !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    background: #f2f2f7 !important;
}

.message {
    max-width: 70% !important;
    padding: 8px 12px !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    position: relative !important;
}

.message.user {
    background: #007aff !important;
    color: white !important;
    align-self: flex-end !important;
    margin-left: auto !important;
}

.message.user::before {
    content: "You: ";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: inherit;
    color: transparent;
}

.message.ai {
    background: #e5e5ea !important;
    color: #000 !important;
    align-self: flex-start !important;
}

.message.ai::before {
    content: "AI: ";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: inherit;
    color: transparent;
}

/* Copy confirmation animation */
@keyframes copyFadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.message.typing {
    background: #e5e5ea !important;
    align-self: flex-start !important;
    padding: 12px 16px !important;
}

.typing-dots {
    display: flex !important;
    gap: 4px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px !important;
    height: 20px !important;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background-color: #999;
    border-radius: 50%;
    display: inline-block;
    margin: 0 1px;
    animation: dot-flashing 1.4s infinite linear alternate;
    animation-delay: 0.5s;
}

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

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


@keyframes dot-flashing {
    0% {
        opacity: 0.8;
    }
    50%, 100% {
        opacity: 0.2;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-input {
    padding: 8px 15px 17px !important;
    background: #f2f2f7 !important;
}

.input-field {
    background: white !important;
    border: 1px solid #c7c7cc !important;
    border-radius: 20px !important;
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 8px !important;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.input-field::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    /* Disable animation by default - will be enabled by JavaScript when needed */
    animation: none;
}

/* Enable purple animation only in live mode */
#input-container.live-active::before {
    animation: inputGlow 3s ease-in-out infinite;
}

/* Disable background transition to prevent white->green yellow flash */
.input-field {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    /* Exclude background and border from transition to prevent yellow flash */
}

/* Disable all transitions on initial page load */
.input-field.no-transitions {
    transition: none !important;
}
.input-field.no-transitions::before {
    animation: none !important;
    opacity: 0 !important;
}
#input-container.no-transitions {
    transition: none !important;
}

@keyframes inputGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

.input-field:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.input-field:hover::before {
    opacity: 0.5;
}

#message-input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: #000 !important;
    font-size: 14px !important;
    flex: 1 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    margin: 0 8px !important;
}

#message-input::placeholder {
    color: #8e8e93 !important;
}

#message-input:disabled {
    color: #8e8e93 !important;
    cursor: pointer !important;
}

#input-container {
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

#input-container:hover {
    background: #f8f8f8 !important;
}

#input-container.demo-active {
    background: #d4f4d4 !important;
    border: 2px solid #2e7d32 !important;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4), 0 0 30px rgba(76, 175, 80, 0.2) !important;
    animation: gentle-pulse 2s infinite !important;
}

#input-container.demo-active:hover {
    background: #d4f4d4 !important;
    border: 2px solid #2e7d32 !important;
}

#input-container.demo-active .input-field:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3) !important;
}

#input-container.demo-active::before {
    animation: none !important;
    opacity: 0 !important;
}
#input-container.demo-active .input-field:hover::before {
    opacity: 0;
}

#input-container.live-active {
    background: transparent !important;
    box-shadow: none !important;
    animation: none !important;
}

#input-container.live-active:hover {
    background: transparent !important;
}

/* CORRECT SELECTORS - targeting the element itself, not a child */
#input-container.live-active:hover {
    transform: none !important;
    box-shadow: none !important;
}

#input-container.live-active:hover::before {
    opacity: 0 !important;
    animation: none !important;
}

/* Completely disable all hover effects for live-active state */
#input-container.live-active,
#input-container.live-active:hover,
#input-container.live-active:focus,
#input-container.live-active:active,
#input-container.live-active:focus:hover {
    background: white !important;
    border: 1px solid #c7c7cc !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Nuclear option - completely kill the purple animation */
#input-container.live-active::before,
#input-container.live-active:hover::before,
#input-container.live-active:focus::before,
#input-container.live-active:active::before,
#input-container.live-active:focus:hover::before {
    animation: none !important;
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    opacity: 0 !important;
    display: none !important;
    visibility: hidden !important;
    content: "" !important;
    width: 0 !important;
    height: 0 !important;
    z-index: -999 !important;
}

/* Additional global override for the class itself */
.input-field.live-active::before,
.input-field.live-active:hover::before,
.input-field.live-active:focus::before,
.input-field.live-active:focus:hover::before {
    animation: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: none !important;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.6);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.attach-button {
    width: 24px !important;
    height: 24px !important;
    background: #6b7280 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 8px !important;
    margin-left: -5px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.attach-button:hover {
    transform: scale(1.1);
    background: #4b5563 !important;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.attach-icon {
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.send-button {
    width: 24px !important;
    height: 24px !important;
    background: #007aff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: sendButtonPulse 4s ease-in-out infinite;
    flex-shrink: 0;
}

.send-button:hover {
    transform: scale(1.1);
    background: #0051d5 !important;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

@keyframes sendButtonPulse {
    0%, 90%, 100% {
        transform: scale(1);
    }
    95% {
        transform: scale(1.05);
    }
}

/* Image upload and preview styles */
.image-preview {
    margin: 8px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.preview-container {
    position: relative;
    display: inline-block;
}

#preview-image {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    display: block;
}

.remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
}

.remove-image:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Flipboard Animation Styles */
.flipboard-container {
    display: inline-block;
    perspective: 1000px;
    height: 1.6em;
    width: 160px; /* Make wider/bigger */
    vertical-align: middle; /* Center with text baseline */
    margin: 0 4px; /* Reduce margins for tighter spacing */
    position: relative;
    top: -0.1em; /* Fine-tune vertical alignment */
    left: -3px; /* Move slightly to the left */
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    display: block;
}

.flip-card.flipped {
    transform: rotateX(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    transform: rotateX(180deg);
}

.title-logo {
    max-height: 1.6em; /* Match container height */
    max-width: 150px; /* Wider constraint */
    width: auto;
    height: auto;
    vertical-align: middle;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    object-fit: contain;
    margin: 0 auto; /* Center horizontally */
}

/* Ensure the flipboard fits inline with text */
#title-company {
    display: inline-block;
    vertical-align: middle; /* Match flipboard alignment */
    line-height: 1.4;
    width: 160px; /* Match container width */
    text-align: center;
    position: relative;
}

/* Animation for smooth logo transitions */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.flip-card .title-logo {
    animation: logoFadeIn 0.3s ease-out;
}

.send-arrow {
    color: white !important;
    font-size: 16px !important;
    font-weight: bold !important;
}

/* Interactive Badge for iPhone */
.interactive-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.interactive-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #ccc;
}

.interactive-badge .badge-icon {
    margin-right: 3px;
    font-size: 10px;
    color: #34c759;
}

.interactive-badge .live-dot {
    width: 6px;
    height: 6px;
    background: #34c759;
    border-radius: 50%;
    margin-right: 4px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.demo-label {
    margin-top: 16px !important;
    font-size: 16px !important;
    color: #667eea !important;
    font-weight: 600 !important;
    animation: fadeGlow 3s ease-in-out infinite;
}

.demo-label i {
    margin-right: 6px;
    font-size: 18px;
}

@keyframes fadeGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
    }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .iphone-mockup {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-top: 2rem !important;
    }

    .iphone-frame {
        width: 280px !important;
        height: 570px !important;
    }
}

@media (max-width: 768px) {
    .iphone-mockup {
        display: none !important;
    }

    .hero-content {
        text-align: center;
    }
}