/* CRM Solutions Page Styles */

/* Base Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* CRM Hero Section */
.launch-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.475) 0%, rgba(30, 41, 59, 0.55) 100%),
                url('static/meet.webp') center center / cover no-repeat;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.launch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

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

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #dc2626 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    animation: pulse-badge 2s infinite;
}

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

.rocket-emoji {
    font-size: 1.2rem;
}

.launch-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.price-section {
    margin: 2rem 0;
}

.price-special {
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.launch-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}



/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

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

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Industry Solutions */
.industry-solutions {
    padding: 80px 20px;
    background: var(--light-surface);
}

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--accent-color);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.industry-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Success Stories */
.success-stories {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.story-quote {
    margin-bottom: 2rem;
}

.story-quote i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.story-quote p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.story-author h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.story-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.story-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
}

/* Features Section (What's Included) */
.whats-included {
    padding: 80px 20px;
    background: var(--light-surface);
}

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

.included-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--accent-color);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.included-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.included-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Section */
.after-three-months {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    border-color: var(--accent-color);
}

.option-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ff6b35 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 20px 0 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-letter {
    min-width: 60px;
    width: auto;
    height: 60px;
    padding: 0 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.option-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.option-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.option-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.option-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.option-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.option-features li i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 20px;
    background: var(--light-surface);
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.why-points {
    display: grid;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.why-point i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.why-point h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.why-point p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* What is CRM Section */
.what-is-crm {
    padding: 80px 20px;
    background: white;
}

.crm-intro {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

/* CRM Benefits Scrolling Container */
.crm-benefits-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    margin-top: 2rem;
}

/* Gradient fade edges */
.crm-benefits-scroll-container::before,
.crm-benefits-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.crm-benefits-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.crm-benefits-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* Scrolling track */
.crm-benefits-scroll-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
    animation: scroll-benefits 35s linear infinite;
    width: max-content;
    align-items: stretch;
}

/* Pause animation on hover */
.crm-benefits-scroll-track:hover {
    animation-play-state: paused;
}

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

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    min-width: 350px;
    flex-shrink: 0;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* How It Helps Section */
.how-it-helps {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.help-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
}

.help-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.help-card h3 {
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.help-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CRM Preview Section */
.crm-preview {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.crm-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.preview-showcase {
    margin-top: 3rem;
}

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

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.preview-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.preview-feature:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.preview-feature i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.preview-feature h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.preview-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.2);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

.image-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

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

/* Analytics Dashboard Section */
.analytics-dashboard {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.analytics-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.analytics-dashboard .section-title {
    color: white;
}

.analytics-dashboard .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-showcase {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.dashboard-image {
    position: relative;
}

.dashboard-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.dashboard-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 90px rgba(59, 130, 246, 0.3);
}

.dashboard-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay-badge {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    animation: float-badge 3s ease-in-out infinite;
}

.overlay-badge i {
    font-size: 1.125rem;
}

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

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dashboard-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.dashboard-feature h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dashboard-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Contact/Claim Spot Section */
.claim-spot {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.urgency-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.urgency-box i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.urgency-box h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.urgency-box p {
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #10b981;
}

/* Responsive adjustments for CRM sections */
@media (max-width: 768px) {
    .launch-hero {
        padding: 100px 20px 60px;
    }
    
    .launch-title {
        font-size: 2.5rem;
    }
    
    .launch-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .crm-benefits-scroll-track {
        animation: scroll-benefits 30s linear infinite;
        gap: 1.5rem;
    }
    
    .benefit-item {
        min-width: 300px;
        padding: 1.5rem;
    }
    
    .crm-benefits-scroll-container::before,
    .crm-benefits-scroll-container::after {
        width: 50px;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .preview-features {
        order: 2;
        gap: 1.5rem;
    }
    
    .preview-image {
        order: 1;
    }
    
    .image-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    .preview-feature {
        padding: 1.25rem;
    }
    
    .preview-feature h4 {
        font-size: 1.05rem;
    }
    
    .preview-feature p {
        font-size: 0.9rem;
    }
    
    .dashboard-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dashboard-image {
        order: 1;
    }
    
    .dashboard-features {
        order: 2;
        gap: 1.5rem;
    }
    
    .dashboard-feature {
        padding: 1.5rem;
    }
    
    .overlay-badge {
        top: 2rem;
        left: 2rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.35rem;
    }
    
    .dashboard-feature h4 {
        font-size: 1.125rem;
    }
    
    .crm-benefits,
    .helps-grid,
    .problems-grid,
    .industries-grid,
    .stories-grid,
    .included-grid,
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item,
    .help-card,
    .problem-card,
    .industry-card,
    .story-card,
    .included-card,
    .option-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
    }
    
    .help-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -15px;
        left: 1.5rem;
    }
    
    .problem-icon,
    .industry-icon,
    .included-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-points {
        gap: 1rem;
    }
    
    .why-point {
        padding: 1rem;
    }
    
    .option-letter {
        min-width: 50px;
        height: 50px;
        padding: 0 0.875rem;
        font-size: 0.875rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .crm-benefits-scroll-track {
        animation: scroll-benefits 25s linear infinite;
        gap: 1rem;
    }
    
    .benefit-item {
        min-width: 280px;
        padding: 1.25rem;
    }
    
    .benefit-item h4 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
    
    .crm-benefits-scroll-container::before,
    .crm-benefits-scroll-container::after {
        width: 30px;
    }
    
    .preview-content {
        gap: 2rem;
    }
    
    .preview-features {
        gap: 1.25rem;
    }
    
    .preview-feature {
        padding: 1rem;
        gap: 1rem;
    }
    
    .preview-feature i {
        font-size: 1.25rem;
    }
    
    .preview-feature h4 {
        font-size: 1rem;
    }
    
    .preview-feature p {
        font-size: 0.875rem;
    }
    
    .image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .image-frame {
        padding: 0.75rem;
    }
    
    .dashboard-showcase {
        gap: 2.5rem;
    }
    
    .dashboard-features {
        gap: 1.25rem;
    }
    
    .dashboard-feature {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .dashboard-feature h4 {
        font-size: 1.05rem;
    }
    
    .dashboard-feature p {
        font-size: 0.9rem;
    }
    
    .overlay-badge {
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    
    .dashboard-frame {
        padding: 1rem;
    }
}