/*
Theme Name: Optimize Vibe Redesign
Theme URI: https://optimizevibe.com
Author: Optimize Vibe LLC
Author URI: https://optimizevibe.com
Description: Modern, SEO-friendly redesign layer for Optimize Vibe SEO. Child of Varia (sibling to Stratford); loads Stratford's stylesheet as a base and applies a modern, tech-forward design system on top. All site copy is preserved verbatim.
Template: varia
Version: 1.3.7
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: stratford-child
*/

/* =========================================================
   Design tokens (brand palette from Stratford presets)
   ========================================================= */
:root {
  --ov-primary: #2c313f;
  --ov-secondary: #4f46e5;
  --ov-foreground: #74767e;
  --ov-bg: #ffffff;
  --ov-tertiary: #dddddd;

  --ov-ink: #181b24;
  --ov-ink-2: #20242f;
  --ov-blue-bright: #7c6cf5;
  --ov-blue-soft: #ecebfe;
  --ov-cyan: #8b5cf6;
  --ov-line: rgba(124, 126, 132, 0.18);
  --ov-line-strong: rgba(44, 49, 63, 0.12);

  --ov-radius: 18px;
  --ov-radius-lg: 28px;
  --ov-shadow-sm: 0 2px 10px rgba(24, 27, 36, 0.06);
  --ov-shadow: 0 18px 50px rgba(24, 27, 36, 0.12);
  --ov-shadow-blue: 0 18px 45px rgba(79, 70, 229, 0.32);

  --ov-max: 1180px;
  --ov-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ov-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================================================
   Global typography (overrides Stratford's Poppins/Lato)
   ========================================================= */
body,
button,
input,
select,
optgroup,
textarea,
.entry-content,
p {
  font-family: var(--ov-font) !important;
  color: var(--ov-primary);
}

body { background: var(--ov-bg); -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.wp-block-heading {
  font-family: var(--ov-display) !important;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

a { color: var(--ov-secondary); }

.ovr-wrap { max-width: var(--ov-max); margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

/* Keep the platform skip-link accessible but hidden */
.skip-link.screen-reader-text {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link.screen-reader-text:focus {
  left: 16px; top: 12px; width: auto; height: auto; padding: 10px 16px; z-index: 100;
  background: #fff; border-radius: 8px; box-shadow: var(--ov-shadow);
}

/* =========================================================
   Header / navigation chrome
   ========================================================= */
.ovr-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ov-line);
}
.ovr-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
  max-width: var(--ov-max); margin: 0 auto; padding: 8px 24px;
}
.ovr-brand { display: flex; align-items: center; }
.ovr-brand .custom-logo-link { display: block; line-height: 0; }
.ovr-brand .custom-logo { max-height: 52px; width: auto; height: auto; }
.ovr-brand__text { font-family: var(--ov-display); font-weight: 700; font-size: 19px; color: var(--ov-primary); text-decoration: none; }

.ovr-nav__menu { display: flex; align-items: center; gap: 26px; }
.ovr-menu {
  display: flex; align-items: center; gap: 26px;
  list-style: none; margin: 0; padding: 0;
}
.ovr-menu li { margin: 0; position: relative; }
.ovr-menu a {
  font-family: var(--ov-font); font-size: 14.5px; font-weight: 500;
  color: var(--ov-primary); text-decoration: none; opacity: 0.85;
  transition: opacity 0.2s, color 0.2s; white-space: nowrap;
}
.ovr-menu a:hover { opacity: 1; color: var(--ov-secondary); }
.ovr-menu .current-menu-item > a,
.ovr-menu .current_page_item > a { color: var(--ov-secondary); opacity: 1; }

/* Dropdown submenus */
.ovr-menu .sub-menu {
  position: absolute; top: 140%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--ov-line); border-radius: 14px;
  box-shadow: var(--ov-shadow); padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 60;
}
.ovr-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ovr-menu .sub-menu li { display: block; }
.ovr-menu .sub-menu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14px; opacity: 0.9; }
.ovr-menu .sub-menu a:hover { background: var(--ov-blue-soft); }

.ovr-nav__cta { font-size: 14px; padding: 11px 20px; }
.ovr-nav__toggle { display: none; }

/* =========================================================
   Buttons (modernize core button + theme buttons)
   ========================================================= */
.ovr-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ov-display); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer; text-decoration: none;
  border: 1px solid transparent; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ovr-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ov-secondary), var(--ov-blue-bright));
  box-shadow: var(--ov-shadow-blue);
}
.ovr-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 55px rgba(79, 70, 229, 0.42); color: #fff; }
.ovr-btn--light { color: var(--ov-secondary); background: #fff; border-color: var(--ov-line); }
.ovr-btn--light:hover { transform: translateY(-3px); box-shadow: var(--ov-shadow); }

/* Core button blocks → pill + lift */
.wp-block-button__link,
.wp-block-button .wp-block-button__link {
  border-radius: 999px !important;
  font-family: var(--ov-display);
  font-weight: 600;
  padding: 14px 28px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.wp-block-button__link:hover { transform: translateY(-3px); box-shadow: var(--ov-shadow-blue); filter: saturate(1.05); }

/* =========================================================
   Content area scaffolding + full-width support
   ========================================================= */
.ovr-site-content { overflow-x: clip; }
.ovr-site-main { padding-bottom: 10px; }

.ovr-article-wrap .entry-content,
.ovr-front-article .entry-content {
  max-width: var(--ov-max);
  margin: 0 auto;
  padding: 0 24px;
}
.ovr-article-wrap .entry-content .alignfull,
.ovr-front-article .entry-content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}
.ovr-article-wrap .entry-content .alignwide,
.ovr-front-article .entry-content .alignwide {
  margin-left: calc(50% - 47vw);
  margin-right: calc(50% - 47vw);
  max-width: 94vw;
  width: auto;
}

/* Inner padding for full-width colored groups */
.entry-content .wp-block-group.alignfull > .wp-block-group__inner-container,
.entry-content .wp-block-group.alignfull {
  --gutter: max(24px, calc(50vw - var(--ov-max) / 2));
}
.entry-content .wp-block-group.alignfull {
  padding-left: max(24px, calc(50vw - 590px));
  padding-right: max(24px, calc(50vw - 590px));
}

/* =========================================================
   Page hero (service + general pages)
   ========================================================= */
.ovr-page-hero,
.ovr-post-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(820px 460px at 80% -20%, rgba(124, 108, 245, 0.5), transparent 60%),
    radial-gradient(640px 420px at 5% 120%, rgba(139, 92, 246, 0.28), transparent 55%),
    linear-gradient(160deg, var(--ov-ink), var(--ov-ink-2) 62%, #161a26);
  padding: 72px 0 64px;
  margin-bottom: 56px;
}
.ovr-page-hero::before,
.ovr-post-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
  pointer-events: none;
}
.ovr-page-hero .ovr-wrap,
.ovr-post-hero .ovr-wrap { position: relative; max-width: 860px; }
.ovr-page-hero__title,
.ovr-post-hero__title {
  color: #fff !important; font-size: clamp(30px, 4.6vw, 52px); margin: 0;
}
.ovr-breadcrumb { font-size: 13px; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.6); margin-bottom: 14px; }
.ovr-breadcrumb a { color: #dcd9ff; text-decoration: none; }

.ovr-chip {
  display: inline-block; background: rgba(124, 108, 245, 0.2); color: #dcd9ff;
  padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  font-family: var(--ov-display); letter-spacing: 0.04em; margin-bottom: 16px;
}
.ovr-chip--light { background: var(--ov-blue-soft); color: var(--ov-secondary); }

.ovr-post-meta { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255, 255, 255, 0.66); font-size: 14px; margin-top: 18px; }
.ovr-post-meta span { display: flex; align-items: center; gap: 7px; }

