@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #6366f1;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --accent-light: #22d3ee;
    --text-color: #f8fafc;
    --light-text: #cbd5e1;
    --background: #0f172a;
    --dark-bg: #0a0f1d;
    --card-bg: #1e293b;
    --card-hover: #334155;
    --white: #ffffff;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--background));
    --glass-bg: rgba(30, 41, 59, 0.85);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glow: 0 0 15px rgba(99, 102, 241, 0.5);
    --glow-strong: 0 0 30px rgba(99, 102, 241, 0.8);
}

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

body {
    background: var(--background);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: backgroundAnimation 20s ease infinite alternate;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Global Section Styles */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
    top: 0;
    left: 0;
}

/* Header */
.business-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.5s ease;
}

.business-nav {
    display: flex;
    gap: 2.5rem;
}

.business-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.business-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.business-nav a:hover::after,
.business-nav a.active::after {
    width: 100%;
}

.business-nav a:hover,
.business-nav a.active {
    color: var(--primary-light);
    text-shadow: var(--glow);
}

#designSwitcher {
    background: var(--glass-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
    overflow: hidden;
    position: relative;
}

#designSwitcher::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: rotate(45deg);
    z-index: -1;
}

#designSwitcher:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    border-color: transparent;
}

#designSwitcher:hover::before {
    opacity: 1;
}

.content {
    margin-top: 80px;
    position: relative;
}

/* Hero Section */
.hero-with-photo {
    background: linear-gradient(135deg, var(--background) 0%, var(--card-bg) 100%);
    padding: 160px 0 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--background) 0%, rgba(15, 23, 42, 0.95) 30%, rgba(15, 23, 42, 0.8) 65%);
    opacity: 1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-glass {
    background: var(--glass-bg);
    color: var(--text-color);
    box-shadow: 0 8px 48px 0 rgba(37, 99, 235, 0.25);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    z-index: 2;
    text-align: center;
    padding: 100px 80px;
    margin: 0 auto;
    animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero-glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    animation: scaleAnimation 30s infinite alternate ease-in-out;
    filter: blur(2px);
}

@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-glass h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }
}

