@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;
    padding: 30px 0;
}

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;
    
    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: 120px;
    position: relative;
}

/* Hero Section */
.hero-with-photo {
    background: linear-gradient(135deg, var(--background) 0%, var(--card-bg) 100%);
    padding: 160px 0 30px 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-glass p {
    margin-bottom: 30px;
}

.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 {
    padding: 30px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-top: 100px !important; /* Added full-height margin from top */
}

.learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.1), transparent 70%);
    z-index: 0;
    margin-top: 20px; /* Added additional margin for the gradient effect */
}

/* Adding margin to the container for better spacing from first block */
.learn .container {
    margin-top: 20px;
}

.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: 30px 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: 30px 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: 30px 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: 30px 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 {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.offer-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
}

.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: 30px 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: 30px 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: 30px 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: 30px 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: 30px 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;
    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: 4px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    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);
}

/* 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: 90px 0 30px 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);
        backdrop-filter: blur(10px);
    }

    .business-nav.active {
        right: 0;
    }
    
    .business-nav a {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        width: 100%;
        border-radius: 12px;
        margin-bottom: 0.8rem;
        transition: var(--transition);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
    }
    
    .business-nav a:hover,
    .business-nav a.active {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
        border-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    }
    
    .business-nav a::after {
        width: 4px;
        height: 70%;
        bottom: 15%;
        left: -1px;
        opacity: 0;
    }
    
    .business-nav a:hover::after,
    .business-nav a.active::after {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .business-header {
        padding: 0.7rem;
    }
    
    .hero-with-photo {
        padding: 80px 0 30px 0;
    }
    
    .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: 30px 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: 1.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: 1rem 1.5rem;
        width: 100%;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        transition: var(--transition);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
    }
    
    .business-nav a:hover,
    .business-nav a.active {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
        border-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    }
    
    .business-nav a::after {
        width: 4px;
        height: 70%;
        bottom: 15%;
        left: -1px;
        opacity: 0;
    }
    
    .business-nav a:hover::after,
    .business-nav a.active::after {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .business-header {
        padding: 0.7rem;
    }
    
    .hero-with-photo {
        padding: 80px 0 30px 0;
    }
    
    .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: 30px 0;
    }
    
    /* Enhance touch targets */
    .cta, 
    button, 
    .solution-link, 
    .business-nav a {
        min-height: 44px; /* Apple's recommended minimum */
    }
}

/* Add specific styles for the hero badge and section badge */
.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;
}

/* Compact list styles */
.learn-list.compact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.learn-list.compact-list li {
    display: flex;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.learn-list.compact-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary-color);
}

.learn-list.compact-list i {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.learn-list.compact-list span {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .learn-list.compact-list li {
        padding: 0.7rem;
    }
    
    .learn-list.compact-list span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .learn-list.compact-list i {
        font-size: 1.1rem;
        margin-right: 0.8rem;
    }
    
    .learn-list.compact-list span {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

.cta-subtext {
    font-size: 1rem;
    color: var(--light-text);
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

@media (max-width: 768px) {
    .cta-subtext {
        font-size: 0.9rem;
        margin-top: 0.6rem;
        margin-bottom: 1.2rem;
    }
}

/* Consultation Form Styles */
.consultation-form {
    max-width: 600px;
    margin: 2rem auto;
}

.consultation-form .form-group {
    margin-bottom: 1rem;
}

.consultation-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.consultation-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.consultation-form input::placeholder {
    color: var(--light-text);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .consultation-form {
        max-width: 100%;
    }
    
    .consultation-form input {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: none;
    }
    
    /* Сохраняем другие стили, не связанные с мобильной навигацией */
    body {
        font-size: 15px;
    }
    
    .hero-with-photo {
        padding: 90px 0 30px 0;
    }

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

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

    .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;
    }
    
    .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;
}
    
    .learn-list.compact-list li {
        padding: 0.7rem;
    }
    
    .learn-list.compact-list span {
        font-size: 1rem;
    }
    
    .cta-subtext {
        font-size: 0.9rem;
        margin-top: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .consultation-form {
        max-width: 100%;
    }
    
    .consultation-form input {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .hero-with-photo {
        padding: 80px 0 30px 0;
    }
    
    .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;
    }

    .founder-info-large > * {
        margin-bottom: 10px;
    }
}

/* Simple Design Styles */
.simple-design {
    background: #0f1419;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.simple-design::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 62, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 126, 80, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.simple-design section {
    padding: 70px 0;
    border-bottom: 1px solid #252930;
    position: relative;
    margin-top: 40px;
}

.simple-design h1, 
.simple-design h2, 
.simple-design h3 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.simple-design h1 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ff3e00, #ff7e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 62, 0, 0.3);
}

.simple-design h2 {
    font-size: 36px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.simple-design h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff3e00, #ff7e50);
    border-radius: 2px;
}

.simple-design .container h2:after {
    left: 0;
}

.simple-design .text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.simple-design h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff3e00;
}

.simple-design p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
    color: #b0b0b0;
}

