/* Core Web Vitals Optimizations */
* {
    box-sizing: border-box;
}

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

/* Prevent layout shifts with font fallbacks */
@font-face {
    font-family: 'Geist Fallback';
    src: local('Arial');
    font-display: swap;
    ascent-override: 90%;
    descent-override: 25%;
    line-gap-override: 0%;
}

/* Base Styles - Updated with lime green theme color */
:root {
    --primary-color: #4F46E5;
    --primary-dark: #3730A3;
    --accent-color: #10B981;
    --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --text-color: #1F2937;
    --text-color-light: #6B7280;
    --text-color-muted: #9CA3AF;
    --light-bg: #ffffff;
    --section-bg: #F9FAFB;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
    --border-color: #E5E7EB;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    display: inline-block;
    font-family: 'Neucha', cursive;
    font-size: 1.25em;
    letter-spacing: 0.01em;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -6px;
    left: 0;
    background: var(--primary-gradient);
    border-radius: 3px;
    opacity: 0.8;
}

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

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 0;
    transform: translateY(0);
    transition: 
        transform 0.3s ease;
}

.navbar.scrolled {
    transform: translateY(20px);
    padding: 0;
    background-color: transparent;
    backdrop-filter: none;
}

.navbar .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled .container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.logo h2 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    text-transform: capitalize;
    color: var(--text-color);
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-buttons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/* Updated CTA button in navbar to match the image */
.cta-btn {
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    border: 1.5px solid var(--border-color);
    cursor: pointer;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* Updated button styles with black background and enhanced interactions */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    text-transform: capitalize;
    position: relative;
    padding-right: 64px;
    border: none;
    cursor: pointer;
    min-height: 52px;
}

.primary-btn:after {
    content: "→";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    background-color: rgba(79, 70, 229, 0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #1F2937;
}

.primary-btn:hover:after {
    transform: translateY(-50%) translateX(4px) scale(1.1);
    background-color: rgba(79, 70, 229, 0.25);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Hero Section - Icons Only Version (Muted, No Green) */
.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 100px;
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 80px 20px 0;
    border: none;
    box-shadow: none;
}



/* Gentler floating animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.hero .container {
    position: relative;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

/* Hero heading size adjustments */
.hero h1, .hero-content h1 {
    margin-bottom: 32px;
    font-size: 3.2rem; /* Increased base size */
    font-weight: 700; /* Increased weight */
    line-height: 1.1;
    max-width: 900px;
    letter-spacing: -0.025em;
}

.hero-tagline{
    font-size: 1.2rem;
    color: var(--text-color-light);
}

/* Update large desktop size to 4rem */
@media (min-width: 1200px) {
    .hero h1, .hero-content h1 {
        font-size: 4rem; /* Changed from 4.5rem to 4rem */
        line-height: 1.1;
    }
}

/* Medium desktop screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero h1, .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.15;
    }
}

/* Keep existing responsive sizing for smaller screens */
@media (max-width: 768px) {
    .hero h1, .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .navbar .container,
    .navbar.scrolled .container {
        padding: 20px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 55px 0 35px;
        margin: 70px 10px 0;
    }
    
    .hero h1, .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .highlight:after {
        height: 4px;
        bottom: -4px;
    }
    
    .subheadline {
        font-size: 0.85rem;
        line-height: 1.35;
        margin-bottom: 18px;
    }
    
    .primary-btn {
        width: 100%;
       
    }
    
    .supporting-text {
        font-size: 0.7rem;
        margin-top: 8px;
    }
}

.subheadline {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
}

.cta-container {
    margin-bottom: 20px;
    margin-top: 20px;

    p {
        margin-top: 10px;
    }
}

.supporting-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 15px;
    color: #000000;
}

/* Features Section - Fix visibility */
.features {
    padding: 140px 0;
    background-color: var(--section-bg);
    position: relative;
    width: 100%;
    margin: 0;
    overflow: visible;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Special layout for 5 cards: 2-2-1 pattern */
.features-grid .feature-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}


.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 70, 229, 0.15);
}



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

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

.feature-content {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 12px;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon i {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.35);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-weight: 400;
}

/* Pricing Section - Updated to remove hover animations */
.pricing {
    padding: 140px 0;
    background-color: #ffffff;
    width: 100%;
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 42px;
    border: 1.5px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

/* Enhanced styling for Pro plan (middle card) */
.pricing-card:nth-child(2) {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.06);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.25);
}

.pricing-card:nth-child(2) h3,
.pricing-card:nth-child(2) .pricing-price,
.pricing-card:nth-child(2) .pricing-subtitle,
.pricing-card:nth-child(2) .pricing-description,
.pricing-card:nth-child(2) .pricing-features li {
    color: white;
}

.pricing-card:nth-child(2) .primary-btn {
    background: #ffffff;
    color: #000000;
}


.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
}

.pricing-features {
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: inherit;
}

.pricing-features li::before {
    content: '✓';
    margin-right: 10px;
    color: var(--primary-color);
}

/* Pro plan checkmark color adjustment */
.pricing-card:nth-child(2) .pricing-features li::before {
    color: var(--primary-color);
}

.pricing-card .primary-btn {
    align-self: center;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Update CTA Section with increased min-height and fixed grid background */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    width: calc(100% - 40px);
    margin: 80px auto;
    border-radius: 20px;
    
    
}


