:root {
    --primary-color: #FF6B35;
    --primary-hover: #E85D04;
    --secondary-color: #7678ED;
    --secondary-hover: #5C5FAF;
    --light-color: #f9f9f9;
    --dark-color: #333;
    --gray-color: #f0f0f0;
    --text-color: #444;
    --border-color: #e0e0e0;
    --danger-color: #f44336;
    --success-color: #FF6B35;
    --gradient-start: #FF6B35;
    --gradient-end: #F7B267;
    --body-bg: #ffffff;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #f5f5f5;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--body-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 3px var(--shadow-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    flex: 0 0 auto;
    margin-right: auto;
    padding-left: 2rem;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex: 1 1 auto;
    justify-content: center;
    margin: 0 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.2s;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;
    margin-left: auto;
    padding-right: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

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

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

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

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

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

.btn-outline:hover {
    background-color: rgba(14, 165, 233, 0.05);
}

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

.hamburger span {
    height: 2px;
    width: 25px;
    background-color: var(--dark-color);
    margin: 3px 0;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 3rem 6rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 1) 100%);
    max-width: 100%;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    padding-left: 7rem;
    padding-right: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.black-text {
    color: #000;
    font-weight: 600;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    margin-left: 2rem;
}

/* New AI-themed hero visual styles */
.hero-visual {
    flex: 1;
    max-width: 550px;
    margin-left: 1rem;
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    transform: translateX(50px);
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(10px);
    z-index: 1;
}

.circle-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #FF6B35, #F7B267, #FCAF58, #F9C784);
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: var(--secondary-color);
    top: 60%;
    left: 55%;
    animation: float 12s ease-in-out infinite reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    top: 30%;
    left: 65%;
    animation: float 10s ease-in-out 2s infinite;
}

.code-snippet {
    position: absolute;
    width: 280px;
    padding: 1rem;
    background-color: var(--dark-color);
    color: white;
    border-radius: 0.5rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    top: 10%;
    right: 40%;
    z-index: 2;
    transform: rotate(2deg);
    animation: floatCode 10s ease-in-out infinite;
}

.payment-card {
    position: absolute;
    width: 300px;
    height: 180px;
    background: linear-gradient(135deg, #2D3748, #1A202C);
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    bottom: 20%;
    left: 5%;
    z-index: 3;
    transform: rotate(-5deg) translateZ(20px);
    animation: floatCard 12s ease-in-out infinite;
}

.card-chip {
    width: 40px;
    height: 30px;
    background-color: #E2E8F0;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #A0AEC0;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #A0AEC0;
}

.card-number {
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.card-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #A0AEC0;
}

.success-message {
    position: absolute;
    width: 200px;
    padding: 1rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    bottom: 10%;
    right: 15%;
    z-index: 4;
    transform: rotate(5deg) translateZ(30px);
    animation: floatMessage 8s ease-in-out 1s infinite;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
}

.message-text {
    font-weight: 500;
    color: var(--dark-color);
}

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

@keyframes floatCode {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-15px) rotate(4deg);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(-5deg) translateZ(20px);
    }
    50% {
        transform: translateY(-20px) rotate(-3deg) translateZ(20px);
    }
}

@keyframes floatMessage {
    0%, 100% {
        transform: translateY(0) rotate(5deg) translateZ(30px);
    }
    50% {
        transform: translateY(-15px) rotate(7deg) translateZ(30px);
    }
}

/* Remove browser mockup styling as it's no longer needed */
.browser-mockup {
    display: none;
}

/* Partners Section */
.partners {
    background-color: var(--light-background);
    padding: 3rem 2rem;
    text-align: center;
}

.partners h3 {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.logo-item {
    height: 2.5rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.logo-item:hover {
    opacity: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background-color: var(--background-color);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-background);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -1px var(--shadow-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -2px var(--shadow-color);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #FF6B35, #F7B267);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--light-text);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-background);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.step {
    text-align: center;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.code-example {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--dark-color);
    color: white;
    border-radius: 0.75rem;
    overflow: hidden;
}

.code-example pre {
    padding: 2rem;
    overflow-x: auto;
}

.code-example code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875rem;
}

.code-caption {
    background-color: #2d3748;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    color: #a0aec0;
    text-align: center;
}

/* Pricing Section */
.pricing {
    background-color: var(--background-color);
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--card-background);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -1px var(--shadow-color);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px var(--shadow-color), 0 10px 10px -5px var(--shadow-color);
}