.simple-hero {
    background-color: #151920;
    padding: 100px 0 70px;
    text-align: center;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.simple-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1548407260-da850faa41e3') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

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

.simple-button {
    background: linear-gradient(90deg, #ff3e00, #ff7e50);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    margin: 15px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.simple-button:hover {
    background: linear-gradient(90deg, #e53000, #ff6a3c);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 62, 0, 0.4);
}

.simple-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 62, 0, 0.3);
}

.simple-button i {
    margin-right: 10px;
}

.simple-button::after {
    content: '';
    display: block;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.simple-button:hover::after {
    animation: buttonShine 1.5s ease;
}

@keyframes buttonShine {
    0% {
        opacity: 0;
        left: -50%;
    }
    30% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        left: 150%;
    }
}

.founder-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 400px;
    background: rgba(30, 35, 45, 0.5);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 62, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 62, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.founder-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 62, 0, 0.3);
}

.founder-block:hover::before {
    opacity: 1;
}

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 25px;
    object-fit: cover;
    border: 3px solid #ff3e00;
    box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.founder-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 62, 0, 0.5);
}

.founder-info {
    text-align: left;
    position: relative;
    z-index: 1;
}

.founder-info h3 {
    margin-bottom: 8px;
    font-size: 26px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.founder-info p {
    margin-bottom: 0;
    font-size: 16px;
    color: #ff7e50;
    font-weight: 500;
}

.channel-content {
    background-color: #191e25;
    position: relative;
    overflow: hidden;
}

.channel-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 62, 0, 0.15) 0%, rgba(255, 62, 0, 0) 70%);
    z-index: 0;
}

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

.simple-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.simple-list li {
    position: relative;
    padding: 20px 20px 20px 35px;
    margin-bottom: 20px;
    background-color: #222830;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    line-height: 1.5;
    border-left: 4px solid #ff3e00;
    transition: all 0.3s ease;
}

.simple-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #252d36;
}

.simple-list li:before {
    content: '•';
    position: absolute;
    left: 15px;
    top: 22px;
    color: #ff3e00;
    font-weight: bold;
    font-size: 20px;
}

.operations {
    background-color: #151920;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.operations:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 62, 0, 0.1) 0%, rgba(255, 62, 0, 0) 70%);
    z-index: 0;
}

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

.solutions-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.solution-simple {
    flex: 1 1 300px;
    background-color: #191e25;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 62, 0, 0.3);
}

.solution-simple:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff3e00, #ff7e50);
}

.solution-simple h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
}

.solution-simple p {
    font-size: 17px;
    margin-bottom: 25px;
}

.solution-simple .solution-icon {
    font-size: 40px;
    color: #ff3e00;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #222830, #1e232a);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.solution-simple .solution-icon i {
    background: linear-gradient(90deg, #ff3e00, #ff7e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
}

.solution-simple:hover .solution-icon {
    transform: rotate(10deg) scale(1.1);
}

.money-talk {
    background-color: #191e25;
    position: relative;
    overflow: hidden;
}

.money-talk:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.money-talk p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.steps {
    background-color: #151920;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.steps:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.steps-simple {
    margin-top: 40px;
}

.step-simple {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: left;
    background-color: #191e25;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 62, 0, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #ff3e00, #ff7e50);
    color: white;
    font-size: 28px;
    font-weight: bold;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-simple:hover .step-number::after {
    opacity: 1;
}

.step-content-simple {
    flex: 1;
}

.step-content-simple h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: white;
    font-size: 22px;
}

.step-content-simple p {
    margin-bottom: 0;
    font-size: 17px;
}

.reasons {
    background-color: #191e25;
    position: relative;
    overflow: hidden;
}

.reasons:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.reasons-simple {
    margin-top: 40px;
}

.reason-simple {
    background-color: #222830;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reason-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 62, 0, 0.3);
}

.reason-simple:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff3e00, #ff7e50);
}

.reason-simple h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

