/* ═══════════════════════════════════════════════════════
   ERP SOFTWARE PAGE — DreamSoft
   ═══════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --erp-primary: #7c3aed;
    --erp-primary-light: rgba(124, 58, 237, 0.12);
    --erp-accent: #a855f7;
    --erp-accent-light: rgba(168, 85, 247, 0.10);
    --erp-green: #10b981;
    --erp-green-light: rgba(16, 185, 129, 0.12);
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-light: #f8fafc;
}

/* ─── Blobs ─── */
.erp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.erp-blob--left {
    top: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.08);
}

.erp-blob--right {
    bottom: -100px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.06);
}

.erp-blob--center-left {
    top: 40%;
    left: -150px;
    width: 350px;
    height: 350px;
    background: rgba(124, 58, 237, 0.06);
}

.erp-blob--center-right {
    top: 30%;
    right: -150px;
    width: 350px;
    height: 350px;
    background: rgba(168, 85, 247, 0.06);
}

/* ─── Kicker ─── */
.erp-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--erp-primary);
    background: var(--erp-primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ─── Shared CTA Wrapper ─── */
.erp-section-cta {
    margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════════ */
.erp-hero {
    background: linear-gradient(175deg, #faf5ff 0%, #f8fafc 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.erp-hero-title {
    font-size: 2.6rem;
}

.erp-hero-description {
    max-width: 540px;
}

.erp-hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
    max-width: 500px;
}

/* Float Badges */
.erp-float-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10;
}

.erp-float-badge--top {
    position: absolute;
    top: 30px;
    right: -10px;
}

.erp-float-badge--bottom {
    position: absolute;
    bottom: 40px;
    left: -10px;
}

.erp-float-badge-icon {
    font-size: 1.5rem;
}

.erp-float-badge-value {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.erp-float-badge-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════
   SECTION 2 — INTRODUCTION
   ═══════════════════════════════════════════════════════ */
.erp-intro-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.erp-intro-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.erp-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.erp-intro-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.erp-intro-text strong {
    color: var(--text-dark);
}

.erp-intro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.erp-intro-list li {
    color: var(--text-light);
    font-size: 0.98rem;
    padding-left: 22px;
    position: relative;
}

.erp-intro-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--erp-green);
    font-weight: bold;
}

.erp-intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.erp-stat-item {
    display: flex;
    flex-direction: column;
}

.erp-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--erp-primary), var(--erp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.erp-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.erp-intro-image {
    position: relative;
}

.erp-intro-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    transition: transform 0.4s ease;
}

.erp-intro-img:hover {
    transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════════
   SECTION 3 — WHAT IS ERP
   ═══════════════════════════════════════════════════════ */
.erp-what-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.erp-what-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.erp-what-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    transition: transform 0.4s ease;
}

.erp-what-img:hover {
    transform: scale(1.02);
}

.erp-what-content .section-heading {
    margin-bottom: 20px;
}

.erp-what-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.erp-what-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.erp-what-list li {
    color: var(--text-light);
    font-size: 1rem;
    padding-left: 24px;
    position: relative;
}

.erp-what-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--erp-primary);
    font-weight: bold;
}

/* ═══════════════════════════════════════════════════════
   SECTION 4 — BEST ERP
   ═══════════════════════════════════════════════════════ */
.erp-best-section {
    padding: 90px 0;
    background: #ffffff;
}

.erp-best-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.erp-best-intro {
    color: var(--text-light);
    font-size: 1.08rem;
    margin-top: 16px;
}

.erp-best-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.erp-best-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.erp-best-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 0% 0%, rgba(124, 58, 237, 0.06), transparent 50%),
        radial-gradient(600px circle at 100% 100%, rgba(168, 85, 247, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.erp-best-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.erp-best-card:hover::before {
    opacity: 1;
}

.erp-best-card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--erp-primary-light), var(--erp-accent-light));
    color: var(--erp-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 22px -14px rgba(124, 58, 237, 0.5);
    transition: transform 0.3s ease;
}

.erp-best-card:hover .erp-best-card-icon {
    transform: scale(1.1);
}

