/* ══════════════════════════════════════════════════════════════════════
   OVS Corp — Design System (matching mockup)
   Fonts: Plus Jakarta Sans + Space Grotesk (loaded via functions.php)
   ══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────────────── */
:root {
  --navy:    #1a2340;
  --navy2:   #232f52;
  --accent:  #e84c1e;
  --accent2: #f7a325;
  --green:   #2ecc71;
  --blue:    #2563eb;
  --gray:    #f4f5f8;
  --muted:   #6b7280;
  --white:   #fff;
  --dark:    #111827;
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(26,35,64,.10);
}

/* ── RESET / BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: #fff;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.65;
}
[dir="rtl"] body { font-family: 'Tajawal', 'Plus Jakarta Sans', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── ASTRA OVERRIDES ───────────────────────────────────────────────── */
.site-header, #masthead, .ast-primary-header-bar,
.main-header-bar, .ast-site-header-wrap { background: var(--navy) !important; border: none !important; }
.main-header-bar { height: 64px !important; min-height: 64px !important; padding: 0 2rem !important; }
.ast-site-identity .site-title a,
.ast-site-identity .site-title { color: #fff !important; font-weight: 800 !important; font-size: 1.3rem !important; }
.main-navigation a, .ast-primary-menu > li > a,
.ast-header-break-point .main-navigation ul li a,
.main-header-bar .ast-main-header-bar-alignment a { color: #cbd5e1 !important; font-size: 13.5px !important; font-weight: 500 !important; transition: color .2s !important; }
.main-navigation a:hover, .ast-primary-menu > li > a:hover { color: #fff !important; }
/* CTA nav item */
.menu-item-contact > a, .menu-item.nav-cta > a,
li.menu-item:last-child > a {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}
li.menu-item:last-child > a:hover { background: #c93e12 !important; }
/* Hide Astra page title on inner pages */
.ast-page-builder-template .entry-header, .ast-plain-container .entry-header { display: none; }
.entry-content { padding: 0 !important; }
.ast-article-post, .site-content .ast-container { padding: 0 !important; max-width: 100% !important; }
.ast-separate-container .ast-article-inner-content,
.ast-plain-container .ast-article-inner-content { padding: 0 !important; }
.comment-content, .ast-comment-list { display: none; }
/* Footer */
#colophon, .site-footer { background: var(--navy) !important; }

/* ── LANGUAGE SWITCHER ─────────────────────────────────────────────── */
.ovs-lang-bar {
  background: rgba(0,0,0,.25);
  padding: 4px 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 12px;
}
.ovs-lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ovs-lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #94a3b8;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}
.ovs-lang-btn:hover, .ovs-lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.ovs-currency-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ovs-curr-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: #94a3b8;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}
.ovs-curr-btn:hover, .ovs-curr-btn.active {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
}
.ovs-lang-bar-sep { color: rgba(255,255,255,.2); }

/* ── CONTAINER ─────────────────────────────────────────────────────── */
.ovs-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.ovs-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: .2s;
  font-family: inherit;
  text-align: center;
}
.ovs-btn--primary { background: var(--accent); color: #fff; }
.ovs-btn--primary:hover { background: #c93e12; color: #fff; }
.ovs-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.ovs-btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.ovs-btn--navy { background: var(--navy); color: #fff; }
.ovs-btn--navy:hover { background: var(--navy2); color: #fff; }
.ovs-btn--outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.ovs-btn--outline-dark:hover { background: var(--navy); color: #fff; }
.ovs-btn--lg { padding: 15px 36px; font-size: 15px; }
.ovs-btn--sm { padding: 8px 18px; font-size: 13px; }
.ovs-btn--full { display: block; width: 100%; }

/* ── BADGES ────────────────────────────────────────────────────────── */
.ovs-badge {
  display: inline-block;
  background: #fee2e2;
  color: #991b1b;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.ovs-badge--blue { background: #dbeafe; color: #1e40af; }
.ovs-badge--green { background: #dcfce7; color: #166534; }
.ovs-badge--orange { background: #fff7ed; color: #9a3412; }
.ovs-badge-save {
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

/* ── SECTION HEADER ────────────────────────────────────────────────── */
.ovs-section__header { text-align: center; margin-bottom: 48px; }
.ovs-section__header h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; letter-spacing: -.5px; }
.ovs-section__header p { color: var(--muted); margin-top: 10px; font-size: 15px; }
.ovs-section__header--light h2 { color: #fff; }
.ovs-section__header--light p { color: #94a3b8; }

/* ── SECTIONS ──────────────────────────────────────────────────────── */
.ovs-section { padding: 72px 1.5rem; }
.ovs-section--gray { background: var(--gray); }
.ovs-section--dark { background: var(--navy); }
.ovs-section--white { background: #fff; }

/* ── HERO ──────────────────────────────────────────────────────────── */
.ovs-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d3f6b 60%, #1a2340 100%);
  padding: 90px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.ovs-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,76,30,.15) 0%, transparent 70%);
}
.ovs-hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ovs-hero__badge {
  display: inline-block;
  background: #fee2e2;
  color: #991b1b;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.ovs-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}
.ovs-accent { color: var(--accent2); }
.ovs-hero__sub {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.ovs-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.ovs-hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ovs-hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.ovs-hero-card .icon { font-size: 28px; margin-bottom: 8px; }
.ovs-hero-card .label { color: #94a3b8; font-size: 12px; }
.ovs-hero-card .val { color: #fff; font-size: 20px; font-weight: 700; }

/* ── PAGE HERO (inner pages) ───────────────────────────────────────── */
.ovs-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d3f6b 100%);
  padding: 60px 2rem 50px;
  text-align: center;
}
.ovs-page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.ovs-page-hero p { color: #94a3b8; font-size: 16px; max-width: 600px; margin: 0 auto; }
.ovs-page-hero .ovs-badge { margin-bottom: 16px; }

/* ── STATS BAR ─────────────────────────────────────────────────────── */
.ovs-stats-bar { background: var(--navy2); padding: 32px 1.5rem; }
.ovs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.ovs-stat__number { display: block; font-size: 2rem; font-weight: 800; color: var(--accent2); }
.ovs-stat__label  { display: block; font-size: 13px; color: #94a3b8; margin-top: 4px; }

/* ── SERVICE CARDS (homepage) ──────────────────────────────────────── */
.ovs-services { background: var(--gray); }
.ovs-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.ovs-service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid #e5e7eb;
  transition: .2s;
}
.ovs-service-card:hover { border-color: #cbd5e1; transform: translateY(-2px); box-shadow: var(--shadow); }
.ovs-service-card__icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: #fff7ed;
}
.ovs-service-card:nth-child(2) .ovs-service-card__icon { background: #eff6ff; }
.ovs-service-card:nth-child(3) .ovs-service-card__icon { background: #f0fdf4; }
.ovs-service-card:nth-child(4) .ovs-service-card__icon { background: #f5f3ff; }
.ovs-service-card:nth-child(5) .ovs-service-card__icon { background: #fff7ed; }
.ovs-service-card:nth-child(6) .ovs-service-card__icon { background: #fef9c3; }
.ovs-service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ovs-service-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.ovs-link { color: var(--accent); font-weight: 600; font-size: 13px; display: inline-block; margin-top: 12px; transition: .2s; }
.ovs-link:hover { color: #c93e12; }

/* ── WHY US GRID ───────────────────────────────────────────────────── */
.ovs-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ovs-why-item { text-align: center; }
.ovs-why-item__icon { font-size: 36px; margin-bottom: 12px; display: block; }
.ovs-why-item h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ovs-why-item p { color: #94a3b8; font-size: 13.5px; line-height: 1.6; }

/* ── CTA BAND ──────────────────────────────────────────────────────── */
.ovs-cta-band { padding: 72px 2rem; text-align: center; background: var(--navy); }
.ovs-cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.ovs-cta-band p { color: #94a3b8; max-width: 500px; margin: 0 auto 28px; }

/* ── MODULES GRID (Odoo page) ──────────────────────────────────────── */
.ovs-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.ovs-module-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: .2s;
}
.ovs-module-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.ovs-module-card__icon { font-size: 28px; margin-bottom: 8px; display: block; }
.ovs-module-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.ovs-module-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── STEPS ─────────────────────────────────────────────────────────── */
.ovs-steps { max-width: 820px; margin: 0 auto; }
.ovs-step {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.ovs-step__num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.ovs-step__content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.ovs-step__content p { color: var(--muted); font-size: 13.5px; }
.ovs-step__duration {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ── PRICING ───────────────────────────────────────────────────────── */
.ovs-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ovs-pricing-toggle__label { font-weight: 600; font-size: 14px; color: var(--muted); }
.ovs-pricing-toggle__label.active { color: var(--dark); }
.ovs-toggle-switch {
  position: relative;
  width: 52px; height: 28px;
  background: #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
  transition: .3s;
  border: none;
}
.ovs-toggle-switch.on { background: var(--navy); }
.ovs-toggle-switch__knob {
  position: absolute;
  top: 4px; left: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.ovs-toggle-switch.on .ovs-toggle-switch__knob { left: 28px; }
.ovs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.ovs-pricing-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: .2s;
}
.ovs-pricing-card:hover { box-shadow: var(--shadow); }
.ovs-pricing-card--featured { border-color: var(--navy); border-width: 2px; }
.ovs-pricing-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.ovs-pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.ovs-pricing-card__subtitle { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.ovs-pricing-card__price {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 12px 0 4px;
  color: var(--dark);
}
.ovs-pricing-card__price small { font-size: 1rem; font-weight: 400; color: var(--muted); }
.ovs-pricing-card__annual-note { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.ovs-pricing-card__note { font-size: 12px; color: var(--muted); margin: 12px 0; font-style: italic; }
/* Currency display */
.curr-tnd, .curr-eur, .curr-usd { display: none; }
.show-tnd .curr-tnd,
.show-eur .curr-eur,
.show-usd .curr-usd { display: inline; }
.price-period { color: var(--muted); font-size: 1rem; font-weight: 400; }

/* ── CHECKLIST ─────────────────────────────────────────────────────── */
.ovs-checklist { list-style: none; margin: 16px 0 20px; }
.ovs-checklist li {
  font-size: 13px;
  color: #374151;
  padding: 5px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ovs-checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ovs-checklist--red li { color: var(--muted); }
.ovs-checklist--red li::before { content: '✗'; color: #ef4444; }

/* ── TWO COL ───────────────────────────────────────────────────────── */
.ovs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.ovs-two-col h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.ovs-two-col p { color: var(--muted); margin-bottom: 12px; font-size: 14.5px; }

/* ── SERVICE DETAIL (services page) ───────────────────────────────── */
.ovs-service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e5e7eb;
}
.ovs-service-detail:last-child { border-bottom: none; }
.ovs-service-detail__icon {
  font-size: 48px;
  width: 80px; height: 80px;
  border-radius: var(--radius);
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ovs-service-detail h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.ovs-service-detail p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.ovs-service-detail--reverse { direction: rtl; }
.ovs-service-detail--reverse > * { direction: ltr; }

/* ── FAQ ACCORDION ─────────────────────────────────────────────────── */
.ovs-faq-accordion { max-width: 760px; margin: 0 auto; }
.ovs-faq-item { border-bottom: 1px solid #e5e7eb; }
.ovs-faq-item__q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  font-family: inherit;
  gap: 16px;
}
.ovs-faq-item__q .arrow {
  font-size: 18px;
  color: var(--muted);
  transition: .3s;
  flex-shrink: 0;
}
.ovs-faq-item__q.open .arrow { transform: rotate(180deg); color: var(--accent); }
.ovs-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.ovs-faq-item__a.open { max-height: 600px; padding-bottom: 16px; }
.ovs-faq-item__a p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.ovs-faq-item__a a { color: var(--accent); }

/* ── CGV TABS ──────────────────────────────────────────────────────── */
.ovs-cgv-tabs__nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0;
}
.ovs-cgv-tab {
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  border: 1.5px solid transparent;
  border-bottom: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: .2s;
  font-family: inherit;
  margin-bottom: -2px;
}
.ovs-cgv-tab:hover { color: var(--navy); background: #f4f5f8; }
.ovs-cgv-tab--active {
  background: #fff;
  color: var(--accent);
  border-color: #e5e7eb;
  border-bottom: 2px solid #fff;
}
.ovs-cgv-panel { display: none; }
.ovs-cgv-panel--active { display: block; }
.ovs-cgv-panel h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.ovs-cgv-date { color: var(--muted); font-size: 13px; margin-bottom: 28px; font-style: italic; }
.ovs-cgv-panel h3 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin: 24px 0 8px; padding-bottom: 6px; border-bottom: 2px solid #e5e7eb; }
.ovs-cgv-panel p { font-size: 13.5px; color: #374151; line-height: 1.75; margin-bottom: 10px; }
.ovs-cgv-panel ul { padding-left: 20px; margin: 6px 0 10px; }
.ovs-cgv-panel ul li { font-size: 13.5px; color: #374151; line-height: 1.7; margin-bottom: 4px; }
.ovs-cgv-panel a { color: var(--accent); }

/* ── TABLE ─────────────────────────────────────────────────────────── */
.ovs-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.ovs-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.ovs-table td { padding: 12px 16px; border-bottom: 1px solid #e5e7eb; font-size: 13px; }
.ovs-table tr:last-child td { border-bottom: none; }
.ovs-table tr:nth-child(even) td { background: #f9fafb; }
.ovs-note { font-size: 12px; color: var(--muted); font-style: italic; margin-top: 8px; }

/* Priority badges */
.ovs-badge-p {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.ovs-badge-p--1 { background: #fee2e2; color: #991b1b; }
.ovs-badge-p--2 { background: #fef9c3; color: #854d0e; }
.ovs-badge-p--3 { background: #dbeafe; color: #1e40af; }

/* ── VALUES ────────────────────────────────────────────────────────── */
.ovs-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ovs-value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.ovs-value-card__icon { font-size: 36px; margin-bottom: 12px; display: block; }
.ovs-value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ovs-value-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.ovs-values-big { max-width: 900px; margin: 0 auto; }
.ovs-value-big {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}
.ovs-value-big:last-child { border-bottom: none; }
.ovs-value-big__icon { font-size: 40px; flex-shrink: 0; }
.ovs-value-big__content h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.ovs-value-big__content p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── FEATURES GRID ─────────────────────────────────────────────────── */
.ovs-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.ovs-feature-item { text-align: center; }
.ovs-feature-item__icon { font-size: 32px; margin-bottom: 10px; display: block; }
.ovs-feature-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.ovs-feature-item p { color: var(--muted); font-size: 13px; }

/* ── JOBS (Career page) ────────────────────────────────────────────── */
.ovs-jobs { max-width: 900px; margin: 0 auto; }
.ovs-job-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  transition: .2s;
}
.ovs-job-card:hover { border-color: var(--navy); }
.ovs-job-card__header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.ovs-job-card h3 { font-size: 1.05rem; font-weight: 700; }
.ovs-job-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.ovs-job-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ovs-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.ovs-jobs-spontaneous {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-top: 32px;
}
.ovs-jobs-spontaneous h3 { margin-bottom: 10px; font-size: 1.1rem; }
.ovs-jobs-spontaneous p { color: var(--muted); margin-bottom: 20px; font-size: 14px; }

/* ── CONTACT ───────────────────────────────────────────────────────── */
.ovs-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.ovs-contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.ovs-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.ovs-contact-item__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ovs-contact-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 2px; }
.ovs-contact-item a { color: var(--accent); }
.ovs-contact-social { margin-top: 28px; }
.ovs-contact-social h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.ovs-social-links { display: flex; gap: 10px; }
.ovs-social-link {
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: .2s;
}
.ovs-social-link:hover { background: var(--accent); color: #fff; }
.ovs-contact-form h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.ovs-contact-form__fallback { background: var(--gray); border-radius: var(--radius); padding: 20px; text-align: center; }

/* ── STATS VERTICAL (About page) ───────────────────────────────────── */
.ovs-stats-vertical { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ovs-stat-v {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.ovs-stat-v__num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); }
.ovs-stat-v__label { font-size: 13px; color: var(--muted); }

/* ── QUOTE ─────────────────────────────────────────────────────────── */
.ovs-quote {
  background: var(--gray);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  max-width: 760px;
  margin: 0 auto;
}
.ovs-quote p { font-size: 16px; color: var(--navy); font-style: italic; line-height: 1.7; }

/* ── LIST TITLES ───────────────────────────────────────────────────── */
.ovs-list-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.ovs-list-title--green { color: #166534; }
.ovs-list-title--red { color: #991b1b; }

/* ── HIGHLIGHT BOX ─────────────────────────────────────────────────── */
.ovs-highlight-box {
  background: #eff6ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 13.5px;
  color: #1e40af;
}

/* ── WP OVERRIDE: Hide title on pages using HTML blocks ────────────── */
.page .entry-header, .single .entry-header { display: none !important; }
.wp-block-html { margin: 0 !important; padding: 0 !important; }

/* ── FOOTER (Astra override for custom footer layout) ──────────────── */
.ovs-footer-custom {
  background: var(--navy);
  color: #94a3b8;
  padding: 48px 2rem 28px;
}
.ovs-footer-grid {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.ovs-footer-brand p { font-size: 13px; margin-top: 10px; line-height: 1.7; }
.ovs-footer-col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ovs-footer-col ul { list-style: none; }
.ovs-footer-col ul li { margin-bottom: 8px; font-size: 13px; }
.ovs-footer-col ul li a { color: #94a3b8; transition: .2s; }
.ovs-footer-col ul li a:hover { color: #fff; }
.ovs-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── TRUST BAND (G2 / Capterra) ────────────────────────────────────── */
.ovs-trust-band {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 1.5rem;
}
.ovs-trust-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.ovs-trust-band__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  white-space: nowrap;
}
.ovs-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 16px;
}
.ovs-trust-item__score {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.ovs-trust-item__source {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── ASTRA DROPDOWN NAV ─────────────────────────────────────────────── */
.main-navigation .sub-menu {
  background: var(--navy) !important;
  border-top: 2px solid var(--accent) !important;
  border-radius: 0 0 10px 10px !important;
  min-width: 230px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.28) !important;
  padding: 6px 0 !important;
}
.main-navigation .sub-menu a {
  color: #cbd5e1 !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  display: block !important;
}
.main-navigation .sub-menu li:last-child a { border-bottom: none !important; }
.main-navigation .sub-menu a:hover {
  color: #fff !important;
  background: rgba(255,255,255,.07) !important;
  padding-left: 26px !important;
  transition: all .15s !important;
}
.main-navigation .menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: .7;
}

/* ── ARABIC RTL ────────────────────────────────────────────────────── */
[dir="rtl"] .ovs-hero-grid { direction: rtl; }
[dir="rtl"] .ovs-step { flex-direction: row-reverse; }
[dir="rtl"] .ovs-service-detail { direction: rtl; }
[dir="rtl"] .ovs-service-detail--reverse { direction: ltr; }
[dir="rtl"] .ovs-contact-item { flex-direction: row-reverse; }
[dir="rtl"] .ovs-faq-item__q { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .ovs-cgv-tabs__nav { flex-direction: row-reverse; }
[dir="rtl"] .ovs-checklist li { flex-direction: row-reverse; }
[dir="rtl"] .ovs-footer-grid { direction: rtl; }
[dir="rtl"] .ovs-footer-bottom { flex-direction: row-reverse; }

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ovs-hero-grid { grid-template-columns: 1fr; }
  .ovs-hero-visual { display: none; }
  .ovs-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ovs-two-col { grid-template-columns: 1fr; gap: 28px; }
  .ovs-contact-layout { grid-template-columns: 1fr; }
  .ovs-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ovs-section { padding: 48px 1rem; }
  .ovs-hero { padding: 60px 1rem 50px; }
  .ovs-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ovs-pricing-grid { grid-template-columns: 1fr; }
  .ovs-footer-grid { grid-template-columns: 1fr; }
  .ovs-step { flex-direction: column; gap: 16px; }
  .ovs-service-detail { grid-template-columns: 1fr; }
  .ovs-cgv-tabs__nav { flex-direction: column; border-bottom: none; }
  .ovs-cgv-tab { border-radius: 8px; border: 1.5px solid #e5e7eb; margin-bottom: 0; }
  .main-header-bar { padding: 0 1rem !important; }
}

/* Plan feature list — special item types */
.ovs-checklist li.ovs-feature-incl {
  font-weight: 700; color: var(--navy);
  padding-top: 12px; border-bottom: 1px solid #e5e7eb;
}
.ovs-checklist li.ovs-feature-incl::before { content: ""; width: 0; margin: 0; display: none; }
.ovs-checklist li.ovs-feature-opt::before { content: "○"; color: #9ca3af; }
.ovs-checklist li.ovs-feature-opt { color: var(--muted); font-style: italic; }
/* Pricing card flex so CTA always at bottom */
.ovs-pricing-card { display: flex; flex-direction: column; }
.ovs-pricing-card .ovs-checklist { flex: 1; margin-bottom: 0; }