.hero-badge {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-badge::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-badge:hover {
    transform: none;
    box-shadow: none;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    animation: fadeInUp 1.3s cubic-bezier(.4,0,.2,1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: countUp 2s 1;
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Global Button Styles */
.cta {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 32px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    margin: 2rem 0 0 0;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.cta::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: 0.5s;
    z-index: -1;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -2;
    transition: var(--transition);
}

.cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 48px rgba(99, 102, 241, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

.cta:hover::after {
    filter: brightness(1.2);
}

.cta:active {
    transform: translateY(-2px) scale(0.98);
}

/* Global Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    animation: textGlow 3s infinite alternate;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Global Card Styles */
.card-base {
    background: var(--glass-bg);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.card-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.card-base:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

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

/* Global Icon Styles */
.icon-base {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.icon-base i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.icon-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.icon-base:hover::before {
    transform: translateX(100%);
}

/* Global Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

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

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

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply card-base to all card elements */
.solution-card,
.benefit-card,
.case-card,
.testimonial-card,
.faq-item,
.step-block,
.learn-list li,
.steps-list li,
.reasons-list li {
    @extend .card-base;
    padding: 2.5rem;
}

/* Apply icon-base to all icon elements */
.solution-icon,
.reason-icon,
.learn-icon,
.step-icon {
    @extend .icon-base;
}

/* Staggered animations for lists */
.learn-list li:nth-child(1) { animation-delay: 0.1s; }
.learn-list li:nth-child(2) { animation-delay: 0.2s; }
.learn-list li:nth-child(3) { animation-delay: 0.3s; }
.learn-list li:nth-child(4) { animation-delay: 0.4s; }

.solutions-grid .solution-card:nth-child(1) { animation-delay: 0.1s; }
.solutions-grid .solution-card:nth-child(2) { animation-delay: 0.2s; }
.solutions-grid .solution-card:nth-child(3) { animation-delay: 0.3s; }

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

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

.benefits-grid .benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4) { animation-delay: 0.4s; }

.cases-grid .case-card:nth-child(1) { animation-delay: 0.1s; }
.cases-grid .case-card:nth-child(2) { animation-delay: 0.2s; }
.cases-grid .case-card:nth-child(3) { animation-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.2s; }

.faq-list .faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-list .faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-list .faq-item:nth-child(3) { animation-delay: 0.3s; }

/* Apply fade-in and animation to elements */
.hero-glass,
.section-header,
.learn-list li,
.solution-card,
.steps-list li,
.reasons-list li,
.benefit-card,
.case-card,
.testimonial-card,
.faq-item,
.step-block,
.founder-container,
.case-quote,
.cta-offer {
    animation: fadeInUp 1s ease forwards;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.solution-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.feature {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--light-text);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Button styling for solution links */
.solution-link {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-link::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: 0.5s;
}

.solution-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    color: var(--white);
}

.solution-link:hover::before {
    left: 100%;
}

.solution-link:active {
    transform: translateY(-2px);
}

/* Learn Section */
.learn {
    background: transparent;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
}

.learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.learn-list li {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.learn-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.learn-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.learn-icon i {
    font-size: 2rem;
    color: var(--white);
}

.learn-content {
    flex: 1;
}

.learn-content b {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.learn-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--card-bg);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 64px 0;
    display: grid;
    gap: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-list li {
    background: rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-list li:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
}

.cta-list li b {
    color: var(--primary-light);
    display: block;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-offer {
    background: var(--glass-bg);
    border-radius: 32px;
    padding: 4rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-offer p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.limited-offer {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-top: 32px;
    opacity: 0.9;
}

/* Steps Section */
.steps-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.1), transparent 70%);
    z-index: 0;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.steps-list li {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.steps-list li::before {
    display: none; /* Hide the numbers */
}

/* Improved icon styling for steps */
.step-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.step-content {
    padding-left: 0; /* Remove the padding since there's no number anymore */
}

.step-content b {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.step-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Step Icon Styling */
.step-icon i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.step-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0.5;
    transform: scale(0.5);
    transition: all 0.5s ease;
    z-index: 1;
}

/* Special styling for specific icons */
.steps-list li:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #6366f1, #2563eb);
}

.steps-list li:nth-child(2) .step-icon i {
    font-size: 2.2rem;
    animation: pulse 2s infinite alternate;
}

.steps-list li:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.steps-list li:nth-child(3) .step-icon i {
    font-size: 2.2rem;
    animation: float 4s ease-in-out infinite;
}

.steps-list li:hover .step-icon::after {
    opacity: 1;
    transform: scale(1);
}

.steps-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

/* Reasons Section */
.reasons-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.reasons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.1), transparent 70%);
    z-index: 0;
}

.reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.reasons-list li {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.reasons-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.reason-icon i {
    font-size: 2rem;
    color: var(--white);
}

.reason-content {
    flex: 1;
}

.reason-content b {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.reason-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Founder Quote Section */
.founder-quote-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.founder-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
}

.case-quote {
    background: var(--glass-bg);
    border-radius: 32px;
    padding: 4rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.case-quote::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.case-quote p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding-left: 4rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: block;
    margin-top: 2rem;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.2rem;
    padding-left: 4rem;
}

/* Founder Block */
.founder-block {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    }

.founder-info {
    color: var(--primary-light);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    }

.founder-role {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Offer */
.offer-badge {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(6, 182, 212, 0.4);
    }

.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--light-text);
    font-size: 1.1rem;
    }

.offer-timer i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .learn-list li,
    .steps-list li,
    .reasons-list li {
        padding: 2rem;
    }

    .case-quote {
        padding: 3rem;
    }

    .case-quote p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .learn-list li,
    .steps-list li,
    .reasons-list li {
        flex-direction: column;
        padding: 1.5rem;
    }

    .learn-icon,
    .reason-icon {
        margin-bottom: 1rem;
    }

    .steps-list li::before {
        top: 1.5rem;
        left: 1.5rem;
    }

    .step-content {
        padding-left: 0;
    }

    .case-quote {
        padding: 2rem;
    }

    .case-quote p {
        font-size: 1.2rem;
        padding-left: 2rem;
    }

    .case-quote::before {
        font-size: 4rem;
        top: 1rem;
        left: 1rem;
    }

    .founder-block {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .founder-avatar {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .learn-content b,
    .step-content b,
    .reason-content b {
        font-size: 1.2rem;
    }

    .learn-content p,
    .step-content p,
    .reason-content p {
        font-size: 1rem;
    }

    .case-quote p {
        font-size: 1.1rem;
    }

    .founder-info {
        font-size: 1.2rem;
    }

    .founder-role {
        font-size: 1rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    }

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    }

.benefit-card {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
        text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
    }

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    }

.benefit-card p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    }

/* Cases Section */
.cases-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    }

.cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.1), transparent 70%);
    z-index: 0;
    }

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.case-card {
    background: var(--glass-bg);
        border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.case-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
    }

