/* ==========================================================================
   QuadERP Landing Page — Styles
   Extends the base design system for the product landing page.
   ========================================================================== */

/* ===== SHARED / UTILITIES ===== */
.section-padding {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
}

.w-100 {
    width: 100%;
}

.glow-effect {
    transition: box-shadow 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.08);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.8) 1px, transparent 0);
    background-size: 4px 4px;
    pointer-events: none;
}

/* Scroll-reveal */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.slide-up { transform: translateY(28px); }
.animate-on-scroll.slide-left { transform: translateX(28px); }
.animate-on-scroll.slide-right { transform: translateX(-28px); }
.animate-on-scroll.in-view { opacity: 1; transform: none; }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== HERO ===== */
.erp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Hero Glow Orbs */
.erp-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
    animation: erp-orb-float 20s infinite ease-in-out alternate;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}
.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
    opacity: 0.3;
}
@keyframes erp-orb-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

.erp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.erp-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 174, 239, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 85, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 174, 239, 0.04) 0%, transparent 50%);
    animation: erp-gradient-pulse 8s ease-in-out infinite alternate;
}

@keyframes erp-gradient-pulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.erp-hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

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

.erp-hero-content {
    max-width: 560px;
}

.erp-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    animation: erp-badge-glow 3s ease-in-out infinite;
}

@keyframes erp-badge-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 174, 239, 0); }
    50% { box-shadow: 0 0 20px rgba(0, 174, 239, 0.15); }
}

.erp-hero-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.erp-hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.erp-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.erp-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.erp-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
}

.erp-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero Visual / Mockup */
.erp-hero-visual {
    position: relative;
}

.erp-mockup-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 60px rgba(0, 174, 239, 0.1);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-mockup-wrapper:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.erp-mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

.erp-mockup-glow {
    position: absolute;
    bottom: -50%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

/* Scroll Indicator */
.erp-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.erp-hero-scroll-indicator:hover {
    opacity: 1;
}

.erp-hero-scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.erp-scroll-arrow {
    font-size: 20px;
    color: var(--accent);
    animation: erp-scroll-bounce 2s ease-in-out infinite;
}

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

/* ===== STATS ===== */
.erp-stats {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 32px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-color);
    margin: 0 0 6px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border-color);
    flex-shrink: 0;
}

.erp-stat-text {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent) !important;
}

/* ===== FEATURES ===== */
.erp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.erp-features-grid .service-card {
    grid-column: auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.erp-features-grid .service-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glass-strong);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 174, 239, 0.1);
}
.service-icon {
    margin-bottom: 20px;
    color: var(--accent);
}
.service-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.service-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== APP SHOWCASE ===== */
.erp-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.erp-showcase-row:last-child {
    margin-bottom: 0;
}

.erp-showcase-reverse {
    direction: rtl;
}

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

.erp-showcase-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-showcase-img-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 174, 239, 0.1);
}

.erp-showcase-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.erp-showcase-img-wrapper:hover img {
    transform: scale(1.03);
}

.erp-showcase-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.erp-showcase-content h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.erp-showcase-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.erp-feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.erp-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.erp-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

/* ===== BENEFITS ===== */
.erp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.erp-benefit-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.erp-benefit-card:hover {
    border-color: var(--border-glass-strong);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 174, 239, 0.1);
    background: var(--bg-glass-hover);
}

.erp-benefit-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
    width: 72px;
    height: 72px;
    line-height: 72px;
    background: rgba(0, 174, 239, 0.06);
    border-radius: 50%;
}

.erp-benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.erp-benefit-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PRICING ===== */
/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.toggle-label.active {
    color: var(--text-primary);
}

.discount-badge {
    background: rgba(167, 139, 250, 0.15);
    color: var(--accent-purple);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.erp-toggle {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
}

.erp-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.erp-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass-strong);
    transition: .4s;
    border-radius: 34px;
}

.erp-toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: var(--accent);
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

input:checked + .erp-toggle-slider {
    background-color: rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.3);
}

input:checked + .erp-toggle-slider:before {
    transform: translateX(32px);
    background-color: var(--accent-purple);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    border-color: var(--border-glass-strong);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular-tier {
    border-color: rgba(0, 174, 239, 0.35);
    background: linear-gradient(180deg, rgba(0, 174, 239, 0.07), var(--bg-glass) 60%);
    box-shadow: 0 16px 50px rgba(0, 174, 239, 0.12);
}

.pricing-card.popular-tier:hover {
    box-shadow: 0 20px 60px rgba(0, 174, 239, 0.18);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 100px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tier-name {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.tier-price {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 28px;
    min-height: 42px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.tier-features li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-color);
}

.tier-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
}

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

/* ===== PRICING EXTRA ===== */
.erp-price-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.erp-pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 16px 24px;
    background: rgba(0, 174, 239, 0.05);
    border: 1px solid rgba(0, 174, 239, 0.15);
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

/* ===== HOW IT WORKS / PROCESS ===== */
.process-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass-strong) 20%, var(--border-glass-strong) 80%, transparent);
    z-index: 0;
}

.process-steps {
    display: grid;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    line-height: 56px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass-strong);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
}