.erp-best-card h3 {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.erp-best-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   SECTION 5 — ERP MEANING / MODULES
   ═══════════════════════════════════════════════════════ */
.erp-meaning-section {
    padding: 90px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.erp-meaning-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.erp-meaning-intro {
    color: var(--text-light);
    font-size: 1.08rem;
    margin-top: 16px;
    line-height: 1.7;
}

.erp-meaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.erp-meaning-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.erp-meaning-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.erp-meaning-card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--erp-primary-light), var(--erp-accent-light));
    color: var(--erp-primary);
    margin-bottom: 20px;
    box-shadow: 0 10px 22px -14px rgba(124, 58, 237, 0.5);
    transition: transform 0.3s ease;
}

.erp-meaning-card:hover .erp-meaning-card-icon {
    transform: scale(1.1);
}

.erp-meaning-card h3 {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.erp-meaning-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   SECTION 6 — KEY FEATURES
   ═══════════════════════════════════════════════════════ */
.erp-features-section {
    padding: 90px 0;
    background: #ffffff;
}

.erp-features-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.erp-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.erp-feature-card {
    background: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.erp-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.erp-feature-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--erp-primary-light), var(--erp-accent-light));
    color: var(--erp-primary);
    margin: 0 auto 18px;
    transition: transform 0.3s ease;
}

.erp-feature-card:hover .erp-feature-card-icon {
    transform: scale(1.1);
}

.erp-feature-card h3 {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.erp-feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS 7–11 — INDUSTRY SECTIONS
   ═══════════════════════════════════════════════════════ */
.erp-industry-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.erp-industry--food,
.erp-industry--agro,
.erp-industry--chemical {
    background: var(--bg-light);
}

.erp-industry--hotel,
.erp-industry--pharma {
    background: #ffffff;
}

.erp-industry-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.erp-industry-grid--reverse {
    grid-template-columns: 1.1fr 0.9fr;
    direction: rtl;
}

.erp-industry-grid--reverse > * {
    direction: ltr;
}

.erp-industry-content .section-heading {
    margin-bottom: 20px;
}

.erp-industry-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.erp-industry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.erp-industry-features h4 {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.erp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.erp-check-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 22px;
    position: relative;
}

.erp-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--erp-primary);
    font-weight: bold;
    font-size: 0.85rem;
}

.erp-check-list--green li::before {
    color: var(--erp-green);
}

.erp-industry-image {
    position: relative;
}

.erp-industry-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    transition: transform 0.4s ease;
}

.erp-industry-img:hover {
    transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════════
   SECTION 12 — WHY CHOOSE
   ═══════════════════════════════════════════════════════ */
.erp-why-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.erp-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.erp-why-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease;
}

.erp-why-img:hover {
    transform: scale(1.02);
}

.erp-why-content .section-heading {
    margin-bottom: 20px;
}

.erp-why-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.erp-why-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.erp-why-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.erp-why-check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--erp-green-light);
    color: var(--erp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.erp-why-checklist h3 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.erp-why-checklist p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.erp-why-actions {
    display: flex;
    gap: 16px;
}

/* ═══════════════════════════════════════════════════════
   SECTION 13 — FINAL CTA
   ═══════════════════════════════════════════════════════ */
.erp-cta-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.erp-final-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    border-radius: 28px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.3);
}

