﻿:root {
    --primary: #4f46e5;
    --secondary: #0f172a;
    --accent: #22c55e;
    --light: #f8fafc;
    --muted: #64748b;
    --border: #e5e7eb;
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ====== GLOBAL ====== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(79,70,229,0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(79,70,229,0.4);
    }

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

    .section-title h2 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .section-title p {
        color: var(--muted);
        font-size: 18px;
    }

/* ====== HEADER ====== */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 28px;
}

    .nav-links a {
        font-weight: 500;
        color: var(--muted);
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--primary);
        }


/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
}

/* LEFT */
.hero-left {
    animation: fadeLeft 1s ease forwards;
}

.badge {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 20px;
}

    .hero-left h1 span {
        color: #2563eb;
    }

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

    .btn.primary {
        background: #2563eb;
        color: #fff;
    }

    .btn.outline {
        border: 2px solid #2563eb;
        color: #2563eb;
    }

/* RIGHT CARDS */
.hero-right {
    position: relative;
    height: 480px;
}

.card {
    position: absolute;
    width: 240px;
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    animation: float 5s ease-in-out infinite;
}

    /* SOFT COLOR BACKGROUNDS */
    .card.blue {
        background: #eff6ff;
    }

    .card.green {
        background: #ecfdf5;
    }

    .card.orange {
        background: #fff7ed;
    }

    .card.purple {
        background: #f5f3ff;
    }

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.icon {
    font-size: 22px;
    color: #000;
    line-height: 1;
}

.card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

:root {
    --primary: #2563eb;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f8fafc;
}

* {
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

body {
    margin: 0;
    background: linear-gradient(180deg,#ffffff,#f8fafc);
    color: var(--text);
}

/* SECTION */
.crm-section {
    padding: 110px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.crm-header {
    text-align: center;
    margin-bottom: 70px;
}

    .crm-header h2 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .crm-header p {
        font-size: 18px;
        color: var(--muted);
        max-width: 680px;
        margin: auto;
    }

/* GRID */
.crm-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

/* CARD (COMPACT) */
.crm-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 26px 26px 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
    transition: .35s ease;
}

/* ICON */
.crm-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

/* TEXT */
.crm-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.crm-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
}

/* HOVER – SUBTLE */
.crm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,.10);
}

/* RESPONSIVE */
@media(max-width:1000px) {
    .crm-grid {
        grid-template-columns: 1fr;
    }
}

.card span {
    font-size: 14px;
    color: var(--muted);
}

/* POSITIONS */
.card-1 {
    top: 0;
    left: 40px;
}

.card-2 {
    top: 130px;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 130px;
    left: 0;
    animation-delay: 2s;
}

.card-4 {
    bottom: 0;
    right: 80px;
    animation-delay: 3s;
}

/* HOVER */
.card:hover {
    transform: translateY(-6px);
    transition: .3s;
}

/* ANIMATION */
@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media(max-width:900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-right {
        margin-top: 60px;
    }
}

/* ====== FEATURES ====== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-card p {
        color: var(--muted);
    }

/* ====== WORKFLOW ====== */
.workflow {
    background: var(--light);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    padding: 25px;
    background: #fff;
    border-radius: var(--radius);
    border-left: 5px solid var(--primary);
}

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

    .testimonial p {
        font-style: italic;
        color: var(--muted);
        margin-bottom: 16px;
    }

    .testimonial strong {
        font-weight: 600;
    }

/* ====== PRICING ====== */
/* ===== ADVANCED PRICING ===== */
.pricing-advanced {
    background: #f8fafc;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    font-weight: 600;
}

    .billing-toggle span {
        color: var(--muted);
    }

        .billing-toggle span.active {
            color: var(--primary);
        }

.switch {
    position: relative;
    width: 56px;
    height: 30px;
}

    .switch input {
        opacity: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #c7d2fe;
    border-radius: 30px;
    transition: 0.4s;
}

    .slider::before {
        content: "";
        position: absolute;
        height: 22px;
        width: 22px;
        left: 4px;
        top: 4px;
        background: white;
        border-radius: 50%;
        transition: 0.4s;
    }

