/* Main Container */
.icrm-landing-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9fafb;
}

.icrm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

/* Typography */
.icrm-landing-wrapper h1,
.icrm-landing-wrapper h2,
.icrm-landing-wrapper h3 {
    font-weight: 800;
    margin-top: 0;
    color: #111827;
}

.icrm-landing-wrapper p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Buttons */
.icrm-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icrm-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    border: none;
}

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

.icrm-btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151 !important;
}

.icrm-btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb !important;
}

.icrm-btn-white {
    background: white;
    color: #2563eb !important;
}

.icrm-btn-white:hover {
    background: #f3f4f6;
}

.icrm-btn-large {
    padding: 16px 40px;
    font-size: 1.1em;
}

.icrm-btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* Hero Section */
.icrm-hero {
    padding: 80px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.icrm-hero .icrm-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.icrm-hero-content {
    flex: 1;
    z-index: 2;
}

.icrm-badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.icrm-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.icrm-hero-content h1 strong {
    color: #2563eb;
}

.icrm-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.icrm-cta-group {
    display: flex;
    gap: 15px;
}

.icrm-hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.icrm-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.icrm-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Stats Section */
.icrm-stats {
    background: #1f2937;
    color: white;
    padding: 40px 0;
}

.icrm-stats .icrm-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.icrm-stat-item h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.icrm-stat-item p {
    color: #9ca3af;
    margin: 0;
    font-weight: 500;
}

/* Features Grid */
.icrm-features {
    padding: 100px 0;
    background: #f9fafb;
}

.icrm-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.icrm-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.icrm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.icrm-feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.icrm-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icrm-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Highlight Sections */
.icrm-highlight {
    padding: 100px 0;
    background: white;
}

.icrm-highlight:nth-child(even) {
    background: #f3f4f6;
}

.icrm-highlight .icrm-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.icrm-highlight.icrm-reverse .icrm-container {
    flex-direction: row-reverse;
}

.icrm-highlight-content {
    flex: 1;
}

.icrm-highlight-image {
    flex: 1;
}

.icrm-highlight-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.icrm-highlight-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.icrm-tag {
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.icrm-highlight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.icrm-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icrm-check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 600;
    color: #374151;
}

.icrm-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 800;
}

/* CTA Footer */
.icrm-cta-footer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.icrm-cta-footer h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.icrm-cta-footer p {
    color: #dbeafe;
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal Styles */
.icrm-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.icrm-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: icrmSlideIn 0.3s ease-out;
}

@keyframes icrmSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icrm-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.icrm-close:hover,
.icrm-close:focus {
    color: black;
    text-decoration: none;
}

.icrm-modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #111827;
}

.icrm-modal-header p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #6b7280;
}

/* Form Styles */
.icrm-form-group {
    margin-bottom: 20px;
}

.icrm-form-row {
    display: flex;
    gap: 15px;
}

.icrm-form-group.half {
    flex: 1;
}

.icrm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.icrm-form-group input,
.icrm-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
    font-family: inherit;
}

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

/* Responsive */
@media (max-width: 960px) {

    .icrm-hero .icrm-container,
    .icrm-highlight .icrm-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .icrm-highlight.icrm-reverse .icrm-container {
        flex-direction: column;
    }

    .icrm-hero-content h1 {
        font-size: 2.5rem;
    }

    .icrm-cta-group {
        justify-content: center;
    }

    .icrm-highlight-content ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .icrm-form-row {
        flex-direction: column;
        gap: 0;
    }
}