/* ═══════════════════════════════════════════════════════════════════
   NEWEB THEME v3 — Professional Business Theme
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --neweb-primary: #6C5CE7;
    --neweb-primary-light: rgba(108,92,231,0.1);
    --neweb-secondary: #2D3436;
    --neweb-white: #FFFFFF;
    --neweb-light: #F8F9FA;
    --neweb-gray: #6C757D;
    --neweb-dark: #1A1A2E;
    --neweb-text: #333333;
    --neweb-text-light: #666666;
    --neweb-border: #E9ECEF;
    --neweb-radius: 12px;
    --neweb-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --neweb-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --neweb-transition: 0.3s ease;
    --neweb-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--neweb-font);
    color: var(--neweb-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--neweb-primary); text-decoration: none; transition: color var(--neweb-transition); }
a:hover { color: var(--neweb-secondary); }

/* ── Container ──────────────────────────────────────────────────── */
.neweb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────────────────── */
.neweb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neweb-border);
    padding: 0;
}

.neweb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.neweb-logo { display: flex; align-items: center; gap: 8px; }
.neweb-logo img { max-height: 40px; width: auto; }
.neweb-logo-text { font-size: 22px; font-weight: 800; color: var(--neweb-dark); }

.neweb-nav-list {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.neweb-nav-list li a {
    display: block;
    padding: 8px 16px;
    color: var(--neweb-text);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--neweb-transition);
}

.neweb-nav-list li a:hover,
.neweb-nav-list li.current-menu-item a {
    color: var(--neweb-primary);
    background: var(--neweb-primary-light);
}

/* Mobile toggle */
.neweb-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.neweb-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neweb-dark);
    border-radius: 2px;
    transition: all var(--neweb-transition);
}

/* ── Sections (shared) ──────────────────────────────────────────── */
.neweb-section {
    padding: 80px 0;
}

.neweb-section:nth-child(even) {
    background: var(--neweb-light);
}

.neweb-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--neweb-dark);
    margin-bottom: 12px;
    text-align: center;
}

.neweb-subtitle {
    font-size: 18px;
    color: var(--neweb-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.neweb-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--neweb-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.neweb-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--neweb-dark) 0%, var(--neweb-secondary) 100%);
    color: var(--neweb-white);
    text-align: center;
}

.neweb-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--neweb-white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.neweb-hero .neweb-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    margin-bottom: 36px;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.neweb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--neweb-primary);
    color: var(--neweb-white) !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--neweb-transition);
    text-decoration: none;
}

.neweb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108,92,231,0.35);
    color: var(--neweb-white) !important;
}

/* ── Grid ────────────────────────────────────────────────────────── */
.neweb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

/* ── Cards ───────────────────────────────────────────────────────── */
.neweb-card {
    background: var(--neweb-white);
    border-radius: var(--neweb-radius);
    padding: 32px;
    box-shadow: var(--neweb-shadow);
    transition: all var(--neweb-transition);
    border: 1px solid var(--neweb-border);
}

.neweb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neweb-shadow-lg);
}

.neweb-card .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: var(--neweb-primary);
    margin-bottom: 16px;
}

.neweb-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neweb-dark);
    margin-bottom: 10px;
}

.neweb-card p {
    color: var(--neweb-text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Stats ───────────────────────────────────────────────────────── */
.neweb-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.neweb-stat { text-align: center; }
.neweb-stat-num { display: block; font-size: 42px; font-weight: 800; color: var(--neweb-primary); }
.neweb-stat-label { font-size: 14px; color: var(--neweb-text-light); text-transform: uppercase; letter-spacing: 1px; }

/* ── Testimonials ────────────────────────────────────────────────── */
.neweb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.neweb-testimonial {
    background: var(--neweb-white);
    border-radius: var(--neweb-radius);
    padding: 32px;
    box-shadow: var(--neweb-shadow);
    border: 1px solid var(--neweb-border);
}

.neweb-testimonial blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neweb-text);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--neweb-primary);
}

.neweb-testimonial-author strong { display: block; color: var(--neweb-dark); font-size: 15px; }
.neweb-testimonial-author span { color: var(--neweb-text-light); font-size: 13px; }

