@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- Variables ---------- */
:root {
    --primary: #2563eb;
    --bg-light: #ffffff;
    --bg-dark: #111827;
    --card-light: #f8fafc;
    --card-dark: #020617;
    --text-dark: #0d141b;
    --text-muted: -------------------------------------------------------------#617589;
    --border-light: #e7edf3;
}

/* ---------- Section ---------- */
.docx-section {
    width: 100%;
    background: #fff;
    padding: 5rem 0;
    margin-top: 1rem;
}

.dark .docx-section {
    background: var(--bg-dark);
}

/* ---------- Layout ---------- */
.docx-layout {
    display: flex;
    flex-direction: column;
}

.docx-inner {
    padding: 0 1rem;
    display: flex;
    justify-content: center;
}

.docx-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins';
}

/* ---------- Header ---------- */
.docx-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
    font-family: 'Poppins';
}

.docx-icon-wrapper {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: #dbeafe;
    color: var(--primary);
    display: flex;
}

.dark .docx-icon-wrapper {
    background: rgba(30, 64, 175, 0.3);
}

.docx-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins';
}

.dark .docx-title {
    color: #ffffff;
}

/* ---------- Main ---------- */
.docx-main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ---------- Left ---------- */
.docx-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

.docx-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #3b3c3f;
    font-family: 'Poppins';
    line-height: 1.5;
    margin-bottom: 0;
}

.dark .docx-heading {
    color: #ffffff;
}

.docx-description {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-family: 'Poppins';
    margin-bottom: 0;
}

.dark .docx-description {
    color: #9ca3af;
}

/* ---------- Feature List ---------- */
.docx-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.docx-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.dark .docx-features li {
    color: #e5e7eb;
}

.docx-features span.material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ---------- CTA ---------- */
.docx-cta {
    margin-top: 1rem;
    width: fit-content;
    height: 2.5rem;
    padding: 0 1.25rem;
    background: var(--primary);
    color: #f8fafc;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Poppins';
}

.docx-cta:hover {
    background: #1d4ed8;
}

/* ---------- Cards ---------- */
.docx-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.docx-card {
    background: var(--card-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dark .docx-card {
    background: var(--card-dark);
    border-color: #1f2937;
}

.docx-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins';
    color: #3b3c3f;
}

.dark .docx-card h4 {
    color: #ffffff;
}

.docx-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-family: 'Poppins';
    margin-bottom: 0;
}
.card-span{
    font-size: 0.95rem;
}
.dark .docx-card p {
    color: #9ca3af;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: #eaf5ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    color: var(--primary);
}


/* ---------- Responsive ---------- */
@media (min-width: 320px) and (max-width: 567px) {
    .docx-main {
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    .docx-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .docx-card.wide {
        grid-column: span 2;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .docx-main {
        flex-direction: row;
        align-items: flex-start;
    }
}



/* ---------- Variables ---------- */
:root {
    --purple: #7c3aed;
    --purple-light: #f3e8ff;
    --bg-light: #f8fafc;
    --bg-dark: #020617;
    --card-light: #ffffff;
    --card-dark: #1f2937;
    --text-dark: #0d141b;
    --text-muted: #4c739a;
    --border-light: #e7edf3;
}

/* ---------- Section ---------- */
.sumx-section {
    width: 100%;
    background: var(--bg-light);
    padding: 5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.dark .sumx-section {
    background: var(--bg-dark);
    border-color: #1f2937;
}

/* ---------- Layout ---------- */
.sumx-layout {
    display: flex;
    flex-direction: column;
}

.sumx-inner {
    padding: 0 1rem;
    display: flex;
    justify-content: center;
}

.sumx-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ---------- Header ---------- */
.sumx-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
    justify-content: flex-end;
}

.sumx-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins';
}

.dark .sumx-title {
    color: #ffffff;
}

.sumx-icon-wrapper {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
}

.dark .sumx-icon-wrapper {
    background: rgba(124, 58, 237, 0.3);
}

/* ---------- Main ---------- */
.sumx-main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ---------- Text ---------- */
.sumx-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

.sumx-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins';
    line-height: 1.5;
    margin-bottom: 0;
}

.dark .sumx-heading {
    color: #ffffff;
}

.sumx-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-family: 'Poppins';
    margin-bottom: 0;
}

.dark .sumx-description {
    color: #9ca3af;
}

/* ---------- Features ---------- */
.sumx-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sumx-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.dark .sumx-features li {
    color: #e5e7eb;
}

.sumx-features .material-symbols-outlined {
    color: var(--purple);
    font-size: 1.25rem;
}

/* ---------- CTA ---------- */
.sumx-cta {
    margin-top: 1rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    background: #7c3aed;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s ease;
    font-family: 'Poppins';
    color: #fff;
}

.sumx-cta:hover {
    background: #7c3aedb7;
}


/* ---------- Cards ---------- */
.sumx-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.sumx-card {
    background: var(--card-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.dark .sumx-card {
    background: var(--card-dark);
    border-color: #374151;
}

.sumx-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins';
}

.dark .sumx-card h4 {
    color: #ffffff;
}

.sumx-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.sum-card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--purple-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
}


/* ---------- Responsive ---------- */
@media (min-width: 768px) {
    .sumx-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .sumx-card.wide {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .sumx-main {
        flex-direction: row-reverse;
        align-items: flex-start;
    }
}

