/* ===== LANDING PAGE STYLES ===== */

/* Typography */
* {
    font-family: Arial, sans-serif;
}

body {
    background-color: white;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease;
}

body.scrolled {
    background-color: #f5f4f4;
}

/* ===== NAVIGATION ===== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 18px 40px;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #0088cc;
    text-decoration: none;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0088cc;
}

.nav-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #0088cc;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-btn-primary:hover {
    background: #006ba3;
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: #0088cc;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 12px;
}

/* Navigation Responsive Styles */
@media screen and (max-width: 850px) {
    .landing-nav {
        padding: 18px 20px;
    }

    .landing-nav.scrolled {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px 60px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 560px;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.12;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 36px;
}

@media screen and (max-width: 1100px) {
    .hero-title {
        margin-bottom: 18px;
    }

    .hero-subtitle {
        margin-bottom: 24px;
    }
}

.hero-cta {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #0088cc;
    color: white;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hero-btn-primary:hover {
    background: #006ba3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.25);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

/* Hero Mobile Bubbles - Hidden on desktop */
.hero-bubbles {
    display: none;
}

/* Hero Visual - Bento Grid */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    width: 100%;
    max-width: 480px;
}

/* Bento Card Base */
.bento-card {
    background: white;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 136, 204, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Bento Icons */
.bento-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F4FC;
    border-radius: 8px;
    margin-bottom: 10px;
}

.bento-icon svg {
    width: 16px;
    height: 16px;
    color: #0088cc;
}

.bento-icon-green {
    background: #E8F5E9;
}

.bento-icon-green svg {
    color: #2E7D32;
}

.bento-icon-purple {
    background: #F3E8FF;
}

.bento-icon-purple svg {
    color: #7C3AED;
}

.bento-icon-gold {
    background: #FFF8E6;
}

.bento-icon-gold svg {
    color: #F59E0B;
}

.bento-icon-teal {
    background: #E0F7FA;
}

.bento-icon-teal svg {
    color: #00897B;
}

.bento-icon-indigo {
    background: #EEF2FF;
}

.bento-icon-indigo svg {
    color: #4F46E5;
}

.bento-icon-white {
    background: rgba(255, 255, 255, 0.2);
}

.bento-icon-white svg {
    color: white;
}

/* Bento Typography */
.bento-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.bento-desc {
    font-size: 11px;
    color: #777;
    line-height: 1.45;
}

/* Orange icon for Analytics */
.bento-icon-orange {
    background: #FFF3E0;
}

.bento-icon-orange svg {
    color: #E65100;
}

/* Hero Responsive Styles */
@media screen and (max-width: 1100px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 40px 40px;
        min-height: 100vh;
        gap: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    /* Mobile Feature Bubbles - 3x3 Grid */
    .hero-bubbles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin: 24px auto 28px;
        max-width: 340px;
        padding: 0 16px;
        justify-items: center;
    }

    .bubble {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        width: 90px;
        height: 90px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .bubble:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .bubble-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 6px;
    }

    .bubble-icon svg {
        width: 100%;
        height: 100%;
        color: #0088cc;
    }

    .bubble-icon.icon-gold svg {
        color: #F59E0B;
    }

    .bubble-icon.icon-green svg {
        color: #2E7D32;
    }

    .bubble-icon.icon-purple svg {
        color: #7C3AED;
    }

    .bubble-icon.icon-teal svg {
        color: #00897B;
    }

    .bubble-icon.icon-orange svg {
        color: #E65100;
    }

    .bubble-icon.icon-indigo svg {
        color: #4F46E5;
    }

    .bubble-title {
        font-size: 10px;
        font-weight: 700;
        color: #333;
        line-height: 1.1;
    }

    /* Never show descriptions on mobile */
    .bubble-desc {
        display: none;
    }
}

/* Larger mobile - just make bubbles bigger, still no descriptions */
@media screen and (min-width: 500px) and (max-width: 1100px) {
    .hero-bubbles {
        max-width: 400px;
        gap: 14px;
        margin: 22px auto 26px;
    }

    .bubble {
        width: 100px;
        height: 100px;
    }

    .bubble-icon {
        width: 26px;
        height: 26px;
        margin-bottom: 6px;
    }

    .bubble-title {
        font-size: 10px;
    }
}

@media screen and (max-width: 850px) {
    .hero-section {
        padding: 90px 24px 30px;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 16px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-bubbles {
        margin: 18px auto 22px;
        gap: 12px;
    }

    .hero-cta {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero-btn-primary {
        max-width: 100%;
        width: auto;
        min-width: 0;
        box-sizing: border-box;
        flex-shrink: 1;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 85px 16px 25px;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 14px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.55;
    }

    .hero-bubbles {
        margin: 16px auto 20px;
        gap: 10px;
    }

    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-cta {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero-btn-primary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 15px;
        white-space: normal;
        min-width: 0;
        flex-shrink: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .btn-arrow {
        flex-shrink: 0;
    }
}

/* Extra small screens - 320px */
@media screen and (max-width: 360px) {
    .landing-nav {
        padding: 16px 12px;
    }

    .landing-nav.scrolled {
        padding: 12px 12px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .mobile-menu {
        padding: 16px 12px 24px;
    }

    .mobile-menu-link {
        font-size: 15px;
        padding: 12px 0;
    }

    .mobile-menu-btn-primary {
        padding: 14px 16px;
        font-size: 15px;
    }

    .hero-section {
        padding: 80px 12px 20px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .hero-bubbles {
        max-width: 100%;
        gap: 8px;
        margin: 16px auto 20px;
        padding: 0;
    }

    .bubble {
        width: 80px;
        height: 80px;
    }

    .bubble-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }

    .bubble-title {
        font-size: 9px;
    }

    .hero-cta {
        width: 100%;
        padding: 0;
    }

    .hero-btn-primary {
        width: 100%;
        padding: 14px 16px;
        font-size: 14px;
        gap: 8px;
        margin-top: 0;
    }

    .btn-arrow {
        width: 16px;
        height: 16px;
    }
}

/* ===== FEATURES DEEP DIVE SECTION ===== */
.features-section {
    padding: 120px 40px 100px;
    background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, 0.2), transparent);
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.features-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0.05) 100%);
    color: #0088cc;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(0, 136, 204, 0.15);
}

.features-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.features-subtitle {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Feature Card - Large Alternating Layout */
.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.feature-card:hover {
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.feature-card-reverse {
    direction: rtl;
}

.feature-card-reverse>* {
    direction: ltr;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Feature Icons */
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 28px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-icon-blue {
    background: linear-gradient(135deg, #e6f4fc 0%, #cce9f7 100%);
}

.feature-icon-blue svg {
    color: #0088cc;
}

.feature-icon-green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.feature-icon-green svg {
    color: #2e7d32;
}

.feature-icon-gold {
    background: linear-gradient(135deg, #fff8e6 0%, #ffecb3 100%);
}

.feature-icon-gold svg {
    color: #f59e0b;
}

.feature-icon-teal {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

.feature-icon-teal svg {
    color: #00897b;
}

.feature-icon-orange {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.feature-icon-orange svg {
    color: #e65100;
}

.feature-icon-indigo {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.feature-icon-indigo svg {
    color: #4f46e5;
}

.feature-icon-white {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon-white svg {
    color: white;
}

.feature-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 17px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f4fc 0%, #cce9f7 100%);
    color: #0088cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* AI Placeholder Blocks */
.ai-placeholder {
    display: block;
    width: 100%;
    height: 12px;
    background: #e8ecf3;
    border-radius: 10px;
}

.ai-placeholder.pill {
    width: 140px;
    height: 18px;
}

.ai-placeholder.bar {
    height: 12px;
}

.ai-placeholder.short {
    width: 60%;
}

.ai-placeholder.tall {
    height: 56px;
}


/* Feature Visuals */
.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    border-radius: 16px;
    position: relative;
}

/* About Preview Visual */
.feature-visual-about {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
    padding: 32px;
}

.about-preview {
    background: white;
    border-radius: 16px;
    padding: 28px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.about-preview-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.about-preview-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088cc, #006ba3);
}

.about-preview-info {
    flex: 1;
}

.about-preview-name {
    height: 14px;
    width: 120px;
    background: #1a1a1a;
    border-radius: 4px;
    margin-bottom: 8px;
}

.about-preview-title {
    height: 10px;
    width: 90px;
    background: #ddd;
    border-radius: 3px;
}

.about-preview-text {
    height: 10px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 10px;
}

.about-preview-text.short {
    width: 70%;
}

.about-preview-text.shorter {
    width: 50%;
}

/* Services Preview Visual */
.feature-visual-services {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 32px;
}

.services-preview {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: #fafafa;
}

.service-item-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-item-duration {
    font-size: 13px;
    color: #888;
}

.service-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #2e7d32;
}

/* Generic placeholder styles for services */
.service-item-name-placeholder {
    height: 14px;
    width: 140px;
    background: #1a1a1a;
    border-radius: 4px;
    margin-bottom: 8px;
}

.service-item-desc-placeholder {
    height: 10px;
    width: 100px;
    background: #ddd;
    border-radius: 3px;
}

.service-item-price-placeholder {
    height: 16px;
    width: 50px;
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    border-radius: 4px;
}

/* Reviews Preview Visual */
.feature-visual-reviews {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 32px;
}

.reviews-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 320px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.review-card-small {
    padding: 18px 24px;
}

.review-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.review-card-small .review-text {
    margin-bottom: 8px;
}

.review-author {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

/* Generic placeholder styles for reviews */
.review-stars-placeholder {
    height: 16px;
    width: 100px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 4px;
    margin-bottom: 12px;
}

.review-text-placeholder {
    height: 12px;
    width: 100%;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 8px;
}

.review-text-placeholder.short {
    width: 70%;
}

.review-text-placeholder.shorter {
    width: 50%;
}

.review-author-placeholder {
    height: 12px;
    width: 100px;
    background: #ddd;
    border-radius: 3px;
}

/* Message Preview Visual */
.feature-visual-message {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 32px;
}

.message-preview {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.message-icon-envelope {
    width: 24px;
    height: 24px;
}

.message-icon-envelope svg {
    width: 100%;
    height: 100%;
}

.message-body {
    padding: 24px;
}

.message-from {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.message-content {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

/* Generic placeholder styles for messages */
.message-from-placeholder {
    height: 12px;
    width: 180px;
    background: #ddd;
    border-radius: 3px;
    margin-bottom: 16px;
}

.message-content-placeholder {
    height: 12px;
    width: 100%;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 10px;
}

.message-content-placeholder.short {
    width: 60%;
    margin-bottom: 0;
}

/* AI Assistant Visual */
.feature-visual-ai {
    background: #f7f8fa;
    padding: 32px;
}

.ai-preview {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 700;
    font-size: 12px;
}

.ai-chat-bubble {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    border: 1px solid #e5e7eb;
}

.ai-chat-bubble.ai {
    align-self: flex-end;
    background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
    border-color: #d7e3ff;
    color: #1f2937;
}

.ai-chat-bubble.data {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #065f46;
}

.ai-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.ai-metric-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-metric-value {
    font-weight: 700;
    font-size: 18px;
    color: #111827;
}

.ai-metric-label {
    font-size: 12px;
    color: #6b7280;
}

/* Marketplace Feature Card */
.feature-card-marketplace {
    display: block;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.feature-card-marketplace::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 136, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 136, 204, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.marketplace-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.marketplace-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0088cc 0%, #006ba3 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-card-marketplace .feature-icon {
    margin: 0 auto 28px;
}

.feature-title-marketplace {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.feature-description-marketplace {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

/* Features Responsive Styles */
@media screen and (max-width: 1100px) {
    .features-section {
        padding: 80px 24px;
    }

    .features-title {
        font-size: 36px;
    }

    .features-subtitle {
        font-size: 17px;
    }

    .feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }

    .feature-card-reverse {
        direction: ltr;
    }

    .feature-visual {
        min-height: 280px;
        order: -1;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-description {
        font-size: 16px;
    }

    .feature-card-marketplace {
        padding: 48px 32px;
    }

    .feature-title-marketplace {
        font-size: 28px;
    }

    .feature-description-marketplace {
        font-size: 16px;
    }

    .marketplace-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media screen and (max-width: 850px) {
    .features-section {
        padding: 70px 20px;
    }

    .features-header {
        margin-bottom: 50px;
    }

    .features-title {
        font-size: 32px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .features-grid {
        gap: 28px;
    }

    .feature-card {
        padding: 32px 24px;
        gap: 32px;
        border-radius: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .feature-list li {
        font-size: 14px;
        padding-left: 26px;
    }

    .feature-list li::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .feature-visual {
        min-height: 240px;
        padding: 24px;
    }

    .about-preview,
    .services-preview,
    .review-card,
    .message-preview,
    .analytics-preview,
    .ai-preview {
        max-width: 280px;
    }

    .feature-card-marketplace {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .feature-title-marketplace {
        font-size: 24px;
    }

    .feature-description-marketplace {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .marketplace-feature {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .features-section {
        padding: 60px 16px;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .features-title {
        font-size: 28px;
    }

    .features-subtitle {
        font-size: 15px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 28px 20px;
        gap: 28px;
        border-radius: 16px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .feature-list li {
        font-size: 13px;
        padding-left: 24px;
        gap: 10px;
    }

    .feature-list li::before {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .feature-visual {
        min-height: 220px;
        padding: 20px;
        border-radius: 12px;
    }

    .about-preview {
        padding: 20px;
    }

    .about-preview-avatar {
        width: 44px;
        height: 44px;
    }

    .about-preview-name {
        width: 100px;
        height: 12px;
    }

    .about-preview-title {
        width: 70px;
        height: 8px;
    }

    .about-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .service-item {
        padding: 16px 20px;
    }

    .service-item-name {
        font-size: 14px;
    }

    .service-item-duration {
        font-size: 12px;
    }

    .service-item-price {
        font-size: 15px;
    }

    .review-card {
        padding: 20px;
    }

    .review-stars-placeholder {
        height: 14px;
        width: 90px;
        margin-bottom: 10px;
    }

    .review-text-placeholder {
        height: 10px;
        margin-bottom: 6px;
    }

    .review-author-placeholder {
        height: 10px;
        width: 80px;
    }

    .message-header {
        padding: 14px 20px;
        font-size: 14px;
    }

    .message-body {
        padding: 20px;
    }

    .message-from {
        font-size: 12px;
    }

    .message-content {
        font-size: 14px;
    }

    .message-cta {
        padding: 14px 20px;
        font-size: 13px;
    }

    .analytics-preview {
        padding: 20px;
    }

    .analytics-chart {
        height: 80px;
        gap: 8px;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .feature-card-marketplace {
        padding: 32px 20px;
    }

    .marketplace-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .feature-card-marketplace .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-title-marketplace {
        font-size: 22px;
    }

    .feature-description-marketplace {
        font-size: 14px;
        line-height: 1.7;
    }

    .marketplace-features {
        gap: 12px;
    }

    .marketplace-feature {
        font-size: 13px;
        gap: 8px;
    }

    .marketplace-feature svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra small screens - 360px for features */
@media screen and (max-width: 360px) {
    .features-section {
        padding: 50px 12px;
    }

    .features-title {
        font-size: 24px;
    }

    .features-subtitle {
        font-size: 14px;
    }

    .feature-card {
        padding: 24px 16px;
        gap: 24px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 13px;
    }

    .feature-visual {
        min-height: 200px;
        padding: 16px;
    }

    .feature-card-marketplace {
        padding: 28px 16px;
    }

    .feature-title-marketplace {
        font-size: 20px;
    }

    .feature-description-marketplace {
        font-size: 13px;
    }
}

/* ===== PROFILES SECTION ===== */
.profiles-section {
    padding: 100px 40px 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f7f7 50%, #f5f4f4 100%);
}

.profiles-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.profiles-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.profiles-subtitle {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

/* Styles for the service providers display section */

#serviceProvidersDisplaySectionOuterDiv {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 0px 40px 40px 40px;
    width: 100%;
    box-sizing: border-box;
    min-height: 50vh;
}

.individualServiceProviderDisplayOuterDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    height: fit-content;
    cursor: pointer;
    position: relative;
    line-height: 1.2;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.individualServiceProviderDisplayUpperPartDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.individualServiceProviderDisplayPreviewImagesOuterDiv {
    width: 100%;
    position: relative;
    aspect-ratio: 3/2;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}

.individualServiceProviderDisplayPreviewImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-container img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.prev-btn,
.next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.carousel-container:hover .prev-btn,
.carousel-container:hover .next-btn {
    display: flex;
}

.prev-btn:hover,
.next-btn:hover {
    opacity: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    fill: #333;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: white;
}

.individualServiceProviderDisplayMiddleSectionOuterDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    padding: 0 5px;
}

.individualServiceProviderDisplayProfilePicAndNameAndServiceTitleOuterDiv {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.individualServiceProviderDisplayProfilePicDiv {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.individualServiceProviderDisplayProfilePic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.individualServiceProviderDisplayNameAndServiceTitleOuterDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.individualServiceProviderDisplayNameDiv {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 1.2;
    margin: 0;
}

.individualServiceProviderDisplayServiceTitleDiv {
    font-size: 16px;
    color: #333;
    opacity: 0.6;
    width: 100%;
    line-height: 1.2;
    margin: 0;
}

.individualServiceProviderDisplayHeadlineAndRatingOuterDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.individualServiceProviderDisplayHeadlineDiv {
    line-height: 1.3;
    width: 100%;
    margin: 0;
}

.individualServiceProviderDisplayOuterRatingsDiv {
    display: flex;
    align-items: center;
    gap: 5px;
}

.individualServiceProviderDisplayRatingsIcon {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    opacity: 0.8;
}

.individualServiceProviderDisplayActualRatingDiv {
    font-size: 15px;
    font-weight: bold;
    opacity: 0.8;
    line-height: 1.2;
    margin: 0;
}

.individualServiceProviderDisplayNumberOfRatingsSpan {
    font-size: 15px;
    opacity: 0.8;
    font-weight: normal;
    line-height: 1.2;
}

#individualServiceProviderDisplayLowerDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    padding: 0 5px;
}

.individualServiceProviderDisplayLowerPriceDiv {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.individualServiceProviderDisplayLowerLocationDiv {
    display: flex;
    align-items: center;
    gap: 5px;
}

.individualServiceProviderDisplayLowerLocationIcon {
    height: 15px;
    width: 15px;
    opacity: 0.5;
    flex-shrink: 0;
}

.individualServiceProviderDisplayLowerLocationTextDiv {
    font-size: 15px;
    opacity: 0.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin: 0;
}

.spProfileLink {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.spProfileLink:hover {
    cursor: pointer;
}

.carousel-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 3s ease infinite;
    z-index: 1;
    border-radius: 8px;
}

.profile-photo-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 3s ease infinite;
    z-index: 0;
}

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

    100% {
        background-position: -200% 0;
    }
}

/* Service Providers Display Responsive Styles */
@media screen and (max-width: 768px) {
    #serviceProvidersDisplaySectionOuterDiv {
        padding: 0px 15px 25px 15px;
    }
}

@media screen and (max-width: 850px) {
    .profiles-section {
        padding: 80px 0 60px;
    }

    .profiles-header {
        padding: 0 20px;
    }

    .profiles-title {
        font-size: 32px;
    }

    #serviceProvidersDisplaySectionOuterDiv {
        padding: 0 20px 30px;
    }
}

@media screen and (max-width: 480px) {
    .profiles-title {
        font-size: 28px;
    }
}

/* Extra small screens - 360px for profiles */
@media screen and (max-width: 360px) {
    .profiles-section {
        padding: 60px 0 50px;
    }

    .profiles-header {
        padding: 0 12px;
        margin-bottom: 40px;
    }

    .profiles-title {
        font-size: 24px;
    }

    .profiles-subtitle {
        font-size: 15px;
    }

    #serviceProvidersDisplaySectionOuterDiv {
        padding: 0 12px 20px;
        gap: 24px;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 100px 40px 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 25%, #f0f7ff 50%, #e8f4fc 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 136, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 136, 204, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, 0.2), transparent);
    z-index: 0;
}

.how-it-works-section>* {
    position: relative;
    z-index: 1;
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0088cc;
    margin-bottom: 16px;
}

.how-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    flex: 1;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0088cc 0%, #006ba3 100%);
    color: white;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.1), 0 1px 4px rgba(0, 136, 204, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 3px 12px rgba(0, 136, 204, 0.15), 0 2px 6px rgba(0, 136, 204, 0.1);
}

.step-content {
    max-width: 260px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.4), rgba(0, 136, 204, 0.2));
    margin-top: -80px;
    position: relative;
    z-index: 0;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #0088cc;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.08);
}

/* How It Works Responsive Styles */
@media screen and (max-width: 850px) {
    .how-it-works-section {
        padding: 80px 20px;
    }

    .how-title {
        font-size: 32px;
    }

    .steps-container {
        flex-direction: column;
        gap: 0;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .step-card {
        padding: 24px;
    }
}

@media screen and (max-width: 480px) {
    .how-title {
        font-size: 28px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* Extra small screens - 360px for how it works */
@media screen and (max-width: 360px) {
    .how-it-works-section {
        padding: 60px 12px;
    }

    .how-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .how-title {
        font-size: 24px;
    }

    .step-card {
        padding: 20px 12px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-description {
        font-size: 13px;
    }

    .step-connector {
        height: 32px;
    }
}