/* Fix CTA heading visibility */
.cta-section h2 {
    
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

/* Fix CTA tagline visibility */
.cta-tagline {
  
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

/* Fix CTA button container visibility */
.cta-button-container {
    z-index: 2;
    margin-top: 30px;
}

/* Style the button specifically for the CTA section */
.cta-section .primary-btn {
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    text-transform: capitalize;
    position: relative;
    padding-right: 60px;
}

/* Match the arrow style with the hero and pricing buttons */
.cta-section .primary-btn:after {
    content: "→";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    background-color: rgba(32, 191, 107, 0.15);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Match hover effects */
.cta-section .primary-btn:hover {
    transform: translateY(-2px);
}

.cta-section .primary-btn:hover:after {
    transform: translateY(-50%) translateX(3px);
    background-color: rgba(32, 191, 107, 0.25);
}


/* Mobile Navigation - Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 30px;
        transition: 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    /* Hide the desktop CTA button on mobile */
    .nav-buttons {
        display: none;
    }
    
    /* Show the mobile CTA button */
    .mobile-cta {
        display: block;
        margin-top: 20px;
    }
    
    .mobile-cta .cta-btn {
        display: block;
        padding: 12px 20px;
        background-color: var(--primary-color);
        color: var(--text-color);
        border: none;
        font-weight: 600;
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .navbar .container {
        justify-content: space-between;
    }
}

/* Fix for hamburger menu positioning when navbar scrolls */
@media (max-width: 768px) {
    /* Reset navbar scrolled styles for mobile */
    .navbar.scrolled {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    /* Fix hamburger menu position */
    .hamburger-menu {
        position: relative;
        z-index: 1003;
    }
    
    /* Fix mobile menu positioning */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 30px;
        transition: 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        margin: 0;
        border-radius: 0;
    }
    
    /* Ensure no gaps when active */
    .nav-links.active {
        right: 0;
        top: 0;
    }
    
    /* Ensure container is properly positioned */
    .navbar .container,
    .navbar.scrolled .container {
        width: 100%;
    }
}

/* Fix for duplicate CTA buttons on desktop */
@media (min-width: 769px) {
    /* Hide the mobile CTA in desktop view */
    .mobile-cta {
        display: none;
    }
}



.hero .container {
    position: relative;
}

/* Use Cases Section */
.use-cases {
    padding: 140px 0;
    position: relative;
    width: 95%;
    border-radius: 20px;
    margin: 60px auto;
    border: none;
    position: relative;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}


/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.use-case-card {
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.use-case-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.use-case-card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Tab Content */
.tab-content {
    display: block; /* Always show the content */
}

.tab-content.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .use-cases {
        padding: 80px 0;
    }


    .use-case-card {
        padding: 25px;
    }

    .use-case-card h3 {
        font-size: 1.2rem;
    }
} 

/* FAQ Section Styles */
.faq-section {
    padding: 120px 0;
    background: var(--section-bg);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    padding: 28px;
    border: 1px solid var(--border-ai);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ai-purple);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .faq-item {
        padding: 24px;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-brand {
    margin-bottom: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.footer-copyright p {
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-tagline p {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 30px 0;
        margin-top: 60px;
    }
    
    .footer-simple {
        gap: 15px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-tagline p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-simple {
        gap: 12px;
    }
    
    .footer-logo {
        gap: 8px;
    }
    
    .footer-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
}

.pricing-note {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
}

.pricing-note p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-color-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-bottom: 25px;
    line-height: 1.4;
}

.pricing-addon {
    text-align: center;
    margin: 50px 0;
    padding: 36px;
    background-color: var(--section-bg);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.pricing-addon h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.addon-description {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin: 0;
}

.enterprise-section {
    text-align: center;
    padding: 44px;
    background-color: var(--section-bg);
    border-radius: var(--border-radius);
    border: 1.5px solid var(--border-color);
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.enterprise-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.enterprise-section p {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.enterprise-section .primary-btn {
    display: inline-block;
    margin-top: 10px;
}

/* Enhanced responsive design for features */
@media (max-width: 992px) {
    .features-grid {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .features-grid .feature-card:nth-child(5) {
        max-width: 100%;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        margin-right: 14px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
}

/* How It Works Flow Styles */
.how-it-works-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
    padding: 40px 0;
}

.step-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 200px;
    max-width: 250px;
    height: 200px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    border: 2px solid white;
}

.step-icon {
    margin: 20px 0 15px 0;
    display: flex;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: var(--text-color);
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.flow-arrow:hover {
    opacity: 1;
}

.final-step {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
}

.final-step h3 {
    color: white;
}

.final-step .step-icon i {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
}

/* Responsive Design for How It Works */
@media (max-width: 1200px) {
    .how-it-works-flow {
        gap: 15px;
    }
    
    .step-card {
        min-width: 180px;
        max-width: 220px;
        padding: 25px 20px;
    }
}

@media (max-width: 992px) {
    .how-it-works-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .step-card {
        min-width: 280px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .how-it-works-flow {
        margin-top: 40px;
        padding: 20px 0;
    }
    
    .step-card {
        min-width: 250px;
        max-width: 300px;
        padding: 20px 15px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-card h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .step-card {
        min-width: 200px;
        max-width: 250px;
        padding: 15px 10px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step-card h3 {
        font-size: 0.85rem;
    }
}