/* ============================================================
   ZUELPAY — GLOBAL FONT OVERRIDE
   New Font System:
   Display / Headings : "Plus Jakarta Sans" (sharp, modern, fintech)
   Body / UI          : "Outfit" (clean, readable, contemporary)
   Mono / Code        : "JetBrains Mono" (crisp developer aesthetic)
   ============================================================ */

/* ── Font imports ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Root variables ── */
:root{
  --font-display : 'Plus Jakarta Sans', sans-serif;
  --font-body    : 'Outfit', sans-serif;
  --font-mono    : 'JetBrains Mono', monospace;
}

/* ── Global base ── */
html,
body,
*{
  font-family: var(--font-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── Headings → display font ── */
h1, h2, h3, h4, h5, h6,
.title_text,
.page_title,
.item_title,
.widget_title,
.sec_title,
.section_title,
.blog_title,
.list_title,
.service_title,
.feature_title,
.card-title,
.brand_text {
  font-family: var(--font-display) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ── Nav / menu links ── */
.main_menu ul li a,
.mobile_menu a,
.footer_menu ul li a,
.useful_links ul li a,
nav a,
.menu_list a {
  font-family: var(--font-body) !important;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ── Logo text ── */
.brand_logo,
.brand_link,
.logo-text {
  font-family: var(--font-display) !important;
  font-weight: 800;
}

/* ── Buttons ── */
.btn,
button,
input[type="submit"],
input[type="button"],
.btn_border,
.btn_text {
  font-family: var(--font-body) !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Body copy ── */
p, li, span, a, label, input, textarea, select, td, th {
  font-family: var(--font-body) !important;
}

/* ── Code / pre ── */
code, pre, kbd, samp,
.code_block,
.api_code {
  font-family: var(--font-mono) !important;
  font-size: 0.9em;
}

/* ── Serial numbers (process section) ── */
.serial_number {
  font-family: var(--font-display) !important;
  font-weight: 800;
}

/* ── Breadcrumb page title ── */
.breadcrumb_content h1.page_title {
  font-family: var(--font-display) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── Typography scale refinements ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem) !important; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem) !important; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important; }
h4 { font-size: 1.15rem !important; }
h5 { font-size: 1rem !important; }
p  { line-height: 1.7; letter-spacing: 0.01em; }

/* ── Make headings noticeably sharper ── */
h1, h2 { letter-spacing: -0.03em !important; }
h3      { letter-spacing: -0.02em !important; }

/* ── Mega menu items ── */
.mega_menu .menu_list a {
  font-family: var(--font-body) !important;
  font-size: 13.5px;
  font-weight: 500;
}

/* ── Footer widget headings ── */
.footer_section .widget_title {
  font-family: var(--font-display) !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Contact info ── */
.contact_info .list_title {
  font-family: var(--font-display) !important;
  font-weight: 700;
}

/* ── Feature box titles ── */
.feature_boxed .item_title {
  font-family: var(--font-display) !important;
  font-weight: 700;
}

/* ── Smoother form inputs ── */
input, textarea, select {
  font-size: 15px !important;
  font-weight: 400 !important;
}

/* ── Copyright text ── */
.copyright_text p {
  font-family: var(--font-body) !important;
  font-weight: 400;
  font-size: 13.5px;
}
