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

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Header & Navigation - ALWAYS WHITE */
header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Header scrolled state - STILL WHITE */
header.scrolled {
    background: #ffffff !important;
    backdrop-filter: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    border-bottom: 1px solid #cbd5e0 !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
}

.logo h1 {
    color: #1a1a1a !important;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #1a1a1a !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.3rem;
    left: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 60%;
}

/* Ensure navigation stays visible when scrolled */
header.scrolled .nav-menu a {
    color: #1a1a1a !important;
}

header.scrolled .logo h1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Premium Color Palette */
:root {
    --deep-navy: #1a237e;
    --gold-accent: #ffc107;
    --success-green: #4caf50;
    --warning-orange: #ff9800;
    --premium-gradient: linear-gradient(135deg, #1a237e 0%, #3f51b5 50%, #ffc107 100%);
    --transformation-gradient: linear-gradient(135deg, #424242 0%, #1a237e 50%, #ffc107 100%);
}

/* Clean Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

/* Hero Headlines */
.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease 0.3s both;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.6s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Benefits List */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    opacity: 0.95;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Hero Value Proposition */
.hero-value-prop {
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Benefits Grid */
.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.stat-arrow {
    font-size: 1.8rem;
    color: #FFD700;
    opacity: 0.8;
}

/* Hero CTA */
.hero-cta {
    animation: fadeInUp 1s ease 0.9s both;
}

/* Hero Headlines */
.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease 0.3s both;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.6s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero CTA */
.hero-cta {
    animation: fadeInUp 1s ease 0.9s both;
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}



.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #d84315 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Problem Agitation Section */
.problem-agitation {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.problem-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.problem-subtitle {
    font-size: 1.3rem;
    color: #e53e3e;
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.problem-points {
    margin: 3rem 0;
}

.problem-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e53e3e;
    transition: all 0.3s ease;
}

.problem-point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.problem-detail h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.problem-detail p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.solution-preview {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.solution-preview p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-benefits li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
}

.problem-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.problem-image:hover img {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

/* Image Optimization and Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Story Section with Contemplative Business Background */
.story-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.95) 100%), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.story-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.story-image {
    width: 300px;
    height: 200px;
    margin: 0 auto 3rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

/* Problem Solution Section - Horizontal Cards */
.problem-solution {
    padding: 100px 0;
    background: white;
    position: relative;
}

.problem-solution h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.growth-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.growth-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.growth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.growth-card.reverse {
    flex-direction: row-reverse;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.growth-card-content {
    flex: 1;
    padding-right: 2rem;
}

.growth-card.reverse .growth-card-content {
    padding-right: 0;
    padding-left: 2rem;
}

.growth-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.growth-card.reverse h3 {
    color: white;
}

.growth-card p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

.growth-card.reverse p {
    color: rgba(255, 255, 255, 0.9);
}

.growth-card-image {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.growth-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.solution-benefits li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.solution-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Experiences Section - Updated 2025-01-25 */
.experiences {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.experiences h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
    line-height: 1.5;
}

.experiences-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    flex-direction: unset !important;
}

.experience-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
}

.experience-card-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.experience-card-content {
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.experience-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.experience-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.cta-center {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Persistence Section with Success Journey Background */
.persistence {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.persistence h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.persistence-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.persistence-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.persistence-content blockquote {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
}

/* Social Proof Section with Networking Background */
.social-proof {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.95) 100%), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.proof-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.proof-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.testimonial {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.testimonial-info p {
    margin: 0;
    color: #667eea;
    font-size: 0.9rem;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

/* CTA Reinforcement with Exclusive Retreat Setting */
.cta-reinforcement {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 55, 72, 0.8) 100%), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.cta-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-reinforcement h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.cta-reinforcement p {
    position: relative;
    z-index: 3;
}

.cta-reinforcement .cta-button {
    position: relative;
    z-index: 3;
}

.cta-reinforcement p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.cta-reinforcement .cta-button {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* FAQs Section */
.faqs {
    padding: 80px 0;
    background: white;
}

.faqs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid #667eea;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    padding-left: 2.5rem;
    font-weight: 600;
}

.faq-item h3::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Final CTA with Success Celebration Background */
.final-cta {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8) 0%, rgba(238, 90, 36, 0.8) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-image {
    width: 300px;
    height: 200px;
    margin: 0 auto 3rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.final-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.final-cta-image:hover img {
    transform: scale(1.05);
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    font-weight: 400;
}

.final-cta .cta-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.final-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    color: white;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.footer-social a {
    color: #ccc;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .highlight-card {
        min-height: 320px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-step {
        min-height: 320px;
    }

    .problem-content {
        gap: 3rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .experience-card-image {
        height: 200px;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }

    nav {
        padding: 0 1rem;
        height: auto;
        min-height: 60px;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .nav-menu {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    /* Mobile Hero Enhancements */
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .benefit-item {
        padding: 1rem;
        text-align: center;
        justify-content: center;
    }

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

    .stat {
        padding: 1rem;
        min-width: 120px;
    }

    .stat-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .cta-button.large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }

    /* Mobile Highlights */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .highlight-card {
        min-height: 300px;
    }

    .highlight-content {
        padding: 2rem 1.5rem;
    }

    .highlight-content h3 {
        font-size: 1.5rem;
    }

    .highlight-content p {
        font-size: 1rem;
    }

    .highlight-card {
        margin: 0;
        max-width: 100%;
    }

    .highlight-header {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: center;
    }

    .highlight-content {
        padding: 2rem;
    }

    /* Mobile Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        min-height: 280px;
    }

    .process-content {
        padding: 2rem 1.5rem;
    }

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

    /* Mobile Final CTA */
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .value-highlights {
        justify-content: center;
    }

    .urgency-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .final-cta-image {
        order: -1;
    }

    /* Mobile Problem Section */
    .problem-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .problem-text h2 {
        font-size: 2.2rem;
    }

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

    .problem-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .problem-image {
        order: -1;
    }

    .problem-image img {
        height: 300px;
    }

    .solution-preview {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .value-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .value-item {
        justify-content: center;
    }

    /* Mobile Trust Section */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-item {
        padding: 2rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem;
    }

    .guarantee-icon {
        font-size: 3rem;
    }

    /* Mobile-optimized background images */
    .hero,
    .story-section,
    .persistence,
    .social-proof,
    .cta-reinforcement,
    .final-cta {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center;
    }

    /* Mobile image sizing */
    .story-image,
    .final-cta-image {
        width: 100%;
        max-width: 300px;
        height: 180px;
        margin: 0 auto 2rem auto;
    }

    .problem-image {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    /* Container padding for mobile */
    .container {
        padding: 0 1rem;
    }
}

    /* Mobile Hero Responsiveness */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
    }

    .cta-button.primary {
        font-size: 1rem;
        padding: 1.1rem 2.2rem;
        width: auto;
        min-width: 200px;
    }

    .experiences {
        padding: 60px 0;
    }

    .experiences h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .experience-card {
        max-width: 100%;
        min-width: auto;
    }

    .experience-card-image {
        height: 200px;
    }

    .experience-card-content {
        padding: 1.5rem;
    }

    .experience-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .experience-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Mobile styles for growth cards */
    .growth-card {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem;
    }

    .growth-card.reverse {
        flex-direction: column !important;
    }

    .growth-card-content {
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: center;
    }

    .growth-card-image {
        flex: none;
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 0 auto;
    }

    .growth-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
    }

    .experiences h2,
    .story-section h2,
    .problem-solution h2,
    .persistence h2,
    .social-proof h2,
    .cta-reinforcement h2,
    .faqs h2,
    .final-cta h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }


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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
        transform: scale(1);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Visual Styles for Professional Look */

/* Hero Enhancements */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-arrow {
    font-size: 2rem;
    color: #FFD700;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-contact {
    margin-top: 1rem;
}

.contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Fixed Highlights Section */
.highlights {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.highlight-content {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.highlight-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #333;
}

.highlight-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
    font-size: 1.1rem;
}

.highlight-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.highlight-benefits li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.highlight-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-image {
    height: 200px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-content {
    padding: 2rem;
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.highlight-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Enhanced Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23667eea" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-item.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.stat-item.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-item.featured .stat-icon {
    color: #FFD700;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item.featured .stat-number {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.stat-item .stat-label {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.stat-item.featured .stat-label {
    color: white;
}

.stat-detail {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.stat-item.featured .stat-detail {
    color: rgba(255, 255, 255, 0.8);
}

/* FIXED TESTIMONIALS - OVERRIDE ALL ISSUES */
.featured-testimonial {
    margin: 4rem auto !important;
    max-width: 900px !important;
    padding: 0 2rem !important;
    display: block !important;
}

.success-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 3rem !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.success-highlight::before {
    content: '' !important;
    position: absolute !important;
    top: -50px !important;
    right: -50px !important;
    width: 150px !important;
    height: 150px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
}

.growth-badge {
    background: rgba(255, 255, 255, 0.25) !important;
    padding: 1rem 2rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
    display: inline-block !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
    z-index: 2 !important;
}

.growth-icon {
    display: none !important;
}

.growth-text {
    color: white !important;
}

.testimonial-content {
    margin-bottom: 2.5rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.testimonial-content blockquote {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    margin: 2rem 0 !important;
    padding: 0 !important;
    border: none !important;
    font-weight: 300 !important;
    position: relative !important;
    color: white !important;
}

.testimonial-content blockquote::before {
    content: '"' !important;
    font-size: 3rem !important;
    position: absolute !important;
    top: -1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 0.3 !important;
    font-family: Georgia, serif !important;
    color: white !important;
}

.author-details {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 2rem 0 !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 2 !important;
}

.author-info {
    text-align: center !important;
}

.author-info h4 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.3rem 0 !important;
    color: white !important;
}

.author-info p {
    font-size: 1rem !important;
    margin: 0 !important;
    opacity: 0.9 !important;
    color: white !important;
}

.verified-stamp {
    background: rgba(255, 255, 255, 0.25) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: white !important;
}

.check-icon {
    background: #10b981 !important;
    color: white !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.7rem !important;
}

.revenue-showcase {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    margin-top: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.revenue-before,
.revenue-after {
    text-align: center !important;
    flex: 1 !important;
}

.revenue-label {
    display: block !important;
    font-size: 0.9rem !important;
    opacity: 0.8 !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: white !important;
}

.revenue-value {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: white !important;
}

.growth-arrow {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.arrow {
    font-size: 2rem !important;
    color: #fbbf24 !important;
}

.growth-percent {
    background: #fbbf24 !important;
    color: #1a1a1a !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
}

/* Clean Testimonials Grid - FIXED */
.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin: 3rem auto !important;
    max-width: 900px !important;
    padding: 0 2rem !important;
}

.testimonial-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e5e7eb !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
    display: block !important;
}

.testimonial-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12) !important;
}

.card-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
}

.rating-stars {
    color: #fbbf24 !important;
    font-size: 1.1rem !important;
}

.impact-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.4rem 1rem !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.testimonial-quote {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #374151 !important;
    font-style: italic !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    padding-left: 1rem !important;
}

.testimonial-quote::before {
    content: '"' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 1.5rem !important;
    color: #667eea !important;
    opacity: 0.6 !important;
}

.testimonial-footer {
    border-top: 1px solid #f3f4f6 !important;
    padding-top: 1rem !important;
    display: block !important;
}

.testimonial-footer .author-info h5 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 0.2rem 0 !important;
}

.testimonial-footer .author-info p {
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    margin: 0 0 0.5rem 0 !important;
}

.result-badge {
    background: rgba(5, 150, 105, 0.1) !important;
    color: #059669 !important;
    padding: 0.4rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(5, 150, 105, 0.2) !important;
    display: inline-block !important;
    margin-top: 0.5rem !important;
}

/* Simple Stats Showcase */
.stats-showcase {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin: 3rem auto;
    max-width: 700px;
    position: relative;
}

.stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px 15px 0 0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
    flex: 0 0 auto;
}

.testimonial-author h4,
.testimonial-author h5 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-author p {
    margin: 0;
    color: #667eea;
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-author h4,
.testimonial-author h5 {
    margin: 0;
    color: #333;
}

.testimonial-author p {
    margin: 0.5rem 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* ENHANCED TRANSFORMATION JOURNEY SECTION - FORCE OVERRIDE */
.process-preview {
    padding: 8rem 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.process-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.process-preview .container {
    position: relative;
    z-index: 2;
}

.process-preview .section-header h2 {
    color: white !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.process-preview .section-subtitle {
    color: white !important;
    font-size: 1.3rem !important;
    text-align: center !important;
    max-width: 700px !important;
    margin: 0 auto 5rem auto !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 5rem 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    z-index: 1;
    transform: translateY(-50%);
}

.process-step {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 3;
}

/* Removed weird pulsing animation */

.process-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.process-step p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    padding: 0.8rem 1.2rem;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.process-features li:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.process-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Enhanced CTA styling for process section */
.process-preview .cta-center {
    text-align: center;
    margin-top: 5rem;
}

.process-preview .cta-button {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #667eea !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s ease !important;
}

.process-preview .cta-button:hover {
    background: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

.process-preview .cta-subtext {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
    margin-top: 1rem !important;
}

/* Mobile Responsive Design for Process Section */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-grid::before {
        display: none;
    }

    .process-step:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .process-preview {
        padding: 5rem 0;
    }

    .process-preview .section-header h2 {
        font-size: 2.5rem !important;
    }

    .process-preview .section-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 3rem !important;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }

    .process-step {
        padding: 2.5rem 2rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .process-step h3 {
        font-size: 1.6rem;
    }

    .process-step p {
        font-size: 1rem;
    }

    .process-features li {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }

    .process-preview .cta-button {
        padding: 1rem 2.5rem !important;
        font-size: 1rem !important;
    }
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.trust-content {
    text-align: center;
}

.trust-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.trust-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.trust-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 24px;
    margin-top: 4rem;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    text-align: left;
}

.guarantee-icon {
    font-size: 4rem;
    color: #FFD700;
    flex-shrink: 0;
}

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

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.floating-cta.show {
    display: flex;
    animation: slideInRight 0.5s ease;
}

.cta-button.floating {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    backdrop-filter: blur(10px);
}

.floating-indicator {
    background: #e53e3e;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Enhanced Button Styles */
.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.3rem 2.8rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    text-transform: none;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
.hero-background img,
.highlight-image img,
.final-cta-image img {
    will-change: transform;
}

/* Accessibility improvements */
.cta-button:focus,
.nav-menu a:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .floating-cta,
    .hero-background,
    .image-overlay,
    .process-overlay {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        height: auto !important;
    }
}

/* Enhanced Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%),
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.value-highlights {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 150px;
}

.value-icon {
    font-size: 1.3rem;
}

.urgency-indicator {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.urgency-icon {
    font-size: 1.5rem;
    color: #FFD700;
}

.urgency-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
}

.urgency-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

.urgency-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spots-remaining {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
}

.spots-total {
    font-size: 0.9rem;
    opacity: 0.8;
}

.next-retreat {
    font-weight: 600;
    font-size: 1rem;
}

.location {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.cta-button.large {
    padding: 1.5rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.final-cta-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.final-cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.final-cta:hover .final-cta-image img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 215, 0, 0.9);
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.image-badge span:first-child {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.image-badge span:last-child {
    display: block;
    font-size: 1.1rem;
}

/* Journey Page Specific Styles */
.story-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-top: 1rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.timeline-item.reverse {
    direction: rtl;
}

.timeline-item.reverse > * {
    direction: ltr;
}

.timeline-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.challenge-points {
    margin-top: 2rem;
}

.challenge-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 10px;
}

.challenge-icon {
    font-size: 1.5rem;
}

.matt-quote {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
    font-style: italic;
}

.matt-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #667eea;
}

/* Retreat Experience Styles */
.retreat-experience {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.experience-gallery {
    margin: 4rem 0;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.experience-item:nth-child(even) {
    direction: rtl;
}

.experience-item:nth-child(even) > * {
    direction: ltr;
}

.experience-item .experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-item .experience-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.moment-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.moment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.moment-result {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Experience Page Styles */
.different {
    padding: 5rem 0;
    background: white;
}

.different-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.different-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.different-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.different-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.experience-detail.reverse {
    direction: rtl;
}

.experience-detail.reverse > * {
    direction: ltr;
}

.experience-detail .experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-detail .experience-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.experience-theme {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.key-learnings {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 15px;
}

.key-learnings h4 {
    color: #333;
    margin-bottom: 1rem;
}

.key-learnings ul {
    list-style: none;
    padding: 0;
}

.key-learnings li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.key-learnings li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* What You'll Gain Section */
.what-youll-gain {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.gains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gain-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.gain-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* FAQ Page Styles */
.faqs-detailed {
    padding: 5rem 0;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-category h2 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.6;
    color: #666;
}

.still-questions {
    margin-top: 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
}

.questions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-options {
    margin: 2rem 0;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.questions-image {
    border-radius: 15px;
    overflow: hidden;
}

.questions-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* CTA Section Enhancements */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #667eea;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        text-align: center;
    }

    .hero-stats {
        gap: 1rem;
        flex-direction: column;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .highlights-grid,
    .process-grid,
    .testimonial-grid,
    .gains-grid {
        grid-template-columns: 1fr;
    }

    .revenue-transformation {
        flex-direction: column;
        gap: 1rem;
    }

    .transformation-arrow {
        transform: rotate(90deg);
    }

    /* Mobile Testimonials - Simplified */
    .featured-testimonial {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .success-highlight {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .growth-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-content blockquote {
        font-size: 1.2rem;
        line-height: 1.5;
        margin: 1.5rem 0;
    }

    .testimonial-content blockquote::before {
        font-size: 2.5rem;
        top: -0.8rem;
    }

    .author-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .revenue-showcase {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .growth-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .revenue-value {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding-left: 0.8rem;
    }

    .testimonial-footer {
        text-align: center;
        border-top: none;
        padding-top: 0.5rem;
    }

    .stats-showcase {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
        background: #e5e7eb;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .testimonial-card.featured,
    .final-cta-content,
    .different-content,
    .timeline-item,
    .experience-detail,
    .questions-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item.reverse,
    .experience-detail.reverse {
        direction: ltr;
    }

    .urgency-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .different-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-options {
        margin: 1rem 0;
    }

    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .highlight-content,
    .process-content,
    .moment-card,
    .gain-card {
        padding: 1.5rem;
    }

    .faq-category {
        padding: 2rem;
    }

    .still-questions {
        padding: 2rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION - COMPLETE OVERRIDE
   ======================================== */

/* Force proper layout for testimonials container */
.featured-testimonial {
    display: block !important;
    width: 100% !important;
    max-width: 1000px !important;
    margin: 4rem auto !important;
    padding: 0 2rem !important;
    box-sizing: border-box !important;
    clear: both !important;
}

/* Main testimonial card - clean and simple */
.success-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 3rem 2rem !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3) !important;
    margin-bottom: 3rem !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}

.success-highlight::before {
    content: '' !important;
    position: absolute !important;
    top: -50px !important;
    right: -50px !important;
    width: 150px !important;
    height: 150px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
}

.success-highlight > * {
    position: relative !important;
    z-index: 2 !important;
}

/* Growth badge styling */
.growth-badge {
    background: rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
    display: inline-block !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

/* Hide broken emoji */
.growth-icon {
    display: none !important;
}

.growth-text {
    color: white !important;
    font-weight: 700 !important;
}

/* Quote styling */
.testimonial-content {
    margin-bottom: 2.5rem !important;
    display: block !important;
}

.testimonial-content blockquote {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    margin: 2rem auto !important;
    padding: 0 !important;
    border: none !important;
    font-weight: 300 !important;
    color: white !important;
    max-width: 800px !important;
    display: block !important;
    position: relative !important;
}

.testimonial-content blockquote::before {
    content: '"' !important;
    font-size: 3rem !important;
    position: absolute !important;
    top: -1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 0.3 !important;
    font-family: Georgia, serif !important;
    color: white !important;
}

/* Author section */
.author-details {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 2rem 0 !important;
    flex-wrap: wrap !important;
}

.author-info {
    text-align: center !important;
}

.author-info h4 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.3rem 0 !important;
    color: white !important;
}

.author-info p {
    font-size: 1rem !important;
    margin: 0 !important;
    opacity: 0.9 !important;
    color: white !important;
}

.verified-stamp {
    background: rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.check-icon {
    background: #10b981 !important;
    color: white !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.7rem !important;
}

/* Revenue showcase */
.revenue-showcase {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    margin-top: 2rem !important;
    flex-wrap: wrap !important;
}

.revenue-before,
.revenue-after {
    text-align: center !important;
    flex: 1 !important;
    min-width: 120px !important;
}

.revenue-label {
    display: block !important;
    font-size: 0.9rem !important;
    opacity: 0.8 !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    color: white !important;
    letter-spacing: 1px !important;
}

.revenue-value {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: white !important;
}

.growth-arrow {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex: 0 0 auto !important;
}

.arrow {
    font-size: 2rem !important;
    color: #fbbf24 !important;
}

.growth-percent {
    background: #fbbf24 !important;
    color: #1a1a1a !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
}

/* Testimonials Grid - Force Proper Layout */
.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin: 3rem auto !important;
    max-width: 900px !important;
    padding: 0 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.testimonial-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e5e7eb !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
}

.testimonial-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px 15px 0 0 !important;
}

.testimonial-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12) !important;
}

.card-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
}

.rating-stars {
    color: #fbbf24 !important;
    font-size: 1.1rem !important;
}

.impact-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.4rem 1rem !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.testimonial-quote {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    color: #374151 !important;
    font-style: italic !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    position: relative !important;
    padding-left: 1rem !important;
}

.testimonial-quote::before {
    content: '"' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 1.5rem !important;
    color: #667eea !important;
    opacity: 0.6 !important;
}

.testimonial-footer {
    display: block !important;
    border-top: 1px solid #f3f4f6 !important;
    padding-top: 1rem !important;
}

.testimonial-footer .author-info h5 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 0.2rem 0 !important;
}

.testimonial-footer .author-info p {
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    margin: 0 0 0.5rem 0 !important;
}

.result-badge {
    background: rgba(5, 150, 105, 0.1) !important;
    color: #059669 !important;
    padding: 0.4rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(5, 150, 105, 0.2) !important;
    display: inline-block !important;
    margin-top: 0.5rem !important;
}

/* Stats Showcase - Force Proper Layout */
.stats-showcase {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 2rem !important;
    background: white !important;
    padding: 2.5rem 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e5e7eb !important;
    margin: 3rem auto !important;
    max-width: 700px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.stats-showcase::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px 15px 0 0 !important;
}

.stat-item {
    text-align: center !important;
    flex: 1 !important;
    min-width: 150px !important;
    display: block !important;
}

.stat-number {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    line-height: 1.2 !important;
}

.stat-label {
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
    display: block !important;
}

.stat-divider {
    width: 1px !important;
    height: 50px !important;
    background: #e5e7eb !important;
    flex: 0 0 auto !important;
    display: block !important;
}

/* CLEAN STATS BAR - SIMPLE HORIZONTAL LAYOUT */
.clean-stats {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4rem !important;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%) !important;
    padding: 3rem 2rem !important;
    border-radius: 20px !important;
    margin: 3rem auto !important;
    max-width: 800px !important;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1) !important;
    border: 2px solid rgba(102, 126, 234, 0.1) !important;
    flex-wrap: wrap !important;
}

.clean-stats .stat-item {
    text-align: center !important;
    flex: 1 !important;
    min-width: 180px !important;
    display: block !important;
}

.clean-stats .stat-number {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    line-height: 1.2 !important;
    padding: 0 0.2rem !important;
    overflow: visible !important;
    white-space: nowrap !important;
}

.clean-stats .stat-label {
    font-size: 0.9rem !important;
    color: #4b5563 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.3 !important;
    display: block !important;
}

/* Mobile override for clean stats */
@media (max-width: 768px) {
    .clean-stats {
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 2rem 1.5rem !important;
    }

    .clean-stats .stat-item {
        min-width: auto !important;
    }

    .clean-stats .stat-number {
        font-size: 2rem !important;
    }
}

/* FIX INVISIBLE BUTTON ISSUE */
.cta-button.secondary {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    padding: 1rem 2rem !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-button.secondary:hover {
    background: #667eea !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
}

/* Ensure CTA center is visible */
.cta-center {
    text-align: center !important;
    margin: 2rem 0 !important;
    padding: 1rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ========================================
   FINAL OVERRIDE - TRANSFORMATION JOURNEY
   ======================================== */

/* Force the transformation section to use new design */
section.process-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 8rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

section.process-preview .section-header h2 {
    color: white !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

section.process-preview .section-subtitle {
    color: white !important;
    font-size: 1.3rem !important;
    text-align: center !important;
    max-width: 700px !important;
    margin: 0 auto 5rem auto !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

section.process-preview .process-step {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 3rem 2.5rem !important;
    border-radius: 25px !important;
    text-align: center !important;
    position: relative !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.4s ease !important;
    transform: translateY(0) !important;
}

section.process-preview .process-step:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25) !important;
    background: rgba(255, 255, 255, 1) !important;
}

section.process-preview .step-number {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    margin: 0 auto 2rem auto !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
    position: relative !important;
    z-index: 3 !important;
}

section.process-preview .process-step h3 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 1.5rem 0 !important;
    line-height: 1.3 !important;
}

section.process-preview .process-step p {
    font-size: 1.1rem !important;
    color: #4b5563 !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
}

section.process-preview .process-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

section.process-preview .process-features li {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    padding: 0.8rem 1.2rem !important;
    background: rgba(102, 126, 234, 0.08) !important;
    border-radius: 12px !important;
    border-left: 4px solid #667eea !important;
    transition: all 0.3s ease !important;
}

section.process-preview .process-features li::before {
    content: '✓' !important;
    width: 24px !important;
    height: 24px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}