.step-title {
    font-size: 19px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.step-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== CONTACT SECTION ===== */
.erp-contact-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.erp-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.erp-contact-form-wrapper {
    padding: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.erp-contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 22px;
}

.erp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.erp-contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.erp-form-row .form-group {
    margin-bottom: 0;
}

.erp-contact-form-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.erp-contact-form-wrapper input,
.erp-contact-form-wrapper select,
.erp-contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.erp-contact-form-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2399a1b3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

[data-theme="light"] .erp-contact-form-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2351607a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.erp-contact-form-wrapper input:focus,
.erp-contact-form-wrapper select:focus,
.erp-contact-form-wrapper textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.erp-contact-form-wrapper input::placeholder,
.erp-contact-form-wrapper textarea::placeholder {
    color: var(--text-placeholder);
}

.erp-contact-form-wrapper textarea {
    resize: vertical;
    min-height: 80px;
}

/* Info Card */
.erp-contact-info-card {
    padding: 40px;
    text-align: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.erp-contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
}

/* ==========================================================================
   RESPONSIVE — QuadERP
   ========================================================================== */

@media (max-width: 1024px) {
    .erp-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .erp-hero-content {
        max-width: 100%;
    }

    .erp-hero-ctas,
    .erp-hero-trust {
        justify-content: center;
    }

    .erp-mockup-wrapper {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .erp-mockup-wrapper:hover {
        transform: scale(1.02);
    }

    .erp-showcase-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .erp-showcase-reverse {
        direction: ltr;
    }

    .erp-showcase-content {
        text-align: center;
    }

    .erp-feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 48px;
    }

    .timeline-line {
        display: none;
    }

    .stats-container {
        flex-direction: column;
        gap: 32px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 0;
    }

    .erp-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .erp-hero-title {
        font-size: 32px;
    }

    .erp-hero-subtitle {
        font-size: 16px;
    }

    .erp-hero-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .erp-hero-scroll-indicator {
        display: none;
    }

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

    .erp-showcase-row {
        margin-bottom: 60px;
    }

    .erp-btn-lg {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }

    .erp-hero-ctas {
        flex-direction: column;
    }

    .erp-form-row {
        grid-template-columns: 1fr;
    }

    .erp-contact-form-wrapper {
        padding: 24px;
    }

    .erp-stat-text {
        font-size: 32px;
    }
}

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

    .erp-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .erp-contact-form-wrapper {
        padding: 24px 20px;
    }

    .erp-contact-info-card {
        padding: 24px 20px;
    }

    .erp-showcase-label {
        font-size: 11px;
    }

    .erp-showcase-content h3 {
        font-size: 1.3rem;
    }

    .erp-showcase-content p {
        font-size: 14px;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 24px 0;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .stat-divider {
        display: none;
    }
}

/* ===== LIGHT MODE OVERRIDES ===== */

[data-theme="light"] .hero-noise {
    background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.15) 1px, transparent 0);
}

[data-theme="light"] .erp-glow-orb { opacity: 0.12; }
[data-theme="light"] .orb-3 { opacity: 0.08; }

[data-theme="light"] .erp-hero-gradient {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 144, 199, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 85, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 144, 199, 0.025) 0%, transparent 50%);
}

[data-theme="light"] .erp-mockup-wrapper {
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(15, 23, 42, 0.07),
        0 0 40px rgba(0, 144, 199, 0.06);
}

[data-theme="light"] .erp-mockup-glow {
    background: radial-gradient(ellipse, rgba(0, 144, 199, 0.07) 0%, transparent 70%);
}

[data-theme="light"] .glow-card:hover {
    box-shadow: 0 0 30px rgba(0, 144, 199, 0.07);
}

[data-theme="light"] .erp-features-grid .service-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 0 20px rgba(0, 144, 199, 0.07);
}

[data-theme="light"] .erp-showcase-img-wrapper {
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .erp-showcase-img-wrapper:hover {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14), 0 0 40px rgba(0, 144, 199, 0.07);
}

[data-theme="light"] .erp-benefit-icon {
    background: rgba(0, 144, 199, 0.08);
}

[data-theme="light"] .erp-benefit-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 0 20px rgba(0, 144, 199, 0.07);
}

[data-theme="light"] .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .pricing-card.popular-tier {
    border-color: rgba(0, 144, 199, 0.28);
    background: linear-gradient(180deg, rgba(0, 144, 199, 0.05), var(--bg-glass) 60%);
    box-shadow: 0 16px 50px rgba(0, 144, 199, 0.08);
}

[data-theme="light"] .pricing-card.popular-tier:hover {
    box-shadow: 0 20px 60px rgba(0, 144, 199, 0.12);
}

[data-theme="light"] .erp-pricing-note {
    background: rgba(0, 144, 199, 0.04);
    border-color: rgba(0, 144, 199, 0.12);
}

[data-theme="light"] input:checked + .erp-toggle-slider {
    background-color: rgba(0, 144, 199, 0.1);
    border-color: rgba(0, 144, 199, 0.3);
}

[data-theme="light"] .erp-contact-form-wrapper,
[data-theme="light"] .erp-contact-info-card {
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .erp-contact-form-wrapper input:focus,
[data-theme="light"] .erp-contact-form-wrapper select:focus,
[data-theme="light"] .erp-contact-form-wrapper textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 144, 199, 0.15);
}