input:checked + .slider {
    background: var(--primary);
}

    input:checked + .slider::before {
        transform: translateX(26px);
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.price-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

    .price-card img {
        width: 70px;
        margin: 0 auto 20px;
    }

    .price-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 70px rgba(0,0,0,0.12);
    }

    .price-card.highlight {
        border: 2px solid var(--primary);
        box-shadow: 0 30px 80px rgba(79,70,229,0.25);
    }

    .price-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

.price {
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0 5px;
}

.duration {
    color: var(--muted);
    font-size: 14px;
}

.price-card ul {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

    .price-card ul li {
        margin-bottom: 10px;
        color: var(--muted);
    }

.hidden {
    display: none;
}


/* ====== CTA ====== */
.cta {
    background: linear-gradient(135deg, var(--primary), #4338ca);
    color: #fff;
    text-align: center;
}

    .cta h2 {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .cta p {
        font-size: 18px;
        opacity: 0.9;
        margin-bottom: 30px;
    }

/* ====== FOOTER ====== */
footer {
    background: var(--secondary);
    color: #cbd5f5;
    padding: 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

footer a {
    color: #cbd5f5;
    font-size: 14px;
}

footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }
}

/* ================= INTEGRATION SECTION ================= */
.integration-section {
    background: #ffffff;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 14px;
}

.integration-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

.integration-content p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 28px;
}

.integration-list {
    list-style: none;
    margin-bottom: 35px;
}

    .integration-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 14px;
        font-weight: 500;
    }

        .integration-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #22c55e;
            font-weight: bold;
        }

/* VISUAL HUB */
.integration-visual {
    position: relative;
    width: 360px;
    height: 360px;
    margin: auto;
}

.crm-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 30px 80px rgba(79,70,229,0.4);
}

.node {
    position: absolute;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}


.top-left {
    top: 0;
    left: 60px;
}

.top-right {
    top: 0;
    right: 60px;
}

.mid-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.mid-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.bottom-left {
    bottom: 0;
    left: 60px;
}

.bottom-right {
    bottom: 0;
    right: 60px;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 900px) {
    .integration-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .integration-visual {
        margin-top: 60px;
    }
}


.integration-section {
    padding: 120px 20px;
    background: #ffffff;
}

.integration-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---------- LEFT ---------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef1ff;
    color: #5b63ff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 16px;
}

.icon-code {
    font-weight: bold;
}

.integration-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.integration-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 520px;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

    .integration-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
        font-size: 15px;
    }

        .integration-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
        }

/* ---------- CTA ---------- */
.cta-btn {
    background: linear-gradient(135deg, #6b7cff, #7c5cff);
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(91,99,255,.35);
    }

/* ---------- RIGHT VISUAL ---------- */
.integration-visual {
    position: relative;
    width: 420px;
    height: 420px;
    margin: auto;
}

/* Central hub */
.hub {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #6b7cff, #7c5cff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(91,99,255,.4);
    z-index: 3;
}

/* Nodes */
.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.node-1 {
    top: 40px;
    left: 40px;
    animation-delay: 0s;
}

.node-2 {
    top: 40px;
    right: 40px;
    animation-delay: 1s;
}

.node-3 {
    right: 0;
    top: 180px;
    animation-delay: 2s;
}

.node-4 {
    bottom: 40px;
    right: 40px;
    animation-delay: 3s;
}

.node-5 {
    bottom: 40px;
    left: 40px;
    animation-delay: 4s;
}

.node-6 {
    left: 0;
    top: 180px;
    animation-delay: 5s;
}

/* Lines */
.lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .lines path {
        stroke: #b9bdfc;
        stroke-width: 2;
        fill: none;
        stroke-dasharray: 6;
        animation: dash 3s linear infinite;
    }

/* Animations */
@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .integration-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .integration-visual {
        width: 360px;
        height: 360px;
    }
}
/* ================= FEATURE SPLIT SECTIONS ================= */
.feature-split {
    background: #ffffff;
}

.alt-bg {
    background: var(--light);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

    .split-grid.reverse {
        direction: rtl;
    }

        .split-grid.reverse > * {
            direction: ltr;
        }

.split-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

.description {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 30px;
}

/* VISUAL CARDS */
.split-visual {
    display: flex;
    justify-content: center;
}

.timeline-card,
.reminder-card,
.campaign-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 380px;
}