/* =========================================================
   Article reading column + typography
   ========================================================= */
.ovr-article .entry-content { max-width: 760px; }
.ovr-article .entry-content p,
.ovr-article .entry-content li { font-size: 17.5px; line-height: 1.75; color: #393d49; }
.ovr-article .entry-content h2 { font-size: clamp(24px, 2.8vw, 32px); margin-top: 1.6em; }
.ovr-article .entry-content h3 { font-size: 22px; margin-top: 1.3em; }
.entry-content img { border-radius: var(--ov-radius); }
.entry-content figure { border-radius: var(--ov-radius); }

/* Quote pull styling for the service "It Depends" line, etc. */
.entry-content .has-x-large-font-size { line-height: 1.25; }

/* =========================================================
   Homepage: elevate existing blocks
   ========================================================= */
.ovr-front-article .entry-content > .wp-block-heading:first-child {
  font-size: clamp(34px, 5.2vw, 60px);
  max-width: 18ch; margin: 18px auto 28px; text-align: center;
}
/* Stat numbers → gradient text */
.home .has-x-large-font-size,
.ovr-front-article .has-x-large-font-size {
  background: linear-gradient(120deg, var(--ov-primary), var(--ov-secondary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-family: var(--ov-display); font-weight: 700;
}
/* Rounded images already used; add soft shadow */
.entry-content .is-style-rounded img { box-shadow: var(--ov-shadow-sm); }

/* =========================================================
   Blog listing (home.php / index.php)
   ========================================================= */
.ovr-bloglist {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  padding-top: 8px; padding-bottom: 72px;
}
.ovr-card {
  border: 1px solid var(--ov-line); border-radius: var(--ov-radius-lg); overflow: hidden;
  background: #fff; box-shadow: var(--ov-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column;
}
.ovr-card:hover { transform: translateY(-8px); box-shadow: var(--ov-shadow); }
.ovr-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.ovr-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ovr-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ovr-card__title { font-size: 20px; margin: 4px 0 6px; line-height: 1.2; }
.ovr-card__title a { color: var(--ov-primary); text-decoration: none; }
.ovr-card__title a:hover { color: var(--ov-secondary); }
.ovr-card__meta { color: var(--ov-foreground); font-size: 13.5px; }
.ovr-readmore { margin-top: auto; font-family: var(--ov-display); font-weight: 600; font-size: 14.5px; color: var(--ov-secondary); text-decoration: none; }

.ovr-pagination { max-width: var(--ov-max); margin: 0 auto 72px; padding: 0 24px; }
.ovr-pagination .page-numbers {
  display: inline-block; padding: 9px 15px; margin: 0 4px; border-radius: 10px;
  border: 1px solid var(--ov-line); color: var(--ov-primary); text-decoration: none; font-weight: 600;
}
.ovr-pagination .page-numbers.current { background: var(--ov-secondary); color: #fff; border-color: var(--ov-secondary); }

/* =========================================================
   Footer chrome
   ========================================================= */
.ovr-footer { background: var(--ov-ink); color: rgba(255, 255, 255, 0.74); margin-top: 70px; }
.ovr-footer__inner { max-width: var(--ov-max); margin: 0 auto; padding: 62px 24px 30px; }
.ovr-footer__widgets {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 34px; margin-bottom: 38px;
}
.ovr-footer__widgets .widget-title,
.ovr-footer__widgets h2,
.ovr-footer__widgets h3 { color: #fff; font-family: var(--ov-display); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.ovr-footer__widgets a { color: rgba(255, 255, 255, 0.74); text-decoration: none; }
.ovr-footer__widgets a:hover { color: #fff; }
.ovr-footer__widgets ul { list-style: none; margin: 0; padding: 0; }
.ovr-footer__widgets li { margin-bottom: 9px; font-size: 14.5px; }
.ovr-footer__widgets .custom-logo { max-height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.ovr-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255, 255, 255, 0.55);
}
.ovr-footer__bottom a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.ovr-footer__bottom a:hover { color: #fff; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.ovr-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.ovr-reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .ovr-bloglist { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .ovr-nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
    width: 44px; height: 44px; border: 1px solid var(--ov-line); border-radius: 12px;
    background: #fff; cursor: pointer;
  }
  .ovr-nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ov-primary); margin: 0 auto; border-radius: 2px; transition: transform 0.25s; }
  .ovr-nav__menu {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--ov-line); box-shadow: var(--ov-shadow);
    padding: 14px 24px 22px; transform: translateY(-120%); transition: transform 0.3s ease;
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .ovr-nav__menu.is-open { transform: translateY(0); }
  .ovr-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .ovr-menu li { border-bottom: 1px solid var(--ov-line); }
  .ovr-menu a { display: block; padding: 14px 4px; font-size: 16px; opacity: 1; }
  .ovr-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; }
  .ovr-nav__cta { margin-top: 16px; justify-content: center; }
}
@media (max-width: 620px) {
  .ovr-bloglist { grid-template-columns: 1fr; }
  .ovr-footer__bottom { flex-direction: column; }
}

/* =========================================================
   Homepage hero (SaaS-style dark gradient)
   ========================================================= */
.ovr-front .entry-content { padding-top: 0; }
.ovr-front-article .entry-content > .ovr-home-hero:first-child { margin-top: 0; }
.ovr-home-hero {
  position: relative; overflow: hidden; color: #fff;
  padding: 104px 0 116px; margin: 0 0 66px;
  background: linear-gradient(160deg, var(--ov-ink), var(--ov-ink-2) 60%, #161a26);
}
.ovr-home-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% -10%, rgba(124, 108, 245, 0.55), transparent 60%),
    radial-gradient(720px 480px at 6% 115%, rgba(139, 92, 246, 0.30), transparent 55%);
}
.ovr-home-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 30%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 35%, #000 30%, transparent 78%);
}
.ovr-home-hero__inner { position: relative; max-width: var(--ov-max); margin: 0 auto; padding: 0 24px; text-align: center; }
.ovr-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ov-display); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #dcd9ff; background: rgba(124, 108, 245, 0.18); padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.ovr-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ov-cyan); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.18); }
.ovr-home-hero__title { color: #fff !important; font-size: clamp(36px, 5.6vw, 66px); line-height: 1.08; margin: 0 auto 30px; max-width: 18ch; }
.ovr-grad { background: linear-gradient(120deg, #a5b4fc, var(--ov-cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ovr-home-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Service cards (replace flip cards)
   ========================================================= */
.ovr-svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: var(--ov-max); margin: 0 auto 10px; }
.ovr-svc-card {
  position: relative; background: #fff; border: 1px solid var(--ov-line-strong);
  border-radius: var(--ov-radius-lg); padding: 30px 28px; box-shadow: var(--ov-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; overflow: hidden;
}
.ovr-svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--ov-secondary), var(--ov-cyan)); opacity: 0; transition: opacity 0.3s; }
.ovr-svc-card:hover { transform: translateY(-7px); box-shadow: var(--ov-shadow); border-color: transparent; }
.ovr-svc-card:hover::before { opacity: 1; }
.ovr-svc-card__icon { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--ov-blue-soft); color: var(--ov-secondary); margin-bottom: 18px; }
.ovr-svc-card__icon svg { width: 24px; height: 24px; }
.ovr-svc-card__title { font-family: var(--ov-display); font-size: 20px; margin: 0 0 6px; color: var(--ov-primary); }
.ovr-svc-card__tag { font-weight: 600; color: var(--ov-secondary); margin: 0 0 12px; font-size: 14.5px; }
.ovr-svc-card__desc { color: var(--ov-foreground); margin: 0; font-size: 15px; line-height: 1.6; }

