/* Global Styles */
:root {
    --primary-color: #4F46E5; /* Synthesia-inspired indigo - Main blue color for fonts: #4F46E5 */
    --secondary-color: #06B6D4; /* Cyan accent */
    --secondary-color-rgb: 6, 182, 212; /* RGB for secondary color */
    --accent-color: #FF5733; /* Red accent for CTAs - THIS IS THE MAIN RED COLOR */
    --text-color: #1E293B; /* Dark slate for readability */
    --light-bg: #F8FAFC; /* Light background */
    --dark-bg: #0F172A; /* Dark background for contrast sections */
    --border-radius: 16px; /* Rounded corners */
    --transition-speed: 0.3s; /* Consistent transition speed */
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-unit: 8px; /* Base spacing unit */
    --synthesia-gradient: linear-gradient(135deg, #EEF2FF 0%, #F0FDFF 100%); /* Subtle light gradient */
    --vh: 1vh; /* Variable for mobile viewport height fix */
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #FFFFFF;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

section {
    padding: calc(var(--spacing-unit) * 12) 0;
    position: relative;
}

/* Common Components */
.cta-button {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(67, 83, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    background: var(--accent-color);
    border-radius: var(--border-radius);
    font-weight: 800;
    position: relative;
    overflow: hidden;
    padding: 16px 32px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: none;
    text-transform: uppercase;
    z-index: 1;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Improve touch response */
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 15px rgba(255, 87, 51, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #E64A28;
    animation: subtle-scale 0.5s ease-in-out;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.7s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Primary CTA - most important actions */
.cta-primary {
    background: linear-gradient(90deg, #FF5733, #E64A28);
    font-size: 1.2rem;
    padding: 18px 36px;
    box-shadow: 0 8px 15px rgba(255, 87, 51, 0.3);
    border: 2px solid #FF5733;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-primary:hover {
    background: linear-gradient(90deg, #E64A28, #D63E1C);
    box-shadow: 0 12px 20px rgba(255, 87, 51, 0.5);
    border-color: #D63E1C;
    transform: translateY(-5px) scale(1.03);
}

.cta-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
    transition: left 0.7s ease;
}

.cta-primary:hover::after {
    left: 100%;
}

/* Secondary CTA - supporting actions */
.cta-secondary {
    background: linear-gradient(90deg, #4F46E5, #4338CA);
    box-shadow: 0 8px 15px rgba(79, 70, 229, 0.3);
}

.cta-secondary:hover {
    background: linear-gradient(90deg, #4338CA, #3730A3);
    box-shadow: 0 12px 20px rgba(79, 70, 229, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.cta-button:hover::after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Promotion Button */

/* Enhanced Promotion Section */

/* Removed .special-offer-section::before SVG pattern */

.promotion-highlight-special {
    display: inline-block;
    background: rgba(var(--secondary-color-rgb), 0.1); /* Lighter, using secondary color with alpha */
    color: var(--secondary-color); /* Text color is the secondary color */
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 600; /* Slightly less bold */
    position: relative;
    letter-spacing: 0.02em;
    /* box-shadow removed for a cleaner look */
}

/* Removed .promotion-cta-wrapper-special:hover rule */

/* Countdown Timer */
.countdown-timer {
    margin-top: 1.5rem; /* Increased margin */
    background: rgba(79, 70, 229, 0.05); /* Very subtle primary bg */
    border-radius: var(--border-radius); /* Consistent border radius */
    padding: 1rem;
    display: inline-block;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white; /* White background for units */
    border-radius: calc(var(--border-radius) / 2); /* Smaller radius */
    padding: 0.6rem 1rem; /* Adjusted padding */
    min-width: 65px; /* Adjusted min-width */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.countdown-value {
    font-size: 1.8rem; /* Larger value */
    font-weight: 700; /* Bold */
    color: var(--primary-color); /* Changed from accent to primary color for balance */
    line-height: 1;
}

@media (max-width: 768px) {
    
    .promotion-highlight-special {
        display: inline-block;
        margin-top: 0.5rem;
        padding: 0.3rem 0.8rem; /* Keep as is or slightly adjust if needed */
    }
    
    .countdown-timer {
        margin-top: 1.2rem; /* Adjusted for new base size */
        padding: 0.75rem; /* Adjusted for new base size */
    }
    
    .countdown-unit {
        min-width: 55px; /* Adjusted for new base size */
        padding: 0.5rem 0.7rem; /* Adjusted for new base size */
    }
    
    .countdown-value {
        font-size: 1.5rem; /* Adjusted for new base size */
    }
}

/* Feature Cards */
.feature-card {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    background-color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    animation: floatShadow 8s ease-in-out infinite;
    animation-play-state: paused;
    cursor: pointer;
}

.feature-card:hover {
    animation-play-state: running;
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(67, 83, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0);
}

.feature-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 83, 255, 0.03), rgba(0, 194, 255, 0.03));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(67, 83, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(50%, 50%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 83, 255, 0.1);
    box-shadow: var(--box-shadow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
    transform: translate(30%, 30%);
}

.feature-card .text-4xl {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: inline-block;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-color);
}

.feature-card p {
    color: #64748B;
    line-height: 1.6;
}

.feature-card .icon-circle {
    transition: transform 0.5s ease, background-color 0.3s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(67, 83, 255, 0.2);
}

.feature-card:hover .icon-circle i {
    animation: wiggle 1s ease infinite;
}

/* Testimonial Carousel */
.testimonials-carousel {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 1.5rem 0;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
    background-color: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transform-origin: center bottom;
}

.testimonial-card:hover {
    animation: gentle-bounce 2s ease infinite;
}

.testimonial-card::after {
    content: '\201D'; /* Closing quote mark */
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 80px;
    color: rgba(67, 83, 255, 0.05);
    font-family: serif;
    line-height: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

.testimonial-card:hover::after {
    transform: translateY(-5px) rotate(5deg);
    opacity: 0.8;
}

.testimonial-card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
    border-color: rgba(67, 83, 255, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card img {
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px rgba(67, 83, 255, 0.1);
    width: 64px;
    height: 64px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(67, 83, 255, 0.2);
}

.testimonial-card p {
    font-style: italic;
    color: #475569;
    line-height: 1.7;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover p {
    color: #334155;
}

.testimonial-card .position {
    font-size: 0.875rem;
    color: #64748B;
}

.testimonial-card .text-yellow-400 {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .text-yellow-400 {
    transform: scale(1.1);
}

/* Enhanced Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(79, 70, 229, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.5;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* Featured Testimonial */
.featured-testimonial {
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.play-button-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    transform: scale(1);
}

.play-button-circle:hover {
    transform: scale(1.1);
    background-color: rgba(79, 70, 229, 1);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.5);
}

.testimonial-logo {
    transition: all 0.3s ease;
}

.featured-testimonial:hover .testimonial-logo {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    z-index: 1;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.testimonial-card::before {
    content: '\201C'; /* Opening quote mark */
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: rgba(79, 70, 229, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.2);
    animation: star-pulse 1.5s infinite alternate;
    animation-delay: calc(var(--star-index, 0) * 0.1s);
}

.testimonial-card:hover .testimonial-rating i:nth-child(1) { --star-index: 1; }
.testimonial-card:hover .testimonial-rating i:nth-child(2) { --star-index: 2; }
.testimonial-card:hover .testimonial-rating i:nth-child(3) { --star-index: 3; }
.testimonial-card:hover .testimonial-rating i:nth-child(4) { --star-index: 4; }
.testimonial-card:hover .testimonial-rating i:nth-child(5) { --star-index: 5; }

/* Testimonial Carousel */

.testimonial-carousel-track {
    transition: transform 0.5s ease;
}

.testimonial-carousel-item {
    padding: 10px;
    transition: all 0.3s ease;
}

.testimonial-carousel-item:hover {
    transform: translateY(-5px);
}

@keyframes star-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); }
}

@media (max-width: 768px) {
    .testimonial-carousel-item {
        width: 100%;
    }
    
    .play-button-circle {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

/* Comparison Table Styles */
.comparison-item {
    transition: all 0.2s ease;
}

.comparison-item:hover {
    background-color: #f9fafb;
}

/* Device Mockup */

/* FAQ Accordion */
.faq-item {
    transition: all var(--transition-speed) ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(93, 95, 239, 0.1);
    transform: translateZ(0);
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(93, 95, 239, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: rgba(93, 95, 239, 0.2);
    transform: translateY(-2px);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
    z-index: 1;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-question {
    font-weight: 500;
    position: relative;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: inherit;
}

.faq-question:hover {
    background-color: rgba(93, 95, 239, 0.03);
}

.faq-question.active {
    background-color: rgba(79, 70, 229, 0.02);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-question i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.faq-question:hover i {
    color: var(--secondary-color);
}

.faq-answer {
    background-color: var(--light-bg);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer div {
    transition: opacity 0.3s ease 0.1s;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Smooth accordion animation */
.faq-item[aria-expanded="true"] .faq-answer {
    border-top-color: rgba(79, 70, 229, 0.2);
}

/* Enhanced focus styles for accessibility */
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Responsive line break */
.desktop-break {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-break {
        display: none;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer div {
        padding: 1rem 1.25rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Logo Styling */
.logo-container {
    position: relative;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.shadow-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
@media (max-width: 768px) {
    #mobile-menu {
        transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, visibility 0.3s ease;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        position: fixed;
        left: 0;
        right: 0;
        top: 70px; 
        width: 100%;
        z-index: 1000; 
        background-color: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
    }
    
    #mobile-menu.active {
        max-height: calc(100vh - 70px); 
        opacity: 1;
        transform: translateY(0);
        overflow-y: auto; 
        visibility: visible;
    }
    
    /* Fix for iOS Safari */
    .synthesia-nav {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        position: -webkit-sticky; /* iOS Safari */
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform; /* Performance optimization */
        height: 70px; /* Fixed height for consistency */
        display: flex;
        align-items: center;
    }
    
    .logo-container {
        padding: 0.25rem;
        z-index: 1001; /* Ensure logo stays above mobile menu */
    }
    
    .synthesia-nav {
        padding: 0.75rem 0;
        position: relative;
    }
    
    #mobile-menu a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        display: flex;
        width: 100%;
        transition: background-color 0.2s ease, color 0.2s ease;
        min-height: 54px; /* Increased minimum touch target size */
        align-items: center;
        justify-content: flex-start;
        font-size: 16px; /* Ensure readable text size on mobile */
        font-weight: 500;
    }
    
    #mobile-menu a:hover, 
    #mobile-menu a:active {
        background-color: rgba(79, 70, 229, 0.05);
        color: var(--primary-color);
    }
    
    #mobile-menu a:last-child {
        border-bottom: none;
    }
    
    #mobile-menu-button {
        padding: 0.75rem;
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001; /* Ensure button stays above mobile menu */
        background-color: transparent;
        border-radius: 8px;
    }
    
    #mobile-menu-button:active {
        background-color: rgba(79, 70, 229, 0.1);
    }
}

/* Navigation Links Animation */
nav a {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

nav a:hover {
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
    opacity: 1;
}

.logo-container div {
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.logo-container:hover div {
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(67, 83, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    
    .synthesia-hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .synthesia-hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .synthesia-hero {
        padding: 2rem 0;
        overflow-x: hidden;
        width: 100%;
        padding-top: 80px; /* Add padding to account for fixed header */
    }
    
    .synthesia-image-container {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .hero-container {
        padding: 0 1rem;
        width: 100%;
    }
    
    .synthesia-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix for touch events */
    .touch-manipulation {
        touch-action: manipulation;
    }
    
    /* Improved touch targets for mobile */
    .synthesia-feature, 
    .nav-link,
    #mobile-menu a,
    .cta-button,
    #mobile-menu-button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px; /* Minimum touch target size */
        -webkit-user-select: none; /* Prevent text selection during taps */
        user-select: none;
    }
    
    /* Fix for iOS viewport height issues */
    @supports (-webkit-touch-callout: none) {
        .synthesia-hero {
            min-height: -webkit-fill-available;
            height: -webkit-fill-available;
            padding-top: calc(80px + env(safe-area-inset-top));
            padding-bottom: env(safe-area-inset-bottom);
        }
        
        body, html {
            height: -webkit-fill-available;
            overflow-x: hidden;
        }
        
        .synthesia-nav {
            padding-top: max(0.5rem, env(safe-area-inset-top));
            position: fixed;
            width: 100%;
            top: 0;
        }
        
        #mobile-menu {
            top: calc(70px + env(safe-area-inset-top));
            max-height: calc(100vh - 70px - env(safe-area-inset-top));
        }
    }
}

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

@keyframes floatShadow {
    0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transform: translateY(0px); }
    50% { box-shadow: 0 25px 15px rgba(0, 0, 0, 0.05); transform: translateY(-5px); }
    100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transform: translateY(0px); }
}

@keyframes subtle-rotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

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

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

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.03); opacity: 0.75; }
    100% { transform: scale(1); opacity: 0.85; }
}

@-webkit-keyframes wiggle {
    0% { -webkit-transform: rotate(-2deg); }
    50% { -webkit-transform: rotate(2deg); }
    100% { -webkit-transform: rotate(-2deg); }
}

@keyframes wiggle {
    0% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

@-webkit-keyframes breathe {
    0% { -webkit-transform: scale(1); opacity: 1; }
    50% { -webkit-transform: scale(1.05); opacity: 0.95; }
    100% { -webkit-transform: scale(1); opacity: 1; }
}

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

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

@-webkit-keyframes gentle-bounce {
    0% { -webkit-transform: translateY(0); }
    50% { -webkit-transform: translateY(-5px); }
    100% { -webkit-transform: translateY(0); }
}

@keyframes gentle-bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@-webkit-keyframes border-pulse {
    0% { border-color: rgba(67, 83, 255, 0.2); }
    50% { border-color: rgba(67, 83, 255, 0.5); }
    100% { border-color: rgba(67, 83, 255, 0.2); }
}

@keyframes border-pulse {
    0% { border-color: rgba(67, 83, 255, 0.2); }
    50% { border-color: rgba(67, 83, 255, 0.5); }
    100% { border-color: rgba(67, 83, 255, 0.2); }
}

@-webkit-keyframes text-glow {
    0% { text-shadow: 0 0 0 rgba(67, 83, 255, 0); }
    50% { text-shadow: 0 0 10px rgba(67, 83, 255, 0.3); }
    100% { text-shadow: 0 0 0 rgba(67, 83, 255, 0); }
}

@keyframes text-glow {
    0% { text-shadow: 0 0 0 rgba(67, 83, 255, 0); }
    50% { text-shadow: 0 0 10px rgba(67, 83, 255, 0.3); }
    100% { text-shadow: 0 0 0 rgba(67, 83, 255, 0); }
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Who It's For Section */
.who-its-for-section {
    background-color: #F8FAFC;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
    padding: 40px 0;
    position: relative;
    border-top: 3px solid var(--primary-color);
}


.who-its-for-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #4B5563;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.persona-cards-container {
    position: relative;
    margin-bottom: 3rem;
}

.persona-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #E5E7EB;
}

.persona-cards-grid::-webkit-scrollbar {
    height: 8px;
}

.persona-cards-grid::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 10px;
}

.persona-cards-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid #F3F4F6;
}

.persona-cards-grid::-webkit-scrollbar-thumb:hover {
    background-color: #4338CA;
}

.persona-card {
    background-color: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 0 0 260px;
    height: 260px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .persona-cards-grid {
        padding: 1rem;
        margin: 0 -1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .persona-cards-grid::-webkit-scrollbar {
        display: none;
    }
    
    .persona-card {
        flex: 0 0 280px;
        height: auto;
        min-height: 200px;
    }
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02), rgba(79, 70, 229, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.persona-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 12px;
}

.persona-card:hover::after {
    opacity: 0.15;
}

.persona-card.tradies::after {
    background-image: url('https://api.congero.com.au/imgs/2d00d9a7-40d9-4d9a-84fe-ef83f4ecf41f.jpg');
}

.persona-card.cleaners::after {
    background-image: url('https://api.congero.com.au/imgs/a32e0c74-3efc-4c37-9632-103bc7bb8f33.jpg');
}

.persona-card.beauty::after {
    background-image: url('https://api.congero.com.au/imgs/84571f05-2559-42d8-9d16-60070ba0a5e2.jpg');
}

.persona-card.automotive::after {
    background-image: url('https://api.congero.com.au/imgs/f8f20319-ad09-4c73-83f4-11030d5bf7b5.jpg');
}

.persona-card.pet-services::after {
    background-image: url('https://api.congero.com.au/imgs/8a52a9c0-bbd7-402a-8643-c0006b534dac.jpg');
}

.persona-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.persona-card:hover::before {
    opacity: 1;
}

.persona-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    display: block;
    align-self: flex-start;
}

.persona-card:hover .persona-icon {
    animation: wobble 0.6s ease-in-out;
    transform: rotate(5deg);
}

.persona-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1F2937;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.persona-benefit {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.micro-cta-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.micro-cta-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.micro-cta-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.micro-cta-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.micro-cta-button {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

.micro-cta-button:hover {
    background: linear-gradient(90deg, #4338CA, #0891B2);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}

@media (max-width: 768px) {
    .who-its-for-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .micro-cta-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .micro-cta-input {
        width: 100%;
        min-width: auto;
    }
    
    .micro-cta-button {
        width: 100%;
    }
}

@keyframes wobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(5deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(3deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-cta .cta-button {
    box-shadow: 0 8px 20px rgba(255, 87, 51, 0.4);
    animation: pulse 3s infinite;
    padding: 16px 28px;
    font-weight: 800;
    border: 2px solid #FF5733;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.floating-cta .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 87, 51, 0.5);
}

/* Global CTA Button Animation */

.cta-pulse {
    /* subtle static glow effect instead of pulsating */
    box-shadow: 0 0 8px rgba(248, 130, 121, 0.3);
    /* animation removed for reduced distraction */
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
        width: auto;
    }
    
    .floating-cta .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-cta .cta-button {
        padding: 12px 18px;
        font-size: 0.9rem;
        max-width: 180px;
        font-weight: 800;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }
    
    .cta-button {
        padding: 16px 20px;
        font-size: 1rem;
        min-height: 52px;
        font-weight: 800;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
}

/* Footer Social Icons */
footer .social-icons a {
    position: relative;
    overflow: visible;
}

footer .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    transform: scale(0);
    transition: transform 0.3s ease-out;
}

footer .social-icons a:hover::before {
    animation: ripple 1s ease-out forwards;
}

footer .flex.space-x-4 a:hover {
    transform: translateY(-5px) rotate(5deg);
    background-color: rgba(79, 70, 229, 0.8);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

footer .flex.space-x-4 a i {
    transition: transform 0.3s ease;
}

footer .flex.space-x-4 a:hover i {
    transform: scale(1.2);
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.fade-in {
    animation: fadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.breathe-animation {
    animation: breathe 4s ease-in-out infinite;
    position: relative;
}

.breathe-animation::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: var(--border-radius);
    background: linear-gradient(90deg, #FF5757, #FF3131);
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.slide-up-fade {
    animation: slideUpFade 0.5s ease-out forwards;
}

.text-glow-hover:hover {
    animation: text-glow 2s ease-in-out infinite;
}

.border-pulse {
    animation: border-pulse 2s ease-in-out infinite;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Focus Styles for Accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    transition: outline-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 4px rgba(67, 83, 255, 0.1);
}

/* Enhanced Link Animations */
a:not(.cta-button):not(.promotion-button):not(.hero-cta) {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:not(.cta-button):not(.promotion-button):not(.hero-cta)::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

a:not(.cta-button):not(.promotion-button):not(.hero-cta):hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Image Hover Effects */
img:not(.testimonial-card img) {
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

img:not(.testimonial-card img):hover {
    transform: scale(1.02);
    filter: brightness(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.analytics-image {
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

.analytics-image:hover {
    transform: scale(1.05) perspective(500px) rotateY(5deg);
    filter: brightness(1.1) contrast(1.05);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.15);
}


/* Background Patterns */
.bg-pattern {
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(rgba(67, 83, 255, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(0, 194, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-subtle {
    background-color: rgba(248, 250, 252, 0.8);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: white;
}

/* Container with max width for content */

/* Spacing utilities */

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Custom Container */

/* Analytics Section Styles */
.analytics-feature-item {
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.analytics-feature-item:hover {
    transform: translateX(8px);
    background-color: rgba(248, 250, 252, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.analytics-preview-container {
    position: relative;
    z-index: 1;
}

.analytics-preview-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 24px;
    z-index: -1;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.analytics-preview-container:hover::before {
    transform: rotate(0deg);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Process Section Styles */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(79, 70, 229, 0.02) 1px, transparent 1px),
        radial-gradient(rgba(6, 182, 212, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.8;
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-step {
    position: relative;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    text-decoration: none;
    color: inherit;
}

/* Clickable process step specific styles */
.process-step-clickable {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.process-step-clickable:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 35px -5px rgba(79, 70, 229, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    text-decoration: none;
    color: inherit;
}

.process-step-clickable:hover .process-step-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.process-step-clickable:hover .process-step-icon i {
    color: white;
    animation: pulse 1s ease infinite;
}

.process-step-clickable:hover .process-step-title {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.process-step-clickable:hover .process-step-number {
    transform: scale(1.3);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(79, 70, 229, 0.4);
}

.process-step-clickable:hover .process-step-time {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}

.process-step-clickable:active {
    transform: translateY(-8px) scale(1.01);
}

/* Focus styles for accessibility */
.process-step-clickable:focus {
    outline: 3px solid rgba(79, 70, 229, 0.5);
    outline-offset: 2px;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(79, 70, 229, 0.2);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02), rgba(6, 182, 212, 0.02));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step-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: 1rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.process-step:hover .process-step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.3);
}

.process-step-icon i {
    font-size: 1.75rem;
    color: white;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-icon i {
    transform: scale(1.1);
    animation: wiggle 1s ease infinite;
}

.process-step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
    transform: scale(1.2);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.process-step:hover .process-step-title {
    color: var(--primary-color);
}

.process-step-description {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-time {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.process-step:hover .process-step-time {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Mobile adjustments for process section */
@media (max-width: 768px) {
    .process-step {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .process-step-icon {
        width: 64px;
        height: 64px;
    }
    
    .process-step-icon i {
        font-size: 1.5rem;
    }
    
    .process-step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: -10px;
        right: -10px;
    }
    
    .process-step-title {
        font-size: 1rem;
    }
    
    .process-step-description {
        font-size: 0.85rem;
    }
    
    .process-step-time {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

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

/* Hero Demo Form Styles */
.hero-demo-form {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.hero-demo-form:hover {
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

.hero-demo-form input:focus {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-demo-form button {
    position: relative;
    overflow: hidden;
}

.hero-demo-form button::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.6s ease;
}

.hero-demo-form button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .hero-demo-form {
        margin: 0 1rem;
        padding: 1.25rem;
    }
    
    .hero-demo-form input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Services Options Section */
.services-options-section {
    position: relative;
    overflow: hidden;
}

.services-options-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        radial-gradient(rgba(249, 115, 22, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.6;
    z-index: 0;
}

.services-options-section .container {
    position: relative;
    z-index: 1;
}

.service-option-card {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-option-icon {
    transition: transform 0.3s ease;
}

.service-option-card:hover .service-option-icon {
    transform: scale(1.1) rotate(5deg);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.service-option-card ul {
    flex-grow: 1;
}

.service-option-card .cta-button {
    margin-top: auto;
}

/* Service Selection Tabs */
.service-tab {
    cursor: pointer;
    border: none;
    background: none;
}

.service-tab.active {
    background-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.3);
}

.service-tab:not(.active):hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

/* Service Forms */

@media (max-width: 768px) {
    .service-option-card {
        margin-bottom: 2rem;
    }
    
    .service-option-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #374151; /* Darker gray for better contrast */
    }
    
    .service-option-card p strong {
        color: #9A3412; /* Darker orange for better contrast */
    }
    
    .service-tab {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
    }
    
    .price-display {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
}

/* Enhanced Website Preview Styles */
#website-preview {
    border: 1px solid #D1D5DB; /* Tailwind Gray 300 */
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Softer shadow */
    background-color: #F9FAFB; /* Tailwind Gray 50 */
    overflow: hidden;
    height: auto;
    min-height: 450px; /* Increased min-height */
    aspect-ratio: unset;
}

.preview-website-container {
    font-family: 'Inter', sans-serif;
    color: #374151; /* Tailwind Gray 700 for base text */
    background-color: #FFFFFF; /* White background for the site content */
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Ensure it fills the #website-preview container */
    max-height: 70vh; 
    overflow-y: auto;
    scrollbar-width: thin; 
    scrollbar-color: var(--preview-primary-color, #4F46E5) #E5E7EB; /* Default primary to indigo */
}

.preview-website-container::-webkit-scrollbar {
    width: 8px;
}

.preview-website-container::-webkit-scrollbar-track {
    background: #F3F4F6; /* Tailwind Gray 100 */
    border-radius: 10px;
}

.preview-website-container::-webkit-scrollbar-thumb {
    background-color: var(--preview-primary-color, #4F46E5); /* Default primary to indigo */
    border-radius: 10px;
    border: 2px solid #F3F4F6; 
}

.preview-website-container::-webkit-scrollbar-thumb:hover {
    background-color: color-mix(in srgb, var(--preview-primary-color, #4F46E5) 80%, black 20%);
}

/* Header */
.preview-header {
    background-color: #FFFFFF;
    padding: 0.75rem 1.5rem; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E7EB; /* Tailwind Gray 200 */
    position: sticky; 
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.preview-logo {
    font-size: 1.25rem; 
    font-weight: 700; /* Bold */
    color: var(--preview-primary-color, #4F46E5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
}

.preview-logo-icon {
    font-size: 1.1em; 
    opacity: 0.8;
}

.preview-logo:hover {
    opacity: 0.85;
}

.preview-nav {
    display: flex;
    gap: 1.25rem; 
}

.preview-nav-link {
    font-size: 0.875rem; 
    font-weight: 500; /* Medium */
    color: #4B5563; /* Tailwind Gray 600 */
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.25s ease;
}

.preview-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; 
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--preview-primary-color, #4F46E5);
    transition: width 0.3s ease-in-out;
}

.preview-nav-link:hover {
    color: var(--preview-primary-color, #4F46E5);
}

.preview-nav-link:hover::after {
    width: 100%;
}

.preview-nav-contact { 
    font-weight: 600; /* Semibold */
    color: var(--preview-primary-color, #4F46E5);
}

/* Hero Section */
.preview-hero-section {
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem; /* Increased padding */
    background: linear-gradient(145deg, rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.05) 0%, rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.15) 100%);
    color: #1F2937; /* Tailwind Gray 800 for hero text */
    position: relative;
    overflow: hidden; 
}

.preview-hero-content {
    max-width: 550px; 
    opacity: 0;
    transform: translateY(15px);
    animation: preview-fade-in-up 0.7s 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.preview-hero-title {
    font-size: 2.25rem; /* Increased font size */
    font-weight: 800; /* Extrabold */
    line-height: 1.2; /* Tighter line height */
    margin-bottom: 1rem; /* Increased margin */
    color: var(--preview-primary-color, #4F46E5); 
    letter-spacing: -0.025em;
}

.preview-hero-subtitle {
    font-size: 1.05rem; /* Slightly increased */
    font-weight: 400;
    color: #4B5563; /* Tailwind Gray 600 */
    margin-bottom: 1.75rem; /* Increased margin */
    line-height: 1.65; /* Improved readability */
}

.preview-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem; 
    background-color: var(--preview-primary-color, #4F46E5);
    color: #FFFFFF;
    padding: 0.75rem 1.75rem; /* Adjusted padding for better feel */
    border-radius: 50px; /* Pill shape */
    font-weight: 600; /* Semibold */
    font-size: 1rem; 
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.preview-hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.35);
    background-color: color-mix(in srgb, var(--preview-primary-color, #4F46E5) 90%, black 10%); /* Darken on hover */
}

.preview-hero-cta i {
    font-size: 0.9em; 
    transition: transform 0.3s ease;
}
.preview-hero-cta:hover i {
    transform: translateX(3px);
}


.preview-hero-image-wrapper {
    width: 100%;
    max-width: 500px; 
    margin-top: 2.5rem; /* Increased margin */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(15px);
    animation: preview-fade-in-up 0.7s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.preview-hero-image {
    width: 100%;
    padding-bottom: 60%; 
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-out;
}

.preview-hero-image-wrapper:hover .preview-hero-image {
    transform: scale(1.05);
}

/* Section Title (Shared) */
.preview-section-title {
    font-size: 1.75rem; /* Increased font size */
    font-weight: 700; /* Bold */
    color: #1F2937; /* Tailwind Gray 800 */
    text-align: center;
    margin-bottom: 2.5rem; /* Increased margin */
    padding-top: 3rem; /* Increased padding */
    position: relative;
}

.preview-section-title::before {
    content: '';
    position: absolute;
    top: 1rem; 
    left: 50%;
    transform: translateX(-50%);
    width: 50px; 
    height: 3.5px; /* Slightly thicker */
    background-color: var(--preview-primary-color, #4F46E5);
    border-radius: 2px;
    opacity: 0.7; 
}

/* Services Section */
.preview-services-section {
    padding: 3rem 1.5rem; /* Increased padding */
    background-color: #F9FAFB; /* Tailwind Gray 50 */
}

.preview-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); /* Adjusted minmax */
    gap: 1.5rem; /* Increased gap */
}

.preview-service-card {
    background-color: #FFFFFF;
    padding: 1.75rem; /* Increased padding */
    border-radius: 10px;
    border: 1px solid #E5E7EB; /* Tailwind Gray 200 */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
    animation: preview-fade-in-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-services-grid .preview-service-card:nth-child(1) { animation-delay: 0.2s; }
.preview-services-grid .preview-service-card:nth-child(2) { animation-delay: 0.35s; } /* Staggered delay */
.preview-services-grid .preview-service-card:nth-child(3) { animation-delay: 0.5s; }
.preview-services-grid .preview-service-card:nth-child(4) { animation-delay: 0.65s; }


.preview-service-card:hover {
    transform: translateY(-5px); /* More lift */
    box-shadow: 0 12px 25px rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.12); /* Enhanced shadow */
    border-color: rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.4); /* Primary color border */
}

.preview-service-card-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; /* Slightly larger */
    height: 52px;
    border-radius: 50%;
    background-color: rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.1);
    color: var(--preview-primary-color, #4F46E5);
    font-size: 1.4rem; /* Adjusted icon size */
    margin-bottom: 1.25rem; /* Increased margin */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.preview-service-card:hover .preview-service-card-icon-wrapper {
    transform: scale(1.12) rotate(10deg); /* More pronounced effect */
    background-color: rgba(var(--preview-primary-color-rgb, 79, 70, 229), 0.18);
}

.preview-service-card-title {
    font-size: 1.15rem; /* Increased font size */
    font-weight: 600; /* Semibold */
    color: #1F2937; /* Tailwind Gray 800 */
    margin-bottom: 0.6rem; /* Adjusted margin */
}

.preview-service-card-description {
    font-size: 0.9rem; /* Slightly larger */
    color: #6B7280; /* Tailwind Gray 500 */
    line-height: 1.55; /* Improved readability */
    flex-grow: 1; 
}

/* CTA Section */
.preview-cta-section {
    background-color: var(--preview-primary-color, #4F46E5);
    color: #FFFFFF;
    padding: 3.5rem 1.5rem; /* Increased padding */
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    animation: preview-fade-in-up 0.7s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    margin-top: auto; 
}

.preview-cta-content {
    max-width: 580px; /* Slightly wider */
    margin: 0 auto;
}

.preview-cta-icon {
    font-size: 2.25rem; /* Larger icon */
    margin-bottom: 1.25rem; /* Increased margin */
    opacity: 0.85; 
}

.preview-cta-title {
    font-size: 1.85rem; /* Consistent with section titles */
    font-weight: 700; /* Bold */
    margin-bottom: 1rem; /* Increased margin */
}

.preview-cta-text {
    font-size: 1.05rem; /* Slightly larger */
    margin-bottom: 2rem; /* Increased margin */
    opacity: 0.9;
    line-height: 1.65; /* Improved readability */
}

.preview-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #FFFFFF;
    color: var(--preview-primary-color, #4F46E5);
    padding: 0.8rem 1.85rem; /* Adjusted padding */
    border-radius: 50px;
    font-weight: 600; /* Semibold */
    font-size: 1.05rem; /* Slightly larger */
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.preview-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #F3F4F6; /* Tailwind Gray 100 */
}

.preview-cta-button i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}
.preview-cta-button:hover i {
    transform: translateX(4px);
}

/* Footer */
.preview-footer {
    background-color: #111827; /* Tailwind Gray 900 - darker for more contrast */
    color: #D1D5DB; /* Tailwind Gray 300 */
    padding: 1.5rem; /* Increased padding */
    text-align: center;
    font-size: 0.85rem; /* Slightly larger */
    border-top: 1px solid #374151; /* Tailwind Gray 700 */
}

.preview-footer p {
    margin: 0.25rem 0; 
    opacity: 0.9; /* Slightly more visible */
}

.preview-footer-powered {
    font-size: 0.8rem; /* Slightly larger */
    opacity: 0.75; /* Slightly more visible */
}

.preview-footer-powered .congero-brand {
    font-weight: 600; /* Semibold */
    color: #9CA3AF; /* Tailwind Gray 400 */
}

/* Animations for preview elements */
@keyframes preview-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px); /* Slightly more distance for emphasis */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for preview */
@media (max-width: 480px) { 
    .preview-header {
        padding: 0.75rem 1rem; /* Adjusted padding */
        flex-direction: column; 
        gap: 0.75rem; /* Added gap */
    }
    .preview-logo {
        font-size: 1.15rem; /* Adjusted */
    }
    .preview-nav {
        gap: 1rem; /* Adjusted */
        flex-wrap: wrap; 
        justify-content: center;
    }
    .preview-nav-link {
        font-size: 0.85rem; /* Adjusted */
    }

    .preview-hero-section {
        padding: 2.5rem 1rem; /* Adjusted */
    }
    .preview-hero-title {
        font-size: 1.75rem; /* Adjusted */
    }
    .preview-hero-subtitle {
        font-size: 0.95rem; /* Adjusted */
    }
    .preview-hero-cta, .preview-cta-button {
        padding: 0.65rem 1.3rem; /* Adjusted */
        font-size: 0.9rem; /* Adjusted */
    }

    .preview-services-section, .preview-cta-section {
        padding: 2.5rem 1rem; /* Adjusted */
    }
    .preview-section-title {
        font-size: 1.5rem; /* Adjusted */
        margin-bottom: 2rem; /* Adjusted */
        padding-top: 2.5rem; /* Adjusted */
    }
    .preview-services-grid {
        grid-template-columns: 1fr; 
        gap: 1.25rem; /* Adjusted */
    }
    .preview-service-card-title {
        font-size: 1.05rem; /* Adjusted */
    }
    .preview-cta-title {
        font-size: 1.6rem; /* Adjusted */
    }
    .preview-footer {
        padding: 1.25rem; /* Adjusted */
        font-size: 0.8rem; /* Adjusted */
    }
}
/* Blob animation for hero section */
@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.animate-blob {
  animation: blob 15s infinite ease-in-out;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* Synthesia-inspired Navigation */
.synthesia-nav {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    z-index: 1000;
    position: sticky;
    top: 0;
    width: 100%;
    overflow: visible;
    -webkit-transform: translateZ(0); /* Fix for iOS sticky positioning */
}

.nav-link {
    position: relative;
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0;
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

/* Synthesia-inspired Hero Section */
.synthesia-hero {
    background: var(--synthesia-gradient);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    min-height: calc(var(--vh, 1vh) * 70);
    display: flex;
    align-items: center;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    padding-top: 10px; /* Add some padding to prevent content from being hidden under fixed nav */
    padding-bottom: 10px;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    z-index: 0;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(79, 70, 229, 0.1) 1px, transparent 1px),
        radial-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.synthesia-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0F172A;
    margin-bottom: 0;
}

.synthesia-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.6;
}

.synthesia-image-container {
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.synthesia-image {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-2deg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.synthesia-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.25);
}

.synthesia-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

.synthesia-image:hover img {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.05);
}

/* Ensure image loads smoothly */
.synthesia-image img[loading="eager"] {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.synthesia-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    background: rgba(79, 70, 229, 0.2);
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: blob 15s infinite ease-in-out;
}

.blob-2 {
    background: rgba(6, 182, 212, 0.15);
    width: 250px;
    height: 250px;
    bottom: -30px;
    left: -30px;
    animation: blob 15s infinite ease-in-out reverse;
    animation-delay: 2s;
}

.synthesia-feature {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    justify-content: center;
}

.synthesia-feature:hover {
    transform: translateX(5px);
}

.synthesia-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.synthesia-feature:hover .synthesia-feature-icon {
    background: rgba(79, 70, 229, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.synthesia-feature-text {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .synthesia-feature {
        justify-content: center;
    }
    
    .synthesia-feature-icon {
        min-width: 30px;
        height: 30px;
        margin-right: 0.75rem;
    }
    
    .synthesia-feature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .synthesia-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-break: break-word;
        hyphens: auto;
    }
    
    .synthesia-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .synthesia-hero {
        min-height: auto;
        padding: 1rem 0 2rem;
        overflow-x: hidden;
        width: 100%;
        height: auto;
    }
    
    .synthesia-image-container {
        padding: 0;
        margin-top: 2rem;
        width: 100%;
        overflow: hidden;
        max-height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .synthesia-image {
        transform: none;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .synthesia-image img {
        max-width: 100%;
        max-height: 40vh;
        width: auto;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .synthesia-image:hover {
        transform: translateY(-5px);
    }
    
    .synthesia-feature {
        justify-content: left;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .synthesia-blob {
        opacity: 0.3;
        width: 150px;
        height: 150px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 1.1rem;
        white-space: normal;
        height: auto;
        line-height: 1.5;
        font-weight: 800;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.03em;
        min-height: 56px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Fix for hero section on very small screens */
    @media (max-width: 480px) {
        .synthesia-hero-title {
            font-size: 1.75rem;
        }
        
        .synthesia-hero-subtitle {
            font-size: 0.95rem;
        }
        
        .synthesia-feature-icon {
            min-width: 28px;
            height: 28px;
            font-size: 0.8rem;
        }
        
        .synthesia-feature-text {
            font-size: 0.85rem;
        }
        
        .hero-container {
            padding: 0 1rem;
        }
        
        .cta-button {
            padding: 14px 20px;
            font-size: 0.9rem;
        }
    }
}

/* Custom logo and gradient enhancements */

/* Text brand color class */
.text-brand {
    color: var(--primary-color);
}

/* Blue heading class for better visibility */
.text-blue-primary {
    color: var(--primary-color);
}

/* Section headings with blue accent */

/* Modern UI Elements */
.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--primary-color);
  border-radius: 1px;
  opacity: 0.3;
}

/* Remove blue line from specific headings */
.no-underline::after {
  display: none !important;
}

/* Ensure no blue lines on process section headings */
.process-section h3::after {
  display: none !important;
}

/* Icon styling */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(67, 83, 255, 0.1);
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
  animation: subtle-rotate 6s ease-in-out infinite;
  animation-play-state: running;
  animation-delay: calc(var(--animation-order, 0) * 0.5s);
}

/* Enhanced USP Section Styling */
.usp-section {
  position: relative;
  overflow: hidden;
}

.usp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(79, 70, 229, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  opacity: 0.6;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.usp-section .container {
  position: relative;
  z-index: 1;
}

/* Enhanced USP Card Styling */
.usp-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.02), rgba(6, 182, 212, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.usp-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.usp-card:hover::before {
  opacity: 1;
}

.usp-card > * {
  position: relative;
  z-index: 1;
}

/* Enhanced Icon Container */
.usp-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.usp-card:hover .usp-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.usp-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
}

/* Enhanced Title Styling */
.usp-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Enhanced Description */
.usp-description {
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Enhanced Comparison Styling */
.usp-comparison {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #F3F4F6;
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F9FAFB;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.comparison-item.traditional {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.comparison-item.congero {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.comparison-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-item .label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.comparison-item .value {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-item .value.negative {
  color: #DC2626;
}

.comparison-item .value.positive {
  color: #059669;
}

.comparison-item .icon {
  font-size: 0.75rem;
  opacity: 0.7;
}

.traditional .icon {
  color: #DC2626;
}

.congero .icon {
  color: #059669;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .usp-card {
    padding: 1.5rem;
  }
  
  .usp-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .usp-title {
    font-size: 1.125rem;
  }
  
  .comparison-item {
    padding: 0.5rem 0.75rem;
  }
  
  .comparison-item .label,
  .comparison-item .value {
    font-size: 0.8rem;
  }
}

/* Animation for section elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.usp-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.usp-card:nth-child(1) { animation-delay: 0.1s; }
.usp-card:nth-child(2) { animation-delay: 0.2s; }
.usp-card:nth-child(3) { animation-delay: 0.3s; }
.usp-card:nth-child(4) { animation-delay: 0.4s; }
.usp-card:nth-child(5) { animation-delay: 0.5s; }
.usp-card:nth-child(6) { animation-delay: 0.6s; }

/* USP Highlight Banner */
.usp-highlight-banner {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

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

.usp-highlight-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Utility class for vibrant orange background (Tailwind orange-500) */
.bg-orange-500 {
    background-color: #F97316; /* Consistent with Tailwind CSS orange-500 */
}