.case-card:hover .case-img {
    transform: scale(1.05);
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    }

.case-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
        margin: 0;
    }

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1), transparent 70%);
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--glass-bg);
        border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
    }

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    color: var(--primary-light);
    font-weight: 600;
        font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    }

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
    }

.faq-list {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
    }

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    }

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

/* Infographic Section */
.steps-infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.step-block {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
}

.step-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

/* Special styling for specific step numbers */
.step-block:nth-child(2) .step-number {
    background: linear-gradient(135deg, #6366f1, #2563eb);
    animation: pulse 3s infinite alternate;
}

.step-block:nth-child(2) .step-number::before {
    content: '<>';
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    opacity: 0.7;
}

.step-block:nth-child(3) .step-number {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    animation: float 4s ease-in-out infinite;
}

.step-block:nth-child(3) .step-number::before {
    content: '🧪';
    font-size: 1.2rem;
    position: absolute;
    opacity: 0.7;
}

.step-block h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-block p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Founder Section */
.founder-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    }

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
    }

.founder-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.founder-avatar-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    }

.founder-info-large {
    flex: 1;
}

.founder-info-large h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-info-large .founder-role {
    display: block;
    color: var(--primary-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-info-large blockquote {
        font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .benefit-card,
    .case-card,
    .testimonial-card,
    .faq-item,
    .step-block {
        padding: 2rem;
    }

    .founder-container {
        padding: 2rem;
    }

    .founder-avatar-large {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .cases-grid,
    .testimonials-grid,
    .steps-infographic {
        grid-template-columns: 1fr;
    }

    .founder-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .founder-info-large blockquote {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .benefit-card h3,
    .case-content h3,
    .testimonial-content p,
    .faq-item h4,
    .step-block h4 {
        font-size: 1.2rem;
    }

    .benefit-card p,
    .case-content p,
    .faq-item p,
    .step-block p {
        font-size: 1rem;
    }

    .founder-info-large h3 {
        font-size: 1.6rem;
    }

    .founder-info-large blockquote {
        font-size: 1.1rem;
    }
}

/* Enhanced Image Styles */
img {
    transition: var(--transition);
}

.hero-bg-image {
    filter: saturate(1.2) contrast(1.1);
    transform-origin: center;
    }

.case-img {
    filter: brightness(1.05) saturate(1.1);
    transition: all 0.5s ease;
}

.case-card:hover .case-img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
    }

/* Founder and Testimonial Images */
.founder-avatar,
.testimonial-avatar,
.founder-avatar-large {
    border: 3px solid transparent;
    background: 
        linear-gradient(var(--glass-bg), var(--glass-bg)),
        var(--gradient-primary);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(99, 102, 241, 0.1),
        0 0 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    }

.founder-avatar:hover,
.testimonial-avatar:hover,
.founder-avatar-large:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(99, 102, 241, 0.2),
        0 0 30px rgba(99, 102, 241, 0.6);
}

/* CTA Section Image */
.cta-img {
    border-radius: 24px;
    filter: brightness(1.05) saturate(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.cta-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.cta-image::before {
    content: '';
    position: absolute;
        top: 0;
        left: 0;
        right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    }

.cta-image::after {
    content: '';
    position: absolute;
    top: 0;
        left: 0;
        right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 0 rgba(99, 102, 241, 0.5);
    border-radius: 24px;
    transition: all 0.5s ease;
}

.cta-image:hover::before {
    opacity: 1;
}

.cta-image:hover::after {
    box-shadow: inset 0 0 0 4px rgba(99, 102, 241, 0.5);
    }

.cta-image:hover .cta-img {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) saturate(1.2) contrast(1.05);
}

/* Solution Icons Enhancement */
.solution-icon, 
.reason-icon,
.learn-icon,
.step-icon {
    position: relative;
    overflow: hidden;
}

.solution-icon::after,
.reason-icon::after,
.learn-icon::after,
.step-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.solution-card:hover .solution-icon::after,
.reasons-list li:hover .reason-icon::after,
.learn-list li:hover .learn-icon::after,
.steps-list li:hover .step-icon::after {
    opacity: 1;
    transform: scale(1);
}

/* Image Animation Classes */
.img-float {
    animation: float 6s ease-in-out infinite;
}

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

.img-rotate-slow {
    animation: rotateSlow 30s linear infinite;
}

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

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

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Add special effect for background images */
    .hero-background {
    animation: slowPan 30s ease-in-out infinite alternate;
}

@keyframes slowPan {
    0% {
        transform: scale(1.1) translate(0, 0);
    }
    25% {
        transform: scale(1.1) translate(10px, -10px);
    }
    50% {
        transform: scale(1.1) translate(0, 10px);
    }
    75% {
        transform: scale(1.1) translate(-10px, 0);
    }
    100% {
        transform: scale(1.1) translate(0, -10px);
    }
}

/* Photo Gallery Styles */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95) saturate(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(15, 23, 42, 0) 60%
    );
    z-index: 1;
    transition: all 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: 2;
    transition: all 0.5s ease;
    mix-blend-mode: overlay;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.gallery-item:hover::before {
    opacity: 0.5;
}

.gallery-item:hover::after {
    opacity: 0.3;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-caption p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .founder-avatar-large {
        width: 150px;
        height: 150px;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 200px;
    }
    
    .photo-gallery {
        gap: 1rem;
    }
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .business-header {
        padding: 0.8rem 1rem;
    }
    
    .business-nav {
        gap: 1.5rem;
    }
    
    #designSwitcher {
        padding: 0.6rem 1rem;
    font-size: 0.9rem;
    }
    
    .hero-with-photo {
        padding: 120px 0 80px 0;
}

    .hero-glass {
        padding: 40px 25px;
        margin: 0 15px;
        border-radius: 30px;
}

    .hero-glass h1 {
        font-size: 2.2rem;
        margin-bottom: 25px;
}

    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
}

.hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin-top: 2rem;
}