/* =========================================================
   Footer cleanup (flatten Stratford widget boxes)
   ========================================================= */
.ovr-footer__widgets .widget,
.ovr-footer__widgets section,
.ovr-footer__widgets aside,
.ovr-footer__widgets > div {
  background: transparent !important; box-shadow: none !important; border: 0 !important; padding: 0 !important; margin: 0 0 6px !important;
}
.ovr-footer__widgets,
.ovr-footer__widgets p,
.ovr-footer__widgets li,
.ovr-footer__widgets span { color: rgba(255, 255, 255, 0.74) !important; }
.ovr-footer__widgets a { color: rgba(255, 255, 255, 0.74) !important; text-decoration: none; }
.ovr-footer__widgets a:hover { color: #fff !important; }
.ovr-footer__widgets h1,
.ovr-footer__widgets h2,
.ovr-footer__widgets h3,
.ovr-footer__widgets h4,
.ovr-footer__widgets .widget-title,
.ovr-footer__widgets strong { color: #fff !important; background: transparent !important; }

/* Neutralize any nested block backgrounds (kills the black box on dark footer) */
.ovr-footer__widgets .wp-block-group,
.ovr-footer__widgets .wp-block-columns,
.ovr-footer__widgets .wp-block-column,
.ovr-footer__widgets .wp-block-cover,
.ovr-footer__widgets .has-background,
.ovr-footer__widgets [class*="-background-color"],
.ovr-footer__widgets [style*="background"] {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.ovr-footer__widgets .wp-block-group__inner-container,
.ovr-footer__widgets .wp-block-group.has-background { padding: 0 !important; }
.ovr-footer img,
.ovr-footer .custom-logo { max-height: 54px; width: auto; filter: none; background: transparent; }

@media (max-width: 980px) { .ovr-svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ovr-svc-cards { grid-template-columns: 1fr; } .ovr-home-hero { padding: 78px 0 88px; } }

/* Section heading above the homepage service cards */
.ovr-svc-heading {
  font-family: var(--ov-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12;
  font-size: clamp(28px, 3.6vw, 42px); text-align: center; color: var(--ov-primary);
  max-width: 22ch; margin: 64px auto 8px;
}
.ovr-front-article .entry-content > .ovr-svc-heading { margin-top: 64px; }
/* Breathing room above the homepage cards */
.ovr-front-article .entry-content > .ovr-svc-cards { margin-top: 34px; }

/* =========================================================
   Nav polish: hover underline, scroll-shrink, dropdown caret
   ========================================================= */
.ovr-nav { transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.ovr-nav.is-scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: 0 8px 30px rgba(24, 27, 36, 0.08); }
.ovr-nav.is-scrolled .ovr-nav__inner { min-height: 62px; }
.ovr-nav__inner { transition: min-height 0.3s ease; }
.ovr-menu > li > a { position: relative; padding: 6px 0; }
.ovr-menu > li > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, var(--ov-secondary), var(--ov-cyan)); border-radius: 2px;
  transition: right 0.28s ease;
}
.ovr-menu > li > a:hover::after,
.ovr-menu > li.current-menu-item > a::after { right: 0; }
/* dropdown caret for parent items */
.ovr-menu .menu-item-has-children > a::before {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 1px; margin-right: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px);
  opacity: 0.6; vertical-align: middle;
}

/* =========================================================
   Animated metric bars (homepage)
   ========================================================= */
.ovr-metrics { padding: 86px 0; background: linear-gradient(180deg, #f7f9fc, #fff); }
.ovr-metrics__inner { max-width: var(--ov-max); margin: 0 auto; padding: 0 24px; }
.ovr-metrics__title { font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 44px; }
.ovr-metrics__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ovr-metric {
  background: #fff; border: 1px solid var(--ov-line); border-radius: var(--ov-radius-lg);
  padding: 32px 30px; box-shadow: var(--ov-shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ovr-metric:hover { transform: translateY(-6px); box-shadow: var(--ov-shadow); }
.ovr-metric__num {
  font-family: var(--ov-display); font-weight: 700; font-size: 58px; line-height: 1; margin-bottom: 18px;
  background: linear-gradient(120deg, var(--ov-primary), var(--ov-secondary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ovr-metric__bar { height: 10px; border-radius: 999px; background: var(--ov-blue-soft); overflow: hidden; margin-bottom: 18px; }
.ovr-metric__fill {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--ov-secondary), var(--ov-cyan));
  transition: width 1.4s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.ovr-metric.in .ovr-metric__fill { width: var(--pct); }
.ovr-metric__desc { color: var(--ov-foreground); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 820px) { .ovr-metrics__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Footer: tech-forward
   ========================================================= */
.ovr-footer {
  position: relative; overflow: hidden;
  background:
    radial-gradient(680px 360px at 88% 0%, rgba(124, 108, 245, 0.22), transparent 60%),
    radial-gradient(520px 320px at 4% 110%, rgba(139, 92, 246, 0.16), transparent 55%),
    linear-gradient(180deg, var(--ov-ink), #15171f);
}
.ovr-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 35%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 0%, #000 35%, transparent 75%);
}
.ovr-footer__accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--ov-secondary), var(--ov-cyan), var(--ov-secondary)); }
.ovr-footer__inner { position: relative; z-index: 1; }
.ovr-footer__brandmark {
  position: absolute; right: 0; bottom: -14px; z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--ov-display); font-weight: 700; font-size: clamp(60px, 12vw, 150px); line-height: 1;
  letter-spacing: -0.03em; white-space: nowrap;
  background: linear-gradient(120deg, rgba(124, 108, 245, 0.10), rgba(139, 92, 246, 0.05));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ovr-footer__widgets { position: relative; z-index: 1; }

/* =========================================================
   Service link cards (SEO Services page)
   ========================================================= */
.ovr-link-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 8px 0 12px; }
.ovr-link-card {
  display: flex; align-items: center; gap: 18px; text-decoration: none;
  background: #fff; border: 1px solid var(--ov-line-strong); border-radius: var(--ov-radius-lg);
  padding: 26px 28px; box-shadow: var(--ov-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ovr-link-card:hover { transform: translateY(-6px); box-shadow: var(--ov-shadow); border-color: transparent; }
.ovr-link-card__icon { flex: 0 0 auto; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--ov-blue-soft); color: var(--ov-secondary); }
.ovr-link-card__icon svg { width: 24px; height: 24px; }
.ovr-link-card__title { font-family: var(--ov-display); font-weight: 600; font-size: 19px; color: var(--ov-primary); margin: 0; line-height: 1.2; flex: 1; }
.ovr-link-card__arrow { flex: 0 0 auto; color: var(--ov-secondary); font-size: 22px; transition: transform 0.25s ease; }
.ovr-link-card:hover .ovr-link-card__arrow { transform: translateX(5px); }
@media (max-width: 760px) { .ovr-link-cards { grid-template-columns: 1fr; } }

/* =========================================================
   Jetpack contact form styling
   ========================================================= */
.wp-block-jetpack-contact-form {
  background: #fff; border: 1px solid var(--ov-line); border-radius: var(--ov-radius-lg);
  padding: 34px 32px !important; box-shadow: var(--ov-shadow-sm);
}
.wp-block-jetpack-contact-form label,
.wp-block-jetpack-contact-form .grunion-label-text { font-family: var(--ov-display) !important; font-weight: 600 !important; color: var(--ov-primary) !important; font-size: 14px !important; }
.wp-block-jetpack-contact-form input[type="text"],
.wp-block-jetpack-contact-form input[type="email"],
.wp-block-jetpack-contact-form input[type="tel"],
.wp-block-jetpack-contact-form input[type="url"],
.wp-block-jetpack-contact-form textarea,
.wp-block-jetpack-contact-form select {
  width: 100% !important; border: 1px solid var(--ov-line) !important; border-radius: 12px !important;
  padding: 13px 15px !important; font-size: 15.5px !important; font-family: var(--ov-font) !important;
  background: #fbfcfe !important; color: var(--ov-primary) !important;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s !important; box-shadow: none !important;
}
.wp-block-jetpack-contact-form input:focus,
.wp-block-jetpack-contact-form textarea:focus,
.wp-block-jetpack-contact-form select:focus {
  outline: none !important; border-color: var(--ov-secondary) !important; background: #fff !important;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14) !important;
}
.wp-block-jetpack-contact-form textarea { min-height: 140px !important; resize: vertical !important; }
.wp-block-jetpack-contact-form .wp-block-button__link,
.wp-block-jetpack-contact-form button[type="submit"] {
  border-radius: 999px !important; font-family: var(--ov-display) !important; font-weight: 600 !important;
  padding: 15px 30px !important;
  background: linear-gradient(135deg, var(--ov-secondary), var(--ov-blue-bright)) !important;
  border: 0 !important; box-shadow: var(--ov-shadow-blue) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.wp-block-jetpack-contact-form button[type="submit"]:hover { transform: translateY(-3px) !important; box-shadow: 0 26px 55px rgba(79, 70, 229, 0.42) !important; }
.grunion-label-required, .wp-block-jetpack-contact-form .required { color: var(--ov-secondary) !important; }

/* =========================================================
   Mission page polish (scoped)
   ========================================================= */
.page-id-483 .entry-content { max-width: 900px; }
.page-id-483 .entry-content h2 { font-size: clamp(26px, 3.2vw, 38px); margin-top: 1.5em; }
.page-id-483 .entry-content h2::before {
  content: ""; display: block; width: 46px; height: 4px; border-radius: 4px; margin-bottom: 16px;
  background: linear-gradient(90deg, var(--ov-secondary), var(--ov-cyan));
}
.page-id-483 .entry-content p { font-size: 17.5px; line-height: 1.78; }
/* The CEO quote → pull-quote card */
.page-id-483 .has-x-large-font-size {
  position: relative; background: linear-gradient(150deg, var(--ov-ink), var(--ov-ink-2)); color: #fff !important;
  border-radius: var(--ov-radius-lg); padding: 40px 44px 30px !important; margin: 8px 0 6px !important;
  box-shadow: var(--ov-shadow); font-family: var(--ov-display) !important;
}
/* Decorative quote glyph removed — the quote text already includes its own quotation marks */
.page-id-483 .has-x-large-font-size::before { content: none; }
.page-id-483 .has-small-font-size { color: var(--ov-foreground); margin-top: 12px !important; }
.page-id-483 .wp-block-image img { border-radius: var(--ov-radius); }

/* =========================================================
   Retire the legacy royal blue from existing block content
   (homepage full-width sections, buttons, accents)
   ========================================================= */
:root { --wp--preset--color--secondary: #4f46e5; }
.has-secondary-background-color { background-color: #4f46e5 !important; }
.has-secondary-color,
.has-secondary-color a,
a.has-secondary-color { color: #4f46e5 !important; }
.wp-block-button__link.has-secondary-background-color { background: linear-gradient(135deg, #4f46e5, #7c6cf5) !important; }
/* Footer logo (light-indigo, transparent) sits naturally on dark */
.ovr-footer img, .ovr-footer .custom-logo { filter: none; background: transparent; }

/* =========================================================
   v1.3 — final polish pass
   ========================================================= */

/* ---- Logos: right-sized for each spot, no stretch ---- */
.ovr-brand .custom-logo { max-height: 58px; width: auto; height: auto; object-fit: contain; }
.ovr-nav.is-scrolled .ovr-brand .custom-logo { max-height: 50px; }

/* ---- Footer: smaller + chic ---- */
.ovr-footer { margin-top: 56px; }
.ovr-footer__inner { padding: 44px 24px 26px; }
.ovr-footer__widgets { gap: 26px; margin-bottom: 22px; }
.ovr-footer__widgets p { margin-bottom: 8px; }
.ovr-footer__widgets li { margin-bottom: 6px; font-size: 14px; }
.ovr-footer__bottom { padding-top: 18px; font-size: 12.5px; }
.ovr-footer__brandmark { font-size: clamp(42px, 7.5vw, 96px); bottom: -6px; }
.ovr-footer img, .ovr-footer .custom-logo { max-height: 58px; max-width: 92px; width: auto; }

/* ---- Mobile hamburger (clean, centered, animated) ---- */
@media (max-width: 860px) {
  .ovr-nav__toggle {
    display: inline-flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
    width: 46px; height: 46px; padding: 0; border: 1px solid var(--ov-line);
    border-radius: 13px; background: #fff; cursor: pointer; flex: 0 0 auto;
  }
  .ovr-nav__toggle span { display: block; width: 22px; height: 2px; margin: 0; background: var(--ov-primary); border-radius: 2px; transition: transform 0.28s ease, opacity 0.2s ease; }
  .ovr-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ovr-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .ovr-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .ovr-brand .custom-logo { max-height: 42px; }
}

/* ---- Homepage feature section (replaces blue services band) ---- */
.ovr-feature-section { padding: 84px 0; background: linear-gradient(180deg, #ffffff, #f6f8fc); }
.ovr-feature-section__inner { max-width: var(--ov-max); margin: 0 auto; padding: 0 24px; }
.ovr-feature-section__title { font-size: clamp(28px, 3.6vw, 42px); text-align: center; margin: 0 auto 46px; max-width: 20ch; }
.ovr-feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ovr-feature-card { background: #fff; border: 1px solid var(--ov-line); border-radius: var(--ov-radius-lg); padding: 30px 28px; box-shadow: var(--ov-shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ovr-feature-card:hover { transform: translateY(-7px); box-shadow: var(--ov-shadow); }
.ovr-feature-card__media { width: 92px; height: 92px; border-radius: 22px; overflow: hidden; margin-bottom: 22px; box-shadow: var(--ov-shadow-sm); border: 1px solid var(--ov-line); }
.ovr-feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ovr-feature-card__title { font-family: var(--ov-display); font-size: 21px; margin: 0 0 10px; color: var(--ov-primary); }
.ovr-feature-card__desc { color: var(--ov-foreground); font-size: 15px; line-height: 1.65; margin: 0; }
@media (max-width: 900px) { .ovr-feature-list { grid-template-columns: 1fr; } }

/* ---- Homepage CTA card (replaces blue CTA band) ---- */
.ovr-cta-wrap { padding: 22px 24px 84px; }
.ovr-cta-card {
  position: relative; overflow: hidden; max-width: var(--ov-max); margin: 0 auto;
  border-radius: var(--ov-radius-lg); padding: 62px 48px; text-align: center; color: #fff;
  background:
    radial-gradient(620px 320px at 18% 0%, rgba(139, 92, 246, 0.5), transparent 60%),
    linear-gradient(135deg, #4f46e5, #3b34a6);
  box-shadow: var(--ov-shadow-blue);
}
.ovr-cta-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at 70% 20%, #000 20%, transparent 70%);
  mask-image: radial-gradient(circle at 70% 20%, #000 20%, transparent 70%);
}
.ovr-cta-card > * { position: relative; }
.ovr-cta-card__title { color: #fff !important; font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 14px; }
.ovr-cta-card p { color: rgba(255, 255, 255, 0.9); max-width: 62ch; margin: 0 auto 10px; }
.ovr-cta-card .ovr-btn--light { margin-top: 20px; }

/* ---- Contact page: centered + tech-chic ---- */
.page-id-226 .ovr-article-wrap .entry-content { max-width: 760px; }
.ovr-contact-head { text-align: center; max-width: 720px; margin: 0 auto 6px; }
.ovr-contact-logo { width: 120px; height: auto; margin: 0 auto 22px; display: block; }
.ovr-contact-intro { font-size: 18px; color: var(--ov-foreground); margin: 0 auto 24px; max-width: 56ch; }
.ovr-contact-chips { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.ovr-contact-chip { display: inline-flex; align-items: center; gap: 9px; background: var(--ov-blue-soft); color: var(--ov-secondary); border: 1px solid rgba(79, 70, 229, 0.18); padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 14.5px; text-decoration: none; font-family: var(--ov-display); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ovr-contact-chip:hover { transform: translateY(-2px); box-shadow: var(--ov-shadow-sm); }
.ovr-contact-chip svg { width: 17px; height: 17px; }
.ovr-contact-form-wrap { max-width: 640px !important; margin-left: auto !important; margin-right: auto !important; }

/* ---- About page: SaaS lift ---- */
.page-id-1 .ovr-article-wrap .entry-content > .wp-block-columns:first-child {
  align-items: center; gap: 40px; background: linear-gradient(180deg, #f7f9fc, #fff);
  border: 1px solid var(--ov-line); border-radius: var(--ov-radius-lg); padding: 38px; margin-bottom: 36px;
}
.page-id-1 .wp-block-columns:first-child .wp-block-column:first-child p { font-size: 20px; line-height: 1.7; color: var(--ov-primary); margin: 0; }
.page-id-1 .wp-block-image img { border-radius: var(--ov-radius-lg); box-shadow: var(--ov-shadow); }
.page-id-1 .entry-content > p { font-size: 17.5px; line-height: 1.78; max-width: 760px; }
.page-id-1 .entry-content > .wp-block-buttons { margin-top: 28px; }

/* ---- Mobile overflow + hero sizing fixes ---- */
html, body { overflow-x: clip; max-width: 100%; }
.ovr-site, .ovr-site-content { max-width: 100%; overflow-x: clip; }
/* Eyebrow must never exceed its container (it was forcing horizontal overflow on phones).
   inline-block (not flex) so the TEXT itself wraps within the viewport. */
.ovr-eyebrow { display: inline-block !important; max-width: 100%; white-space: normal; line-height: 1.5; vertical-align: middle; }
.ovr-eyebrow::before { display: inline-block; vertical-align: middle; margin-right: 8px; }
@media (max-width: 600px) {
  .ovr-home-hero { padding: 72px 0 82px; }
  .ovr-home-hero__inner { padding: 0 20px; }
  .ovr-home-hero__title { font-size: clamp(30px, 7.8vw, 44px); max-width: 100%; }
  .ovr-home-hero .ovr-eyebrow { max-width: calc(100vw - 44px); font-size: 10.5px; letter-spacing: 0.12em; padding: 7px 14px; text-align: center; }
  .ovr-nav__toggle { display: inline-flex !important; }
  .ovr-nav__inner { padding-left: 18px; padding-right: 18px; }
}

/* =========================================================
   v1.3.1 — bigger logos + tighter footer unit
   ========================================================= */

/* ---- Logos fill their space (desktop) ---- */
.ovr-brand .custom-logo { max-height: 72px; }
.ovr-nav__inner { min-height: 94px; }
.ovr-nav.is-scrolled .ovr-brand .custom-logo { max-height: 56px; }
.ovr-nav.is-scrolled .ovr-nav__inner { min-height: 72px; }
.ovr-footer img, .ovr-footer .custom-logo { max-height: 100px; max-width: 150px; }

/* ---- Footer: smaller as a unit (desktop) ---- */
.ovr-footer { margin-top: 46px; }
.ovr-footer__inner { padding: 32px 24px 18px; }
.ovr-footer__widgets { gap: 18px 32px; margin-bottom: 14px; }
.ovr-footer__widgets p { margin-bottom: 5px; }
.ovr-footer__widgets li { margin-bottom: 4px; }
.ovr-footer__bottom { padding-top: 14px; }
.ovr-footer__brandmark { font-size: clamp(36px, 5.5vw, 72px); bottom: -2px; opacity: 0.8; }

/* ---- Mobile: bigger logos, much tighter footer ---- */
@media (max-width: 860px) {
  .ovr-brand .custom-logo { max-height: 58px; }
  .ovr-nav__inner { min-height: 76px; }
}
@media (max-width: 760px) {
  .ovr-footer { margin-top: 36px; }
  .ovr-footer__inner { padding: 26px 22px 14px; }
  .ovr-footer__widgets { margin-bottom: 8px; }
  /* keep columns side-by-side (2-up) instead of one tall stack
     (higher specificity than WP core's mobile-stack !important rule) */
  .ovr-footer .ovr-footer__widgets .wp-block-columns { flex-direction: row !important; flex-wrap: wrap !important; gap: 10px 22px !important; }
  .ovr-footer .ovr-footer__widgets .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { flex-basis: 42% !important; flex-grow: 1 !important; min-width: 140px; margin-bottom: 0 !important; }
  .ovr-footer__widgets p { margin-bottom: 4px; }
  .ovr-footer .wp-block-spacer { display: none !important; height: 0 !important; }
  .ovr-footer__brandmark { display: none; }
  .ovr-footer img, .ovr-footer .custom-logo { max-height: 78px; margin-top: 4px; }
  .ovr-footer__bottom { padding-top: 12px; font-size: 12px; }
}

/* =========================================================
   v1.3.2 — restyled footer (brand block + tidy link columns)
   ========================================================= */
.ovr-footer__widgets { display: block; margin-bottom: 8px; }
.ovr-foot { display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 48px; align-items: start; }
.ovr-foot__brand { display: flex; flex-direction: column; align-items: flex-start; }
.ovr-foot__logo { width: 132px; height: auto; display: block; }
.ovr-foot__copy { color: rgba(255, 255, 255, 0.5); font-size: 12.5px; margin: 16px 0 0; letter-spacing: 0.02em; }
.ovr-foot__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ovr-foot__col { display: flex; flex-direction: column; gap: 13px; }
.ovr-foot__link { position: relative; width: fit-content; display: inline-flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 14.5px; line-height: 1.2; }
.ovr-foot__link svg { width: 16px; height: 16px; opacity: 0.65; flex: 0 0 auto; }
a.ovr-foot__link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1.5px; border-radius: 2px; background: linear-gradient(90deg, var(--ov-secondary), var(--ov-cyan)); transition: right 0.28s ease; }
a.ovr-foot__link:hover { color: #fff; }
a.ovr-foot__link:hover svg { opacity: 1; }
a.ovr-foot__link:hover::after { right: 0; }
.ovr-foot__head { color: #fff !important; font-family: var(--ov-display); font-weight: 600; font-size: 15.5px; margin-bottom: 2px; }
.ovr-foot__static { cursor: default; }
@media (max-width: 760px) {
  .ovr-foot { grid-template-columns: 1fr; gap: 26px; }
  .ovr-foot__cols { gap: 22px; }
  .ovr-foot__logo { width: 116px; }
}
@media (max-width: 460px) {
  /* keep the two link columns side-by-side on phones (cleaner than one long list) */
  .ovr-foot__cols { grid-template-columns: 1fr 1fr; gap: 14px 16px; }
}

/* =========================================================
   v1.3.4 — jet-black card/body text + brighter footer text
   ========================================================= */

/* Any text on a white background / inside cards = jet black (not off-gray) */
.has-primary-color,
.has-primary-color a,
.entry-content p.has-primary-color,
.ovr-svc-card__desc,
.ovr-feature-card__desc,
.ovr-metric__desc,
.ovr-contact-intro,
.ovr-card__meta,
.ovr-article .entry-content p,
.ovr-article .entry-content li,
.page-id-1 .entry-content p,
.page-id-1 .wp-block-columns:first-child .wp-block-column:first-child p {
  color: #0b0b0d !important;
}
/* Re-assert white text on dark CTA (so the jet-black rule never darkens it) */
.ovr-cta-card p { color: rgba(255, 255, 255, 0.92) !important; }
.ovr-cta-card__title { color: #fff !important; }

/* Footer text: brighter for visibility on the tinted dark background */
.ovr-foot__link { color: rgba(255, 255, 255, 0.9); }
.ovr-foot__head { color: #fff !important; }
.ovr-foot__copy { color: rgba(255, 255, 255, 0.72); }
.ovr-footer__bottom { color: rgba(255, 255, 255, 0.72); }
.ovr-footer__bottom a { color: rgba(255, 255, 255, 0.82); }
@media (max-width: 760px) {
  .ovr-foot__link { color: #ffffff; }
  .ovr-foot__link svg { opacity: 0.9; }
  .ovr-foot__copy { color: rgba(255, 255, 255, 0.85); }
  .ovr-footer__bottom { color: rgba(255, 255, 255, 0.82); }
  .ovr-foot__link { font-size: 14px; }
}

/* =========================================================
   v1.3.5 — FORCE footer text visibility (beats the leftover
   `.ovr-footer__widgets a { ...!important }` rule from the old widget)
   ========================================================= */
.ovr-footer .ovr-footer__widgets .ovr-foot__link,
.ovr-footer .ovr-footer__widgets .ovr-foot__col a,
.ovr-footer .ovr-footer__widgets .ovr-foot__col span { color: rgba(255, 255, 255, 0.92) !important; }
.ovr-footer .ovr-footer__widgets .ovr-foot__head { color: #ffffff !important; }
.ovr-footer .ovr-footer__widgets .ovr-foot__col a:hover { color: #ffffff !important; }
.ovr-footer .ovr-footer__widgets .ovr-foot__link svg { opacity: 0.8 !important; }
.ovr-footer .ovr-foot__copy { color: rgba(255, 255, 255, 0.72) !important; }
.ovr-footer .ovr-footer__bottom { color: rgba(255, 255, 255, 0.8) !important; }
.ovr-footer .ovr-footer__bottom a { color: rgba(255, 255, 255, 0.88) !important; }
@media (max-width: 760px) {
  .ovr-footer .ovr-footer__widgets .ovr-foot__link,
  .ovr-footer .ovr-footer__widgets .ovr-foot__col a,
  .ovr-footer .ovr-footer__widgets .ovr-foot__col span { color: #ffffff !important; }
  .ovr-footer .ovr-foot__copy { color: rgba(255, 255, 255, 0.9) !important; }
  .ovr-footer .ovr-footer__bottom { color: rgba(255, 255, 255, 0.9) !important; }
}

/* =========================================================
   v1.3.6 — clickable service cards + centered mobile footer
   ========================================================= */
/* Make linked service cards behave like the article cards */
a.ovr-svc-card { display: block; text-decoration: none; color: inherit; }
a.ovr-svc-card .ovr-svc-card__title { transition: color 0.2s ease; }
a.ovr-svc-card:hover .ovr-svc-card__title { color: var(--ov-secondary); }

/* Center all footer elements on mobile */
@media (max-width: 760px) {
  .ovr-foot { text-align: center; }
  .ovr-foot__brand { align-items: center; width: 100%; }
  .ovr-foot__cols { width: 100%; }
  .ovr-foot__col { align-items: center; text-align: center; }
  .ovr-foot__link { width: auto; justify-content: center; }
  a.ovr-foot__link::after { left: 50%; right: 50%; }
  a.ovr-foot__link:hover::after { left: 0; right: 0; }
  .ovr-footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}
