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

:root {
    --primary-color: #14b8a6;
    --secondary-color: #f59e0b;
    --accent-color: #ec4899;
    --purple-color: #8b5cf6;
    --coral-color: #fb7185;
    --yellow-color: #fbbf24;
    --teal-color: #14b8a6;
    --violet-color: #8b5cf6;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border: #e5e7eb;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.launch-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #fef3f2 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    margin: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: left;
}

.hero-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: fadeInScale 1s ease-out 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color), var(--purple-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    animation: floatingCard 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 20%;
    right: 20%;
    color: var(--teal-color);
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 40%;
    color: var(--yellow-color);
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 10%;
    color: var(--purple-color);
    animation-delay: 4s;
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Video Showcase Section */
.video-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="video-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23video-grid)"/></svg>');
    opacity: 0.3;
}

.video-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.video-wrapper {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    color: white;
}

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

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.placeholder-content .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.placeholder-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-weight: 500;
}

.video-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.video-feature i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 1rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--purple-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Access Anywhere Section */
.access-anywhere {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.access-anywhere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 1rem 4rem 1rem;
    position: relative;
    z-index: 1;
}

.device-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--purple-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.device-card:hover::before {
    transform: scaleX(1);
}

.device-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.device-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.device-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.compatibility-note {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    margin: 0 1rem;
}

.compatibility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.compatibility-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.compatibility-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: var(--background-alt);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 0 1rem;
}

.screenshot-item {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.screenshot-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f0f9ff, #fef3f2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screenshot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-image img {
    transform: scale(1.05);
}

.screenshot-image::before {
    content: '';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
}

.screenshot-caption {
    padding: 2rem;
}

.screenshot-caption h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.screenshot-caption p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, #f0fdfa, #fef3f2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-brand p {
    color: var(--text-light);
}

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

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    padding: 20px 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 20px auto;
    padding: 0;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideIn 0.3s ease-out;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Enhanced button interactions */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Professional loading state */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    user-select: none;
    line-height: 1;
}

.close:hover {
    color: var(--text-primary);
    background-color: var(--background-alt);
    transform: scale(1.1);
}

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

.close::before {
    content: '×';
    font-size: 24px;
    line-height: 1;
}

.modal-step {
    display: none;
    padding: 2rem 2.25rem 2rem;
}

