/* ===================== WOCOM ENTERPRISE SHARED STYLES =====================
   Light theme aligned with /pricing/index.php — same tokens as wocomja.com.
   =========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --purple: #7B2FF2;
    --purple-dark: #5A1FBD;
    --purple-light: #A78BFA;
    --purple-50: #F3EDFF;
    --purple-100: #EDE5FF;
    --purple-200: #E8DFFC;

    --deep-blue: #1a1a2e;
    --text: #1F2937;
    --text-secondary: #374151;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --border: #E5E7EB;
    --white: #FFFFFF;

    --green: #22C55E;
    --green-bg: #D1FAE5;
    --green-fg: #166534;
    --blue: #3B82F6;
    --amber: #F59E0B;
    --red: #EF4444;
    --red-bg: #FEE2E2;
    --red-fg: #991B1B;

    --radius: 16px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(17,24,39,.04),0 1px 3px rgba(17,24,39,.06);
    --shadow-md: 0 4px 12px rgba(17,24,39,.05),0 2px 6px rgba(17,24,39,.04);
    --shadow-lg: 0 20px 40px rgba(123,47,242,.12),0 8px 16px rgba(17,24,39,.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-light { background: var(--gray-50); }
.section-purple { background: linear-gradient(180deg, var(--purple-50), var(--purple-100)); }
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-muted { color: var(--gray-500); }

h1 { font-size: clamp(32px,5vw,48px); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: var(--text); }
h1 em { font-style: normal; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: clamp(26px,3.5vw,36px); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; color: var(--text); }
h3 { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.2px; }
h4 { font-size: 15px; font-weight: 700; color: var(--text); }
.subtitle { font-size: 17px; color: var(--gray-500); line-height: 1.6; max-width: 640px; margin: 14px auto 0; }

.badge {
    display: inline-block;
    background: var(--purple-50);
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(123,47,242,.3); }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-white { background: #fff; color: var(--purple); border-color: #fff; }
.btn-white:hover { background: var(--gray-100); }
.btn-dark { background: var(--deep-blue); color: #fff; border-color: var(--deep-blue); }
.btn-dark:hover { background: #0f0f1a; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 12px; }

/* Page Header (inner pages) */
.page-header {
    background: linear-gradient(180deg, var(--purple-50), var(--purple-100) 70%, var(--white));
    padding: 140px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(123,47,242,.18), transparent 70%);
    pointer-events: none;
}
.page-header h1 { color: var(--text); margin-bottom: 14px; }
.page-header p { color: var(--gray-500); font-size: 17px; max-width: 620px; margin: 0 auto; position: relative; }
.page-header .breadcrumb { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; position: relative; }
.page-header .breadcrumb a { color: var(--purple); font-weight: 600; }
.page-header .breadcrumb a:hover { color: var(--purple-dark); text-decoration: underline; }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 30px; }
.nav-logo .ent-badge { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 6px; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray-500); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login { font-size: 14px; font-weight: 600; color: var(--gray-500); padding: 8px 14px; }
.nav-login:hover { color: var(--purple); }
.nav-cta { padding: 10px 20px; font-size: 14px; border-radius: 10px; }

/* Footer */
.footer { background: var(--gray-50); color: var(--text-secondary); padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; color: var(--gray-500); }
.footer-contact-info { margin-top: 14px; font-size: 13px; line-height: 1.7; color: var(--gray-500); }
.footer-contact-info a { color: var(--purple); font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 700;
}
.footer-social a:hover { background: var(--purple); color: #fff; border-color: var(--purple); transform: translateY(-1px); }
.footer-col h4 { color: var(--text); font-size: 13px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 14px; padding: 5px 0; color: var(--gray-500); transition: color 0.2s; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--gray-500); }
.footer-bottom a { margin-left: 22px; color: var(--gray-500); }
.footer-bottom a:hover { color: var(--purple); }

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .nav-links { display: none; }
    .page-header { padding: 100px 0 48px; }
}