.reason-simple p {
    font-size: 17px;
    margin-bottom: 0;
}

.testimonial {
    background-color: #151920;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.testimonial blockquote {
    font-size: 24px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    padding: 40px;
    background-color: #191e25;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial blockquote:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 62, 0, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial cite {
    font-style: normal;
    font-weight: bold;
    display: block;
    margin-top: 25px;
    font-size: 18px;
    color: #ff3e00;
}

.final-cta {
    background-color: #191e25;
    text-align: center;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.final-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.limited-offer {
    font-size: 18px;
    color: #ff7e50;
    margin: 25px 0;
    font-weight: 600;
    display: inline-block;
    background: rgba(255, 62, 0, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
}

.limited-offer i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.founder-sign {
    margin-top: 50px;
    padding: 30px;
    background-color: #222830;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 62, 0, 0.1);
    transition: all 0.3s ease;
}

.founder-sign:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 62, 0, 0.3);
}

.founder-sign:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3e00, #ff7e50);
}

.founder-sign h3 {
    margin-bottom: 15px;
    color: white;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    color: #ff3e00;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 62, 0, 0.1);
}

.social-links a:hover {
    color: #ff7e50;
    transform: translateY(-2px);
    background: rgba(255, 62, 0, 0.2);
    box-shadow: 0 5px 15px rgba(255, 62, 0, 0.2);
}

.social-links a i {
    margin-right: 5px;
}

/* Text alignment classes */
.simple-design .text-center {
    text-align: center;
}

.simple-design .text-left {
    text-align: left;
}