.modal-step.active {
    display: block;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.modal-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.modal-step p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.trial-footnote {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    margin-bottom: 1.5rem !important;
    margin-top: -0.5rem !important;
    font-style: italic;
}

/* Consent block adjustments: reduce gap and tighten layout */
.consent-block {
    margin-top: 0; /* remove extra space above the block */
    margin-bottom: 0.4rem; /* smaller gap before Next button */
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.consent-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

#nextButton {
    margin-top: 0.25rem; /* tighten gap between consent and button */
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Form grid layout for two columns */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 0.6rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.form-group label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.25rem;
    font-size: 1rem;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Floating label animations */
.form-group.focused label,
.form-group.filled label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: white;
    font-weight: 600;
}

.form-group.focused input,
.form-group.focused textarea {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group.filled label {
    color: var(--text-secondary);
}

/* Form highlight bar */
.form-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-group.focused .form-highlight {
    width: 100%;
}

/* Error states */
.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.error label {
    color: #ef4444;
}

.form-group.error .form-highlight {
    background: #ef4444;
}

/* Input hints */
.input-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group.focused .input-hint,
.form-group.filled .input-hint {
    opacity: 1;
}

.form-group.error .input-hint {
    color: #ef4444;
    opacity: 1;
}

/* Mobile number specific styling */
#contactNumber {
    font-family: 'Monaco', 'Consolas', monospace;
    letter-spacing: 0.5px;
}

/* Success state for mobile number */
.form-group.success .input-hint {
    color: #10b981 !important;
    opacity: 1;
}

.form-group.success input {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group.success .form-highlight {
    background: #10b981;
}

.payment-options {
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem; /* space between options */
}

.payment-option:last-child {
    margin-bottom: 0; /* no extra space after last option */
}

.payment-option.selected {
    border-color: var(--primary-color);
    background: #f0fdfa;
}

.payment-option img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.payment-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.payment-info p {
    color: var(--text-secondary);
    margin: 0;
}

.payment-option i {
    margin-left: auto;
    color: var(--primary-color);
}

.intro-price {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
}

.payment-summary {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.free {
    color: var(--primary-color);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
}

.modal-buttons .btn {
    flex: 1;
}

/* AOS Animation Library Integration */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 5rem 0 3rem;
        min-height: 100vh;
    }
    
    .hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin: 0.5rem;
    }
    
    .hero-logo {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-logo-image {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 250px;
        margin-top: 1rem;
    }
    
    .floating-card {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .floating-card i {
        font-size: 1.25rem;
    }
    
    .card-1 {
        top: 10%;
        right: 5%;
    }
    
    .card-2 {
        top: 45%;
        right: 10%;
    }
    
    .card-3 {
        bottom: 10%;
        right: 15%;
    }
    
    .features-grid,
    .device-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
        margin: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .video-wrapper {
        margin: 2rem 0;
    }
    
    .video-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .video-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .compatibility-note {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        margin: 8px auto;
        width: 98%;
        max-height: calc(100vh - 16px);
        max-width: 500px;
        min-width: 0;
    }
    .modal-step {
        padding: 1.1rem 0.5rem 1.5rem 0.5rem;
    }
    .close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    .modal-header {
        gap: 0.5rem;
    }
    .modal-buttons .btn {
        min-height: 48px;
        font-size: 1rem;
    }
    .consent-item label,
    .consent-item a {
        font-size: 1rem;
    }
    .input-hint {
        font-size: 0.8rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-card {
        padding: 1.5rem 1rem;
        margin: 0.25rem;
        border-radius: var(--radius-lg);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero-logo-image {
        height: 45px;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .floating-card {
        padding: 0.75rem;
        font-size: 0.75rem;
        border-radius: 0.5rem;
    }
    
    .floating-card i {
        font-size: 1rem;
    }
    
    .feature-card,
    .device-card,
    .pricing-card {
        padding: 1.5rem;
        margin: 0 0.5rem 1rem 0.5rem;
    }
    
    .screenshot-item {
        margin: 0 0.5rem 1.5rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .video-showcase {
        padding: 4rem 0;
    }
    
    .video-container {
        margin: 0 0.5rem;
        border-radius: var(--radius-lg);
    }
    
    .video-features {
        margin-top: 1.5rem;
    }
    
    .video-feature {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        min-height: 44px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .modal-content {
        padding: 0.5rem 0;
    }
    
    .modal-step {
        padding: 0.5rem 0.25rem 1rem 0.25rem;
    }
    
    .close {
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.7rem;
    }
    
    .chat-input-group input[type="text"],
    .chat-input-group input[type="email"],
    .chat-input-group input[type="tel"] {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .chat-input-group button {
        min-height: 44px;
        font-size: 1rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Fallback animations when AOS doesn't load */
.no-aos [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.no-aos .feature-card,
.no-aos .screenshot-item,
.no-aos .pricing-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.no-aos .feature-card:nth-child(1) { animation-delay: 0.1s; }
.no-aos .feature-card:nth-child(2) { animation-delay: 0.2s; }
.no-aos .feature-card:nth-child(3) { animation-delay: 0.3s; }
.no-aos .feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Font loading optimization */
@font-face {
    font-family: 'Inter-fallback';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    font-display: swap;
}

/* Ensure fonts load properly */
body {
    font-display: swap;
}

/* Ensure Font Awesome icons display properly with Unicode fallbacks */
.feature-icon i {
    font-family: 'Font Awesome 5 Free', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block;
}

.floating-card i {
    font-family: 'Font Awesome 5 Free', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

/* Hide Unicode fallback when Font Awesome loads */
.fa-rocket:before { content: "\f135"; }
.fa-heart:before { content: "\f004"; }
.fa-map-marker-alt:before { content: "\f3c5"; }
.fa-shield-alt:before { content: "\f3ed"; }

/* CSS-only icons as fallback */
.feature-icon.fallback::before {
    content: '✓';
    font-size: 2rem;
    font-weight: bold;
}

/* Policy modal styles (Terms / Privacy) */
.policy-modal {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    display: block; /* we toggle visibility via inline style display:none/block */
    z-index: 2000;
    pointer-events: none; /* default disable until visible */
}

.policy-modal[aria-hidden="false"] {
    pointer-events: auto;
}

.policy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2001;
}

.policy-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2002;
    width: 92%;
    max-width: 720px;
    max-height: calc(100vh - 80px);
    overflow: auto;
    background: white;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-xl);
}

.policy-content h2 {
    margin-top: 0;
}

.policy-content h3,
.policy-content h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.policy-content p {
    margin: 0 0 0.75rem 0;
}

.policy-content ol,
.policy-content ul {
    margin: 0 0 0.75rem 1.25rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.policy-content p,
.policy-content li {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ======== INQUIRY CHAT WIDGET STYLES ======== */

/* Floating Action Button */
#inquiry-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

#inquiry-fab:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Notification animation for new messages */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); background: #f59e0b; }
    100% { transform: scale(1); }
}

/* Chat Widget */
#inquiry-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    max-width: calc(100vw - 48px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

#inquiry-chat-widget.hidden {
    display: none;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

#close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

#close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    padding: 1rem;
    height: 200px;
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
}

.welcome-message {
    background: var(--background-alt);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.welcome-message p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.user-message {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-md);
    margin: 0.5rem 0;
    margin-left: auto;
    max-width: 80%;
    width: fit-content;
    word-wrap: break-word;
}

.admin-reply {
    background: var(--background-alt);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) var(--radius-sm);
    margin: 0.5rem 0;
    max-width: 80%;
    word-wrap: break-word;
}

#chat-form {
    padding: 1rem;
}

.chat-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-input-group input[type="text"],
.chat-input-group input[type="email"],
.chat-input-group input[type="tel"] {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.chat-input-group input[type="text"]:focus,
.chat-input-group input[type="email"]:focus,
.chat-input-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.chat-input-group button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.chat-input-group button:hover {
    background: #0d9488;
}

.chat-input-group button:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

/* Payment and Thank You Modal Styles */
.payment-modal,
.thank-you-modal {
    max-width: 600px;
    width: 95%;
    padding: 2rem;
}

.qr-payment-content {
    text-align: center;
    padding: 1rem 0;
}

.thank-you-content {
    text-align: center;
    padding: 1rem 0;
}

.payment-instructions {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.qr-code-section {
    margin: 2rem 0;
}

.qr-code-placeholder {
    display: inline-block;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--background-alt);
}

.qr-code-placeholder img {
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-md);
}

.qr-fallback {
    color: var(--text-light);
    text-align: center;
}

.qr-fallback i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.email-instructions {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    text-align: left;
}

.email-instructions h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
}

.instruction-box {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.instruction-box p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.instruction-box strong {
    color: var(--text-primary);
}

.payment-amount {
    margin: 2rem 0;
}

.payment-amount h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
}

.amount-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    display: inline-block;
}

.amount-display span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.amount-display small {
    font-size: 0.85rem;
    opacity: 0.9;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.thank-you-content h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.thank-you-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thank-you-content ul {
    text-align: left;
    margin: 1.5rem 0;
    display: inline-block;
}

.thank-you-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #inquiry-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    #inquiry-chat-widget {
        bottom: 80px;
        right: 20px;
        width: calc(100vw - 40px);
    }
}