.stat-item {
        width: 100%;
        min-width: auto;
        padding: 1.2rem;
}

.stat-number {
        font-size: 2.3rem;
    }
    
    .cta {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
}

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

    .section-subtitle {
        font-size: 1.1rem;
}

.section-badge {
        padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    }
    
    .solutions-grid,
    .benefits-grid,
    .cases-grid,
    .testimonials-grid,
    .steps-infographic,
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 1.2rem;
}

    .solution-card,
    .benefit-card, 
    .case-card,
    .faq-item,
    .testimonial-card,
    .step-block {
        padding: 1.5rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
}

    .solution-icon i {
        font-size: 1.8rem;
}

    .solution-card h3 {
        font-size: 1.4rem;
}

    .case-img {
        height: 160px;
    }
    
    .case-content {
        padding: 1.3rem;
    }
    
    .founder-container {
        flex-direction: column;
    text-align: center;
        gap: 1.5rem;
        padding: 1.8rem;
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .cta-image {
        width: 100%;
        margin-top: 1.5rem;
}

    .cta-offer {
        padding: 2rem;
}

    /* Mobile Navigation Enhancement */
    .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
        background: transparent;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1010;
}

    .business-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        background: var(--card-bg);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 2rem;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

    .business-nav.active {
        right: 0;
    }
    
    .business-nav a {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
}
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .business-header {
        padding: 0.7rem;
    }
    
    .hero-glass {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 24px;
        max-width: 95%;
    }
    
    .hero-glass h1 {
        font-size: 1.7rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        margin-left: auto;
        margin-right: auto;
        display: table;
    }
    
    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta-group {
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }
    
    .cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.7rem;
        text-align: center;
    }

    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-left: auto;
        margin-right: auto;
        display: table;
    }

    .solution-card,
    .benefit-card, 
    .case-card,
    .faq-item,
    .testimonial-card,
    .step-block {
        padding: 1.2rem;
        border-radius: 18px;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .solution-icon i {
        font-size: 1.5rem;
    }

    .solution-card h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .solution-features {
        justify-content: center;
    }

    .solution-link {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-offer {
        padding: 1.5rem;
        border-radius: 24px;
    }
    
    .case-img {
        height: 140px;
    }
    
    .case-content {
        padding: 1.2rem;
    }
    
    .founder-container {
        padding: 1.5rem;
        text-align: center;
    }
    
    .founder-avatar-large {
        width: 100px;
        height: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-item,
    .testimonial-card,
    .faq-item {
        border-radius: 18px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .gallery-caption h4 {
        font-size: 1.2rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }

    /* Fix for mobile overflow */
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    section {
        padding: 60px 0;
    }
    
    /* Enhance touch targets */
    .cta, 
    button, 
    .solution-link, 
    .business-nav a {
        min-height: 44px; /* Apple's recommended minimum */
    }
}

/* Mobile hover effects improvement */
@media (hover: hover) {
    /* Only apply hover effects on devices that support hover */
    .cta:hover,
    .solution-card:hover,
    .gallery-item:hover,
    .testimonial-card:hover {
        transform: translateY(-5px);
}
}

@media (hover: none) {
    /* Use active states instead of hover on touch devices */
    .cta:active,
    .solution-card:active,
    .gallery-item:active,
    .testimonial-card:active {
        transform: translateY(-2px);
        transition: transform 0.1s;
}

    /* Remove animations that might slow down mobile experience */
    .hero-bg-image {
        animation: none;
    }
    
    /* Optimize backdrop filters for mobile */
    .hero-glass,
    .solution-card,
    .benefit-card,
    .testimonial-card,
    .case-card,
    .gallery-item {
        backdrop-filter: blur(5px);
    }
}

/* Fix for iOS specific issues */
@supports (-webkit-touch-callout: none) {
    /* iOS specific styles */
    .hero-glass,
    .card-base {
        /* Fix for backdrop-filter on iOS */
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Fix iOS 100vh issue */
    .hero-with-photo {
        height: -webkit-fill-available;
    }
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1010;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-nav-toggle:active {
    transform: translateY(1px);
}

.mobile-nav-toggle i {
    transition: transform 0.3s ease;
}

.mobile-nav-toggle i.fa-times {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* existing mobile styles */
    body {
        font-size: 15px;
    }
    
    .business-header {
        padding: 0.8rem 1rem;
        position: relative;
        z-index: 1010;
    }

    .business-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        background: var(--card-bg);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 2rem;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .business-nav.active {
        right: 0;
    }
    
    .business-nav a {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }
}

.hero-badge {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-badge {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-align: center;
}