.timeline-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

    .timeline-item:last-child {
        border-bottom: none;
    }

.reminder-card h4,
.campaign-card h4 {
    margin-bottom: 16px;
}

.tag {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.stat {
    margin-bottom: 10px;
    font-weight: 600;
}

    .stat.success {
        color: #22c55e;
    }

@media (max-width: 900px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}



/* DEMO BUTTON */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-demo {
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    box-shadow: 0 20px 40px rgba(37,99,235,.35);
    transition: .3s;
}

    .open-demo:hover {
        transform: translateY(-2px);
    }

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

    .overlay.active {
        display: flex;
    }

/* MODAL */
.modal {
    width: 100%;
    max-width: 900px;
    border-radius: 26px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 120px rgba(0,0,0,.35);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    animation: modalIn .45s ease;
}

/* LEFT INFO */
.modal-info {
    padding: 48px;
    background: linear-gradient(180deg,#2563eb,#1e40af);
    color: #fff;
}

    .modal-info h2 {
        font-size: 32px;
        margin: 0 0 14px;
    }

    .modal-info p {
        opacity: .9;
        margin-bottom: 30px;
    }

.info-points {
    display: grid;
    gap: 16px;
}

    .info-points div {
        display: flex;
        gap: 12px;
        align-items: center;
    }

.dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

/* FORM */
.modal-form {
    padding: 48px;
    background: #fff;
    position: relative;
}

/* CLOSE BUTTON (WHITE AREA) */
.close {
    position: absolute;
    top: 4px;
    right: 22px;
    font-size: 26px;
    cursor: pointer;
    color: #475569;
}

    .close:hover {
        color: #000;
    }

/* FLOATING FIELD */
.field {
    position: relative;
    margin-bottom: 22px;
}

    .field input,
    .field textarea,
    .field select {
        width: 100%;
        padding: 14px 14px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        font-size: 15px;
        background: #fff;
        appearance: none;
    }

    .field label {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        background: #fff;
        padding: 0 6px;
        font-size: 14px;
        color: var(--muted);
        pointer-events: none;
        transition: .25s ease;
    }

    /* FLOAT EFFECT */
    .field input:focus + label,
    .field input:not(:placeholder-shown) + label,
    .field textarea:focus + label,
    .field textarea:not(:placeholder-shown) + label,
    .field select:focus + label,
    .field select:valid + label {
        top: -8px;
        font-size: 12px;
        color: var(--primary);
    }

    /* FOCUS */
    .field input:focus,
    .field textarea:focus,
    .field select:focus {
        outline: none;
        border-color: var(--primary);
    }

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

textarea {
    resize: none;
    height: 90px;
}

/* SUBMIT */
.submit {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(37,99,235,.35);
}

/* ANIMATION */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* MOBILE */
@media(max-width:900px) {
    .modal {
        grid-template-columns: 1fr;
    }

    .modal-info {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
/* ================= CRM FEATUREX SECTION ================= */
.crm-featurex-section {
    padding: 90px 20px;
    background: linear-gradient(180deg,#ffffff,#f8fafc);
}

.crm-featurex-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.crm-featurex-header {
    text-align: center;
    margin-bottom: 60px;
}

    .crm-featurex-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .crm-featurex-header p {
        font-size: 17px;
        color: #64748b;
        max-width: 650px;
        margin: auto;
    }

/* GRID */
.crm-featurex-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

/* CARD */
.crm-featurex-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px 26px;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
    transition: .3s ease;
}

/* ICON */
.crm-featurex-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

/* TEXT */
.crm-featurex-title {
    font-size: 17px;
    margin-bottom: 6px;
    color: #0f172a;
}

.crm-featurex-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: #64748b;
}

/* HOVER */
.crm-featurex-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .crm-featurex-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .crm-featurex-grid {
        grid-template-columns: 1fr;
    }
}
.error-box {
    background: #fff4f4;
    border: 1px solid #ffbcbc;
    color: #b71c1c;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
}

    .error-box ul {
        margin: 0;
        padding-left: 18px;
    }

    .error-box li {
        font-size: 14px;
        line-height: 1.6;
    }

.field-error input,
.field-error textarea,
.field-error select {
    border-color: #e53935 !important;
}