/* Media Queries for Simple Design */
@media (max-width: 991px) {
    .simple-design h1 {
        font-size: 36px;
    }
    
    .simple-design h2 {
        font-size: 30px;
    }
    
    .solutions-simple {
        gap: 20px;
    }
    
    .step-simple,
    .solution-simple,
    .reason-simple {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .simple-design h1 {
        font-size: 32px;
    }
    
    .simple-design h2 {
        font-size: 28px;
    }
    
    .simple-design h3 {
        font-size: 20px;
    }
    
    .simple-design p,
    .simple-list li {
        font-size: 16px;
    }
    
    .simple-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .solutions-simple {
        flex-direction: column;
    }
    
    .founder-block {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .founder-img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    
    .founder-info {
        text-align: center;
    }

    .founder-info h3 {
        font-size: 24px;
    }
    
    .testimonial blockquote {
        font-size: 20px;
        padding: 30px;
    }

    .solution-simple .solution-icon {
        margin: 0 auto 20px;
    }

    .solution-simple {
        text-align: center;
    }

    .step-simple {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .step-content-simple {
        text-align: center;
    }

    .limited-offer {
        font-size: 16px;
        padding: 8px 15px;
    }

    .social-links a {
        margin: 0 8px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .simple-design section {
        padding: 50px 0;
    }
    
    .simple-design h1 {
        font-size: 28px;
    }
    
    .simple-design h2 {
        font-size: 24px;
    }

    .simple-design h2:after {
        width: 80px;
        height: 3px;
    }
    
    .simple-button {
        width: 100%;
        padding: 12px 20px;
    }
    
    .founder-img {
        width: 120px;
        height: 120px;
    }
    
    .founder-info h3 {
        font-size: 22px;
    }
    
    .simple-list li {
        padding: 15px 15px 15px 30px;
    }
    
    .testimonial blockquote {
        font-size: 18px;
        padding: 25px 20px;
    }
    
    .testimonial blockquote:before {
        font-size: 60px;
        top: 10px;
        left: 10px;
    }
    
    .testimonial cite {
        font-size: 16px;
    }
    
    .solution-simple, 
    .reason-simple {
        padding: 20px;
    }
    
    .solution-simple .solution-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    
    .solution-simple .solution-icon i {
        font-size: 30px;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .social-links a {
        margin: 0;
        width: 80%;
    }
}

/* Circular Founder Photo Styles */
.founder-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    margin-right: 25px;
    border: 3px solid #ff3e00;
    box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
    transition: all 0.3s ease;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: center;
    transition: all 0.3s ease;
}

.founder-img-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 62, 0, 0.5);
}

/* Make the founder image in the sign area centered */
.founder-sign-content .founder-img-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Make founder image in smart design circular too */
.founder-avatar-large-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-color);
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.founder-avatar-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive styles for founder image */
@media (max-width: 768px) {
    .founder-img-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    
    .founder-avatar-large-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .founder-block {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .founder-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .founder-img-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .founder-avatar-large-wrapper {
        width: 100px;
        height: 100px;
    }
}

/* Скрываем фоновые изображения для ПК */
.simple-hero:before,
.channel-content:before,
.operations:before,
.money-talk:before,
.steps:before,
.reasons:before,
.testimonial:before,
.final-cta:before {
    display: none;
}

/* Показываем фоновые изображения только для мобильных устройств */
@media (max-width: 768px) {
    .simple-hero:before,
    .channel-content:before,
    .operations:before,
    .money-talk:before,
    .steps:before,
    .reasons:before,
    .testimonial:before,
    .final-cta:before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .simple-hero:before {
        background: url('https://images.unsplash.com/photo-1548407260-da850faa41e3') no-repeat center center;
        background-size: cover;
        opacity: 0.15;
    }
    
    .channel-content:before {
        background: radial-gradient(circle at 70% 30%, rgba(255, 62, 0, 0.15) 0%, rgba(255, 62, 0, 0) 70%);
    }
    
    .operations:before {
        background: radial-gradient(circle at 30% 70%, rgba(255, 62, 0, 0.1) 0%, rgba(255, 62, 0, 0) 70%);
    }
    
    .money-talk:before {
        background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71') no-repeat center center;
        background-size: cover;
        opacity: 0.1;
    }
    
    .steps:before {
        background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4') no-repeat center center;
        background-size: cover;
        opacity: 0.1;
    }
    
    .reasons:before {
        background: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3') no-repeat center center;
        background-size: cover;
        opacity: 0.1;
    }
    
    .testimonial:before {
        background: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521') no-repeat center center;
        background-size: cover;
        opacity: 0.1;
    }
    
    .final-cta:before {
        background: url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74') no-repeat center center;
        background-size: cover;
        opacity: 0.1;
    }
}

/* Article Cards */
.article-card {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.article-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.article-icon img {
    width: 36px;
    height: 36px;
    margin-right: 0.8rem;
    border-radius: 50%;
    object-fit: cover;
    background-color: rgba(99, 102, 241, 0.1);
    padding: 3px;
}

.article-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-top: 0.8rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.read-more i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.read-more:hover {
    background: rgba(99, 102, 241, 0.25);
    color: var(--primary-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Article icon-specific styling */
.article-icon.ai-icon {
    color: #6366f1;
}

.article-icon.support-icon {
    color: #06b6d4;
}

.article-icon.legal-icon {
    color: #8b5cf6;
}

.article-icon.finance-icon {
    color: #10b981;
}

/* Custom separator line */
.article-separator {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    margin: 0.8rem 0;
}

/* Article Cards Grid */
.article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .article-cards {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 1rem;
    }
    
    .article-card {
        padding: 1.2rem;
    }
}

/* Fancy hover effects */
.article-card:hover .read-more {
    background: rgba(99, 102, 241, 0.25);
    color: var(--primary-color);
}

.article-card:hover .read-more i {
    transform: translateX(5px);
}

/* Ensure icons load properly */
.article-icon img {
    width: 36px;
    height: 36px;
    margin-right: 0.8rem;
    border-radius: 50%;
    object-fit: cover;
    background-color: rgba(99, 102, 241, 0.1);
    padding: 3px;
}

.article-icon span {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Color themes for different article types */
.article-icon.ai-icon {
    color: #6366f1;
}

.article-icon.support-icon {
    color: #06b6d4;
}

.article-icon.legal-icon {
    color: #8b5cf6;
}

.article-icon.finance-icon {
    color: #10b981;
}

/* Article Cards - Mobile Fixes */
@media (max-width: 768px) {
    .article-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-card {
        padding: 1.2rem;
        background: var(--glass-bg) !important;
        border-radius: 16px !important;
        border: 1px solid var(--glass-border) !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        box-sizing: border-box !important;
    }
    
    .article-title {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        color: var(--text-color) !important;
    }
    
    .article-icon {
        display: flex !important;
        align-items: center !important;
        margin-bottom: 0.8rem !important;
    }
    
    .article-icon img {
        width: 32px !important;
        height: 32px !important;
        margin-right: 0.6rem !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        background-color: rgba(99, 102, 241, 0.1) !important;
        padding: 3px !important;
        display: inline-block !important;
    }
    
    .article-icon span {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        opacity: 0.9 !important;
        color: var(--primary-light) !important;
    }
    
    .read-more {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.6rem 1.2rem !important;
        margin-top: 0.8rem !important;
        background: rgba(99, 102, 241, 0.15) !important;
        color: var(--primary-light) !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        text-decoration: none !important;
        transition: var(--transition) !important;
        border: none !important;
        cursor: pointer !important;
        align-self: flex-start !important;
    }
    
    .read-more i {
        margin-left: 0.5rem !important;
        font-size: 0.85rem !important;
    }
}

/* Additional fallback styles for mobile */
@media (max-width: 480px) {
    .article-cards {
        margin-top: 1.5rem;
    }
    
    .article-card {
        margin-bottom: 0.8rem !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    }
    
    .article-icon img {
        width: 28px !important;
        height: 28px !important;
    }
    
    .read-more {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
        margin-top: 0.6rem !important;
    }
}

/* Additional mobile optimization styles */
.mobile-optimized {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.mobile-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.icon-label {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-top: 2px;
}

.read-button {
    width: auto !important;
    min-width: 120px !important;
    text-align: center !important;
}

/* Force mobile styles for problematic devices */
@media screen and (max-width: 600px) {
    .mobile-card {
        background: var(--glass-bg) !important;
        border: 1px solid var(--glass-border) !important;
        border-radius: 16px !important;
        margin-bottom: 15px !important;
        padding: 15px !important;
        width: 100% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    .mobile-card .article-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin: 10px 0 !important;
        color: var(--text-color) !important;
    }
    
    .mobile-card .article-icon {
        display: flex !important;
        align-items: center !important;
    }
    
    .mobile-card .read-button {
        background: rgba(99, 102, 241, 0.2) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 8px 16px !important;
        font-size: 14px !important;
        cursor: pointer !important;
        margin-top: 10px !important;
        align-self: flex-start !important;
    }
    
    .mobile-optimized {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 15px 0 !important;
    }
}

/* Final fixes for all mobile devices */
@supports (-webkit-touch-callout: none) {
    /* iOS-specific styles */
    .mobile-card {
        background: #1e293b !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .read-button {
        background: rgba(99, 102, 241, 0.3) !important;
    }
}

/* Generic mobile fixes */
@media only screen and (max-width: 600px) {
    .article-card, .mobile-card {
        margin: 0 0 15px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .article-icon img {
        display: inline-block !important;
    }
    
    .icon-label {
        color: var(--primary-light) !important;
    }
    
    .article-separator {
        display: block !important;
        height: 1px !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.1) !important;
        margin: 10px 0 !important;
    }
    
    /* Force flexbox layout */
    .article-cards, .mobile-optimized {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    /* Existing media query styles */

    .learn {
        margin-top: 60px; /* Adjusted margin for tablet view */
        padding-top: 40px;
    }
    
    .learn .container {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    /* Existing media query styles */
    
    .learn {
        margin-top: 40px; /* Further adjusted for mobile */
        padding-top: 30px;
    }
    
    .learn .container {
        margin-top: 10px;
    }
}

/* iPhone 13 Pro and Pro Max fix */
@media only screen and (device-width: 390px) and (device-height: 844px),
       only screen and (device-width: 428px) and (device-height: 926px) {
    .content {
        margin-top: 0;
    }
    
    .hero-with-photo {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        padding-top: calc(env(safe-area-inset-top));
        padding-bottom: env(safe-area-inset-bottom);
        margin-top: 0;
        height: auto;
        max-height: none;
    }
    
    .business-header {
        position: absolute;
        background: rgba(30, 41, 59, 0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1000;
        padding-top: env(safe-area-inset-top);
        height: auto;
    }
    
    .hero-glass {
        max-height: none;
        overflow: visible;
        overflow-y: visible;
        -webkit-overflow-scrolling: auto;
        padding-bottom: 20px;
        margin-top: 50px;
        height: auto;
    }
    
    .hero-glass h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .article-cards {
        gap: 15px;
    }
    
    /* Ensure all content in hero section is visible without scrolling */
    .hero-content, 
    .hero-with-photo, 
    .hero-glass, 
    .hero-badge, 
    .hero-subtitle, 
    .hero-cta-group {
        overflow: visible !important;
        overflow-y: visible !important;
    }
}

/* Mobile Responsiveness for Learn Section */
@media (max-width: 768px) {
    .learn {
        margin-top: 60px !important;
        padding-top: 40px !important;
    }
    
    .learn .container {
        margin-top: 15px !important;
    }
}

@media (max-width: 480px) {
    .learn {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }
    
    .learn .container {
        margin-top: 10px !important;
    }
}