.erp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 50%),
        radial-gradient(400px circle at 70% 80%, rgba(255, 255, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.erp-final-cta-heading {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.erp-final-cta-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.erp-final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.erp-btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 38px;
    background: #ffffff;
    color: var(--erp-primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.erp-btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.erp-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.erp-btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

/* ═══════════════════════════════════════════════════════
   SECTION 14 — FAQ
   ═══════════════════════════════════════════════════════ */
.erp-faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.erp-faq-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.erp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.erp-faq-item {
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.erp-faq-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.erp-faq-item.is-open {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.erp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.erp-faq-question:hover {
    color: var(--erp-primary);
}

.erp-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.erp-faq-item.is-open .erp-faq-chevron {
    transform: rotate(180deg);
    color: var(--erp-primary);
}

.erp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.erp-faq-item.is-open .erp-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.erp-faq-answer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   SECTION 15 — FINAL THOUGHTS
   ═══════════════════════════════════════════════════════ */
.erp-thoughts-section {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.erp-thoughts-section::before {
    content: '';
    position: absolute;
    right: -15%;
    top: -30%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    filter: blur(80px);
    pointer-events: none;
}

.erp-thoughts-section::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.erp-thoughts-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.erp-thoughts-content {
    flex: 1;
    max-width: 600px;
}

.erp-thoughts-heading {
    color: var(--text-dark);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.erp-thoughts-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.erp-thoughts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.erp-thoughts-list li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.erp-thoughts-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.erp-btn-thoughts-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #475569;
    border: 2px solid #cbd5e1;
    background: #ffffff;
    transition: all 0.3s ease;
}

.erp-btn-thoughts-outline:hover {
    color: var(--erp-primary);
    border-color: var(--erp-primary);
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.15);
}

/* Ring Visual */
.erp-thoughts-visual {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.erp-thoughts-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(124, 58, 237, 0.15);
}

.erp-thoughts-ring--outer {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: erp-spin 30s linear infinite;
}

.erp-thoughts-ring--inner {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(168, 85, 247, 0.18);
    animation: erp-spin 20s linear infinite reverse;
}

@keyframes erp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.erp-thoughts-ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.erp-thoughts-float {
    position: absolute;
    background: rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 12px;
    color: var(--erp-primary);
    font-weight: 700;
    font-size: 0.82rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: erp-float 4s ease-in-out infinite;
}

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

.erp-thoughts-float--1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.erp-thoughts-float--2 {
    bottom: 20px;
    left: 10px;
    animation-delay: 1.3s;
}

.erp-thoughts-float--3 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    animation-delay: 2.6s;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .erp-best-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .erp-meaning-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .erp-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .erp-intro-grid,
    .erp-what-grid,
    .erp-industry-grid,
    .erp-industry-grid--reverse,
    .erp-why-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .erp-hero-title {
        font-size: 2.2rem;
    }

    .erp-intro-grid,
    .erp-what-grid,
    .erp-why-grid {
        grid-template-columns: 1fr;
    }

    .erp-what-image,
    .erp-why-image {
        order: -1;
    }

    .erp-industry-grid,
    .erp-industry-grid--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .erp-industry-image {
        order: -1;
    }

    .erp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .erp-thoughts-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .erp-thoughts-actions {
        justify-content: center;
    }

    .erp-thoughts-list {
        text-align: left;
    }

    .erp-thoughts-visual {
        width: 220px;
        height: 220px;
    }

    .erp-thoughts-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .erp-hero {
        padding: 60px 0 70px;
    }

    .erp-best-grid,
    .erp-meaning-grid,
    .erp-features-grid {
        grid-template-columns: 1fr;
    }

    .erp-intro-section,
    .erp-what-section,
    .erp-best-section,
    .erp-meaning-section,
    .erp-features-section,
    .erp-industry-section,
    .erp-why-section,
    .erp-cta-section {
        padding: 70px 0;
    }

    .erp-faq-section {
        padding: 70px 0;
    }

    .erp-industry-features {
        grid-template-columns: 1fr;
    }

    .erp-final-cta {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .erp-final-cta-heading {
        font-size: 2rem;
    }

    .erp-final-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .erp-final-cta-actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .erp-intro-list {
        grid-template-columns: 1fr;
    }

    .erp-intro-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .erp-thoughts-section {
        padding: 60px 0;
    }

    .erp-thoughts-actions,
    .erp-thoughts-actions .btn {
        flex-direction: column;
        width: 100%;
    }

    .erp-thoughts-actions .erp-btn-thoughts-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .erp-hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .erp-float-badge {
        display: none;
    }

    .erp-thoughts-visual {
        display: none;
    }

    .erp-final-cta {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .erp-final-cta-heading {
        font-size: 1.6rem;
    }
}