/* ── CTA ─────────────────────────────────────────────────────────── */
.neweb-cta {
    background: linear-gradient(135deg, var(--neweb-primary) 0%, #A29BFE 100%) !important;
    color: var(--neweb-white);
    text-align: center;
}

.neweb-cta h2 { color: var(--neweb-white); }
.neweb-cta p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 28px; font-size: 18px; }
.neweb-cta .neweb-btn { background: var(--neweb-white); color: var(--neweb-primary) !important; }
.neweb-cta .neweb-btn:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ── Contact ─────────────────────────────────────────────────────── */
.neweb-contact-info {
    max-width: 500px;
    margin: 32px auto 0;
}

.neweb-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--neweb-border);
    font-size: 16px;
}

.neweb-contact-item .dashicons { color: var(--neweb-primary); }
.neweb-contact-item a { color: var(--neweb-text); }
.neweb-contact-item a:hover { color: var(--neweb-primary); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.neweb-faq-list {
    max-width: 700px;
    margin: 40px auto 0;
}

.neweb-faq-item {
    border: 1px solid var(--neweb-border);
    border-radius: var(--neweb-radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--neweb-white);
}

.neweb-faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.neweb-faq-item summary::after { content: '+'; font-size: 20px; color: var(--neweb-primary); }
.neweb-faq-item[open] summary::after { content: '−'; }

.neweb-faq-item p {
    padding: 0 24px 18px;
    color: var(--neweb-text-light);
    line-height: 1.7;
}

/* ── Pricing ─────────────────────────────────────────────────────── */
.neweb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
    align-items: start;
}

.neweb-pricing-card {
    background: var(--neweb-white);
    border-radius: var(--neweb-radius);
    padding: 36px;
    text-align: center;
    box-shadow: var(--neweb-shadow);
    border: 2px solid var(--neweb-border);
    transition: all var(--neweb-transition);
}

.neweb-pricing-card:hover { transform: translateY(-4px); }

.neweb-pricing-featured {
    border-color: var(--neweb-primary);
    position: relative;
    transform: scale(1.05);
}

.neweb-pricing-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.neweb-price { margin-bottom: 24px; }
.neweb-price-amount { font-size: 44px; font-weight: 800; color: var(--neweb-primary); }
.neweb-price-period { font-size: 15px; color: var(--neweb-text-light); }

.neweb-pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.neweb-pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--neweb-border);
    font-size: 15px;
    color: var(--neweb-text-light);
}

.neweb-pricing-card li::before { content: '✓ '; color: var(--neweb-primary); font-weight: 700; }

/* ── Team ────────────────────────────────────────────────────────── */
.neweb-team-card { text-align: center; }
.neweb-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neweb-primary), #A29BFE);
    margin: 0 auto 16px;
}
.neweb-role { color: var(--neweb-primary); font-size: 14px; font-weight: 500; display: block; margin-bottom: 8px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.neweb-footer {
    background: var(--neweb-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.neweb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.neweb-footer h4 { color: var(--neweb-white); font-size: 16px; margin-bottom: 16px; }
.neweb-footer p { font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.neweb-footer a { color: rgba(255,255,255,0.7); }
.neweb-footer a:hover { color: var(--neweb-white); }

.neweb-footer-links { list-style: none; }
.neweb-footer-links li { margin-bottom: 8px; }
.neweb-footer-links a { font-size: 14px; }

.neweb-footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .neweb-menu-toggle { display: flex; }
    .neweb-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--neweb-white);
        border-bottom: 1px solid var(--neweb-border);
        padding: 16px;
        transform: translateY(-120%);
        transition: transform var(--neweb-transition);
        box-shadow: var(--neweb-shadow-lg);
    }
    body.menu-open .neweb-nav { transform: translateY(0); }
    .neweb-nav-list { flex-direction: column; gap: 4px; }
    .neweb-nav-list li a { padding: 12px 16px; }

    .neweb-hero { padding: 80px 0 60px; }
    .neweb-hero h1 { font-size: 32px; }
    .neweb-section { padding: 60px 0; }
    .neweb-section h2 { font-size: 28px; }
    .neweb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .neweb-stats { gap: 24px; }
    .neweb-stat-num { font-size: 32px; }
    .neweb-pricing-featured { transform: none; }
}

@media (max-width: 480px) {
    .neweb-hero h1 { font-size: 28px; }
    .neweb-container { padding: 0 16px; }
    .neweb-card { padding: 24px; }
}