.pricing-card.pro {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.recommended {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-bottom-left-radius: 0.5rem;
}

.card-header {
    padding: 2rem;
    background-color: var(--light-background);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

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

.features-list {
    padding: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

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

.features-list li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.card-footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-background);
    border-top: 1px solid var(--border-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-background);
}

.testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto 2rem;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background-color: var(--card-background);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -1px var(--shadow-color);
    margin: 0 1rem;
}

.quote {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: #e2e8f0;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: Georgia, serif;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--light-text);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35, #F7B267);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2rem 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand p {
    margin: 1rem 0 2rem;
    color: #a0aec0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background-color 0.2s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.link-group h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-group li a {
    color: #a0aec0;
    transition: color 0.2s;
}

.link-group li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-image {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, header .cta-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-cards, .steps, .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .pricing-card.pro {
        transform: none;
        order: -1;
    }

    .pricing-card.pro:hover {
        transform: translateY(-5px);
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        gap: 2rem;
    }

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

    .social-icons {
        justify-content: center;
    }
    
    /* Improved Mobile Navigation */
    .mobile-menu {
        padding: 4rem 2rem 2rem !important;
    }
    
    .mobile-menu .nav-links a {
        font-size: 1.25rem !important;
        padding: 0.75rem 1rem !important;
        width: 100% !important;
        text-align: center !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    
    .mobile-menu .cta-buttons {
        width: 100% !important;
        margin-top: 1.5rem !important;
    }
    
    .mobile-menu .cta-buttons a {
        width: 100% !important;
        text-align: center !important;
        padding: 0.75rem 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Hero Section Mobile Improvements */
    .hero {
        padding: 6rem 1.5rem 4rem !important;
    }
    
    .hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-visual {
        max-width: 100% !important;
        margin: 2rem 0 0 !important;
        height: 320px !important;
    }
    
    .floating-elements {
        transform: scale(0.85) translateX(0) !important;
    }
    
    /* Form Mockup Mobile Adjustments */
    .form-mockup {
        width: 260px !important;
        z-index: 10 !important;
    }
    
    .url-input {
        width: 280px !important;
        margin-top: 20px !important;
    }
    
    /* Floating Form Types Mobile Optimization */
    .floating-form-types .form-type {
        width: 100px !important;
    }
    
    .form-type-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
    }
    
    .form-type p {
        font-size: 0.85rem !important;
    }
    
    /* Hide some floating form types on mobile */
    .form-type.left-top, .form-type.right-top {
        top: 5% !important;
    }
    
    .form-type.left-middle, .form-type.right-middle {
        top: 40% !important;
    }
    
    .form-type.left-bottom, .form-type.right-bottom {
        bottom: 10% !important;
    }
    
    .form-type.left-top {
        left: 0% !important;
    }
    
    .form-type.left-middle {
        left: -5% !important;
    }
    
    .form-type.left-bottom {
        left: 0% !important;
    }
    
    .form-type.right-top {
        right: 0% !important;
    }
    
    .form-type.right-middle {
        right: -5% !important;
    }
    
    .form-type.right-bottom {
        right: 0% !important;
    }
    
    /* Improve solution showcase on mobile */
    .solution-showcase {
        gap: 2rem !important;
    }
    
    .step-connector {
        display: none !important;
    }
    
    .solution-step {
        max-width: 100% !important;
    }
    
    /* Features Grid Mobile Optimization */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    /* CTA Section Mobile Improvements */
    .cta-section {
        padding: 4rem 1.5rem !important;
    }
    
    .cta-section h2 {
        font-size: 1.75rem !important;
        line-height: 1.4 !important;
    }
    
    /* Waitlist Popup Mobile Improvements */
    .waitlist-popup-content {
        padding: 2rem 1.5rem !important;
        width: 95% !important;
        max-height: 85vh !important;
    }
    
    .waitlist-popup h2 {
        font-size: 1.5rem !important;
    }
    
    .waitlist-close {
        top: 0.75rem !important;
        right: 1rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem !important;
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }
    
    .waitlist-submit-btn {
        padding: 0.85rem 1.5rem !important;
    }
}

/* Additional Mobile Optimizations for Very Small Screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .section-header p {
        font-size: 0.95rem !important;
    }

    .cta-section h2 {
        font-size: 1.5rem !important;
    }
    
    .cta-section p {
        font-size: 0.95rem !important;
    }
    
    /* Further reduce size and adjust placement of floating elements */
    .floating-elements {
        transform: scale(0.75) translateX(0) !important;
    }
    
    .form-mockup {
        width: 230px !important;
    }
    
    .url-input {
        width: 250px !important;
    }
    
    /* Further optimize floating form types for very small screens */
    .floating-form-types .form-type {
        width: 80px !important;
    }
    
    .form-type-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    
    /* Improve spacing in feature cards */
    .feature-card {
        padding: 1.25rem !important;
    }
    
    .feature-icon {
        height: 2.5rem !important;
        width: 2.5rem !important;
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Improve forms pile on small screens */
    .forms-pile {
        height: 300px !important;
        transform: scale(0.9) !important;
    }
    
    .form-card {
        width: 180px !important;
        height: 240px !important;
    }
    
    /* Make buttons larger and more tappable on small screens */
    .btn {
        padding: 0.75rem 1.5rem !important;
        min-height: 44px !important; /* Minimum recommended touch target height */
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Add active states for better touch feedback */
@media (max-width: 768px) {
    .btn:active, 
    .feature-card:active, 
    .solution-step:active,
    .form-type:active .form-type-icon {
        transform: scale(0.97) !important;
        opacity: 0.9 !important;
        transition: transform 0.1s, opacity 0.1s !important;
    }
    
    /* Fix for iOS auto-zooming on input fields */
    input[type="text"], 
    input[type="email"], 
    input[type="tel"], 
    select, 
    textarea {
        font-size: 16px !important;
    }
}

/* Optimize page load performance */
@media (max-width: 768px) {
    /* Reduce animation complexity on mobile */
    .floating-circle,
    .code-snippet,
    .payment-card,
    .success-message,
    .form-mockup,
    .url-input,
    .floating-form-types .form-type {
        animation-duration: 4s !important;
    }
    
    /* Simplify animations on mobile to improve performance */
    @keyframes float-mobile {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    .floating-circle {
        animation-name: float-mobile !important;
    }
}

/* Problem Statement Section */
.problem-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.problem-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto;
    max-width: 100%;
    position: relative;
}

.problem-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 550px;
    position: relative;
}

.ai-website-mockup {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.ai-website-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background-color: #f1f5f9;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e2e8f0;
}

.mockup-header .dot:nth-child(1) {
    background-color: #ef4444;
}

.mockup-header .dot:nth-child(2) {
    background-color: #f59e0b;
}

.mockup-header .dot:nth-child(3) {
    background-color: #10b981;
}

.mockup-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card {
    width: 100%;
    max-width: 250px;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e0f2fe, #f0fdfa);
    border-radius: 0.5rem;
    margin: 0 auto 1rem;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.mockup-btn {
    background-color: #94a3b8;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.8;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .success-overlay {
    opacity: 1;
}

.success-overlay i {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-overlay span {
    font-weight: 600;
    color: var(--dark-color);
}

.mockup-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    opacity: 1;
}

.problem-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.problem-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.5;
}

/* AI Platform Compatibility Section */
.compatibility-section {
    padding: 7rem 2rem;
    background-color: var(--background-color);
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    width: 5rem;
    height: 5rem;
    background-color: var(--light-background);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.platform-logo:hover .logo-container {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.platform-logo p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--light-text);
}

/* Solution Section */
.solution-section {
    background-color: var(--light-background);
    padding: 7rem 2rem;
}

.solution-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 4rem 0;
}

.solution-step {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1;
}

.step-content {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.solution-step:hover .step-content {
    transform: translateY(-10px);
}

.step-visual {
    width: 4rem;
    height: 4rem;
    background-color: var(--light-background);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--light-text);
    font-size: 1rem;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.connector-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.connector-arrow {
    width: 24px;
    height: 24px;
    background-color: var(--gradient-end);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: -12px;
}

@media (max-width: 768px) {
    .solution-showcase {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        display: none;
    }
}

/* Features Section */
.features-section {
    padding: 7rem 2rem;
    background-color: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

/* Pricing Section */
.pricing-section {
    padding: 7rem 2rem;
    background-color: var(--light-background);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pricing-card {
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2.5rem 2rem;
}

.pricing-features ul {
    list-style: none;
}

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

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

.pricing-features i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-background);
}

.pricing-notes {
    text-align: center;
    margin-top: 2rem;
    color: var(--light-text);
}

.pricing-notes a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Updated CTA Section */
.cta-section {
    padding: 7rem 2rem;
}

.cta-section .gradient-text {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .problem-showcase {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .problem-showcase, 
    .platform-logos {
        gap: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
    }
}

/* Architecture Section - Redesigned */
.architecture-section {
    background-color: var(--light-background);
    padding: 7rem 2rem;
    overflow: hidden;
    position: relative;
}

.payment-models {
    margin-top: 3rem;
}

.model-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.model-tab {
    background: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.model-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.model-tab.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.model-content {
    display: none;
}

.model-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.model-header {
    text-align: center;
    margin-bottom: 3rem;
}

.model-title h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.model-title p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 500;
}

/* Payment Flow Animation */
.payment-flow-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .payment-flow-container {
        grid-template-columns: 1fr 400px;
    }
}

.payment-flow-animation {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.payment-flow-animation:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.flow-path {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .flow-path {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
}

.flow-step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .flow-step-container {
        flex-direction: row;
        flex: 1;
    }
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    z-index: 2;
}

.flow-step.highlight-step {
    background-color: rgba(16, 185, 129, 0.05);
    border-radius: 1rem;
    padding: 1.5rem 0.5rem;
    width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.flow-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    position: relative;
}

.flow-icon.customer {
    background-color: #e8f5ff;
    color: #3b82f6;
}

.flow-icon.website {
    background-color: #eef2ff;
    color: #6366f1;
}

.flow-icon.rizzpay, .flow-icon.rizzpay-platform {
    background-color: #FFF1E6;
    color: #FF6B35;
}

.flow-icon.stripe {
    background-color: #FFF8E8;
    color: #F7B267;
}

.flow-icon.bank {
    background-color: #f1f5f9;
    color: #64748b;
}

.flow-step:hover .flow-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.flow-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.flow-step h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.platform-processes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.platform-processes span {
    font-size: 0.75rem;
    color: var(--light-text);
    background-color: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.platform-note {
    font-size: 0.75rem;
    color: var(--light-text);
    margin-top: 0.25rem;
    font-style: italic;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    position: relative;
}

.flow-arrow.animated {
    position: relative;
    overflow: hidden;
}

.payment-indicator {
    position: absolute;
    font-size: 0.85rem;
    color: var(--success-color);
    font-weight: 700;
    opacity: 0;
    animation: moveRight 3s infinite;
}

@keyframes moveRight {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    25%, 75% {
        opacity: 1;
    }
    90% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Info blocks */
.payment-info-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .payment-info-container {
        grid-template-columns: 1fr 1fr;
    }
}

.info-block {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.model-features {
    padding: 0;
    list-style: none;
}

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

.model-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.model-features i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Code container */
.code-container {
    margin-top: 2rem;
}

.code-sample {
    background-color: var(--dark-color);
    color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    animation: floatCode 12s ease-in-out infinite;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.code-actions {
    display: flex;
    gap: 0.5rem;
}

.copy-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.copy-button:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.code-sample pre {
    margin: 0;
    padding: 1.5rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow: auto;
    color: #f8f8f2;
}

.code-sample code {
    display: block;
}

/* Model Comparison */
.model-comparison {
    margin-top: 5rem;
    text-align: center;
}

.model-comparison h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #FF6B35, #E85D04);
    color: white;
    text-align: center;
}

.comparison-header.direct {
    background: linear-gradient(135deg, #FF6B35, #E85D04);
}

.comparison-header.platform {
    background: linear-gradient(135deg, #F7B267, #FCAF58);
}

.comparison-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.comparison-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.comparison-body {
    padding: 1.5rem;
    text-align: left;
}

.comparison-body p {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.comparison-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.comparison-body li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
    color: var(--light-text);
}

.comparison-body li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.comparison-body li:last-child {
    border-bottom: none;
}

.comparison-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Animation for fadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Onboarding Section */
.onboarding-section {
    padding: 7rem 2rem;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.onboarding-flow {
    margin: 5rem 0 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.onboarding-step {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 3rem;
}

.onboarding-step:last-child {
    margin-bottom: 0;
}

.onboarding-step::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 1.5rem;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    z-index: 0;
}

.onboarding-step:last-child::before {
    display: none;
}

.onboarding-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.onboarding-content {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onboarding-step:hover .onboarding-content {
    transform: translateY(-5px) translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.onboarding-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--light-background);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.onboarding-details h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.onboarding-details p {
    color: var(--light-text);
    margin-bottom: 0;
}

.dashboard-preview {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
    animation: floatDashboard 15s ease-in-out infinite;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateX(0);
}

.dashboard-header {
    background-color: #f1f5f9;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e2e8f0;
}

.dashboard-dot:nth-child(1) {
    background-color: #ef4444;
}

.dashboard-dot:nth-child(2) {
    background-color: #f59e0b;
}

.dashboard-dot:nth-child(3) {
    background-color: #10b981;
}

.dashboard-title {
    margin-left: auto;
    font-size: 0.875rem;
    color: var(--light-text);
}

.dashboard-content {
    display: flex;
    height: 400px;
}

.dashboard-sidebar {
    width: 220px;
    background-color: var(--dark-color);
    color: white;
    padding: 1.5rem 0;
}

.sidebar-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s;
    color: #a0aec0;
}

.sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    position: relative;
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.dashboard-main {
    flex: 1;
    padding: 1.5rem;
    background-color: #f8fafc;
    overflow: auto;
}

.dashboard-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dashboard-card h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.dashboard-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-checklist li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

.dashboard-checklist li:last-child {
    border-bottom: none;
}

.dashboard-checklist .completed {
    color: var(--success-color);
}

.dashboard-checklist .active {
    color: var(--primary-color);
    font-weight: 600;
}

.dashboard-checklist i {
    width: 20px;
}

/* Animation for floating elements */
@keyframes floatDashboard {
    0%, 100% {
        transform: perspective(1000px) rotateX(5deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(5deg) translateY(-20px);
    }
}

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

/* Responsive adjustments for onboarding */
@media (max-width: 768px) {
    .onboarding-content {
        flex-direction: column;
        text-align: center;
    }
    
    .dashboard-content {
        flex-direction: column;
        height: auto;
    }
    
    .dashboard-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .sidebar-item {
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }
    
    .sidebar-item.active::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
        width: auto;
        height: 3px;
    }
}

/* Form mockup in hero section */
.form-mockup {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 300px;
    overflow: hidden;
    animation: floatCard 3s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-5deg);
    z-index: 10;
}

.form-header {
    background: var(--primary-color);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
}

.form-fields {
    padding: 16px;
}

.form-field {
    position: relative;
    margin-bottom: 16px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9f9f9;
}

.form-field.completed {
    border-color: var(--success-color);
    background: rgba(76, 175, 80, 0.05);
}

.form-field label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.form-field .input-value {
    font-size: 14px;
    font-weight: 500;
}

.completion-badge {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: var(--success-color);
    font-size: 14px;
}

.url-input {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 400px;
    height: 50px;
    display: flex;
    margin-top: 30px;
    animation: floatInput 3s ease-in-out infinite;
    animation-delay: 0.2s;
    z-index: 5;
}

.url-bar {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #555;
    font-size: 14px;
}

.url-bar i {
    margin-right: 8px;
    color: #999;
}

.url-button {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.url-button:hover {
    background: var(--primary-hover);
}

.automation-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: var(--primary-color);
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 20;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

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

/* Forms Pile Styles */
.forms-pile {
    position: relative;
    height: 350px; /* Increase height to accommodate better spacing */
    width: 320px; /* Increase width slightly */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    cursor: pointer;
}

.form-card {
    position: absolute;
    width: 220px;
    height: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom center;
    pointer-events: none; /* Disable pointer events on cards */
}

/* Fan effect when hovering over the pile */
.forms-pile:hover .form-1 {
    transform: rotate(-40deg) translateX(-80px) translateY(-30px);
    z-index: 5;
}

.forms-pile:hover .form-2 {
    transform: rotate(-15deg) translateX(-35px) translateY(-40px);
    z-index: 6;
}

.forms-pile:hover .form-3 {
    transform: rotate(15deg) translateX(35px) translateY(-40px);
    z-index: 7;
}

.forms-pile:hover .form-4 {
    transform: rotate(40deg) translateX(80px) translateY(-30px);
    z-index: 8;
}

/* Focused card effect - activate based on pile hover plus class */
.forms-pile:hover .form-card.active {
    transform: translateY(-50px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 20;
}

/* Base positions */
.form-1 {
    transform: rotate(-8deg) translate(-30px, -20px);
    z-index: 4;
}

.form-2 {
    transform: rotate(3deg) translate(30px, -10px);
    z-index: 3;
}

.form-3 {
    transform: rotate(-5deg) translate(10px, 0px);
    z-index: 2;
}

.form-4 {
    transform: rotate(7deg) translate(-15px, 10px);
    z-index: 1;
}

.form-card-header {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-card-lines {
    position: relative;
    height: 180px;
}

.form-card-lines::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: repeating-linear-gradient(
        #f9f9f9,
        #f9f9f9 15px,
        #eee 15px,
        #eee 16px
    );
    border-radius: 4px;
}

.form-types {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.form-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 130px;
}

.form-type-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.form-type:hover .form-type-icon {
    transform: translateY(-10px);
}

.form-type p {
    font-weight: 500;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.platform-compatibility {
    margin-top: 60px;
    text-align: center;
}

.platform-compatibility h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-color);
}

/* Demo Container */
.demo-container {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.demo-header {
    padding: 20px;
    text-align: center;
    color: white;
}

.demo-header h3 {
    font-size: 22px;
    font-weight: 600;
}

.demo-video {
    background: rgba(255, 255, 255, 0.9);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.1);
}

.video-placeholder i {
    font-size: 70px;
    color: var(--primary-color);
}

.video-placeholder span {
    font-weight: 600;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials-container {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-width: 300px;
    flex: 1;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 30px;
    color: rgba(76, 175, 80, 0.2);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #777;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    background: var(--light-color);
    padding: 100px 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

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

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    color: var(--text-color);
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 16px;
    color: #777;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

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

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

.pricing-features li.not-included {
    color: #999;
}

.pricing-features i {
    font-size: 16px;
    color: var(--primary-color);
}

.pricing-features li.not-included i {
    color: #ccc;
}

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

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}

.pricing-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Waitlist Container Styling */
.waitlist-container {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.waitlist-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.waitlist-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.waitlist-btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.waitlist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    color: var(--primary-hover);
}

.waitlist-btn i {
    font-size: 1.2rem;
}

.cta-button-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-section .waitlist-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.cta-section .waitlist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-section .waitlist-btn i {
    font-size: 1.3rem;
}

/* Header waitlist button styling */
header .waitlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

header .waitlist-btn i {
    font-size: 1rem;
}

header .waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero section waitlist button styling */
.hero .waitlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .waitlist-btn i {
    font-size: 1.1rem;
}

/* Floating Form Types */
.floating-form-types {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-form-types .form-type {
    position: absolute;
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: auto;
    animation: floatFormType 6s ease-in-out infinite;
}

.form-type.left-top {
    top: 0%;
    left: -5%;
    animation-delay: 0s;
}

.form-type.left-middle {
    top: 35%;
    left: -12%;
    animation-delay: 2s;
}

.form-type.left-bottom {
    bottom: 5%;
    left: -5%;
    animation-delay: 1.5s;
}

.form-type.right-top {
    top: 0%;
    right: -5%;
    animation-delay: 2.5s;
}

.form-type.right-middle {
    top: 30%;
    right: -12%;
    animation-delay: 1s;
}

.form-type.right-bottom {
    bottom: 5%;
    right: 5%;
    animation-delay: 3s;
}

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

.form-type-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.form-type:hover .form-type-icon {
    transform: translateY(-10px);
}

.form-type p {
    font-weight: 500;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

/* Waitlist Popup Styles */
.waitlist-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.waitlist-popup.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

.waitlist-popup-content {
    background-color: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.waitlist-popup.active .waitlist-popup-content {
    animation: slideUp 0.3s forwards;
}

.waitlist-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.waitlist-close:hover {
    color: var(--dark-color);
}

.waitlist-popup h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.waitlist-popup p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.waitlist-submit-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.waitlist-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.waitlist-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
}

.waitlist-success.active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

.waitlist-success i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.waitlist-success h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.waitlist-success p {
    color: var(--light-text);
}

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

@keyframes slideUp {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .waitlist-popup-content {
        padding: 2rem 1.5rem;
    }
}
  