/* Online For Boost — visual system 2026
   Light, spacious and performance-led. Loaded after the legacy stylesheet. */
:root {
  --navy: #071a33;
  --navy-2: #0c2e54;
  --blue: #0e67b5;
  --blue-bright: #1d8ad8;
  --sky: #dff2ff;
  --ice: #f3f9fd;
  --cream: #fffaf0;
  --gold: #e8b557;
  --gold-soft: #f7e2b6;
  --ink: #11243a;
  --muted: #5c6e80;
  --line: #dce7ef;
  --white: #ffffff;
  --danger: #b74747;
  --shadow-sm: 0 12px 36px rgba(7, 26, 51, .07);
  --shadow-lg: 0 28px 80px rgba(7, 26, 51, .13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --primary: var(--navy);
  --accent: var(--gold);
  --light: var(--ice);
  --text-muted: var(--muted);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 48px)) !important; margin-inline: auto; }
.text-center { text-align: center; }
.text-accent { color: var(--blue-bright) !important; }
.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px;
  border-radius: 10px; background: var(--gold); color: var(--navy); font-weight: 800;
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky; z-index: 1000; top: 0; width: 100%;
  background: rgba(7, 26, 51, .96); border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(7, 26, 51, .985); box-shadow: 0 12px 32px rgba(1, 12, 27, .18); }
.header-shell { width: min(1280px, calc(100% - 48px)); min-height: 84px; margin: 0 auto; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 235px; height: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav > a, .nav-dropdown > a { position: relative; color: rgba(255,255,255,.83); font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: -.01em; }
.desktop-nav > a::after, .nav-dropdown > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--gold); transition: right .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-current, .nav-dropdown > a:hover { color: #fff; }
.desktop-nav > a:hover::after, .desktop-nav > a.is-current::after, .nav-dropdown > a:hover::after { right: 0; }
.nav-dropdown { position: relative; padding-block: 28px; }
.nav-dropdown > a { display: flex; align-items: center; gap: 7px; }
.nav-dropdown > a i { font-size: 10px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% - 8px); left: -24px; width: 330px; padding: 12px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: #0a2342;
  box-shadow: 0 22px 60px rgba(0,0,0,.28); opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-menu a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px; color: rgba(255,255,255,.76); font-size: 13px; text-decoration: none; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.is-current { background: rgba(255,255,255,.08); color: #fff; }
.nav-dropdown-menu span { color: var(--gold); }
.header-cta { display: inline-flex; align-items: center; gap: 12px; padding: 13px 18px; border-radius: 13px; background: var(--gold); color: var(--navy); font-size: 13px; font-weight: 800; text-decoration: none; box-shadow: 0 10px 28px rgba(232,181,87,.22); }
.header-cta:hover { background: #f0c36f; transform: translateY(-1px); }
.hamburger { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: transparent; }
.hamburger span { display: block; width: 100%; height: 2px; margin: 4px 0; border-radius: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { position: absolute; inset: 84px 0 auto 0; max-height: calc(100vh - 84px); overflow-y: auto; padding: 20px 24px 30px; background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a, .mobile-nav button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 13px 4px; border: 0; border-bottom: 1px solid rgba(255,255,255,.09); background: transparent; color: rgba(255,255,255,.86); font-weight: 700; text-align: left; text-decoration: none; }
.mobile-nav a.is-current { color: var(--gold); }
#mobile-services-list { padding: 4px 12px 12px; }
#mobile-services-list a { color: rgba(255,255,255,.68); font-size: 14px; font-weight: 600; }
.mobile-nav .mobile-cta { justify-content: center; margin-top: 18px; padding: 14px; border: 0; border-radius: 12px; background: var(--gold); color: var(--navy); }

/* Shared typography and components */
.section-tag, .home-kicker, .eyebrow, .service-subtitle {
  display: inline-flex !important; align-items: center; gap: 8px; margin-bottom: 18px;
  color: var(--blue); font-size: 12px !important; font-weight: 800 !important; line-height: 1.2;
  letter-spacing: .13em; text-transform: uppercase;
}
.tag-dark { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.08); color: var(--gold) !important; }
.tag-red { color: var(--danger) !important; }
.section-title { max-width: 820px; margin: 0 auto 18px !important; color: var(--navy) !important; font-size: clamp(32px, 4.2vw, 54px) !important; line-height: 1.08 !important; letter-spacing: -.045em; }
.section-title-white { color: #fff !important; }
.section-sub { max-width: 740px !important; margin: 0 auto !important; color: var(--muted) !important; font-size: 17px !important; line-height: 1.8 !important; }
.section-sub-white { color: rgba(255,255,255,.68) !important; }
.card, .card-glass, .service-card, .value-card, .case-card, .blog-card, .contact-card {
  border: 1px solid var(--line) !important; border-radius: var(--radius-md) !important; background: #fff !important;
  box-shadow: var(--shadow-sm) !important;
}
.btn-primary, .btn-dark, .btn-glass {
  display: inline-flex !important; min-height: 52px; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 21px !important; border: 1px solid transparent !important; border-radius: 13px !important;
  font-weight: 800 !important; text-decoration: none !important; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--gold) !important; color: var(--navy) !important; box-shadow: 0 12px 30px rgba(232,181,87,.25) !important; }
.btn-dark { background: var(--navy) !important; color: #fff !important; box-shadow: 0 12px 30px rgba(7,26,51,.16) !important; }
.btn-glass { border-color: rgba(255,255,255,.28) !important; background: rgba(255,255,255,.08) !important; color: #fff !important; }
.btn-primary:hover, .btn-dark:hover, .btn-glass:hover { transform: translateY(-2px); }

/* New home */
.home-hero { position: relative; overflow: hidden; padding: 96px 0 70px; background: linear-gradient(135deg, #f7fbff 0%, #edf7fd 55%, #fffaf0 100%); }
.home-hero::before { content: ""; position: absolute; inset: -20% auto auto -10%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(29,138,216,.12), transparent 68%); }
.home-hero::after { content: ""; position: absolute; right: -160px; bottom: -220px; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle, rgba(232,181,87,.16), transparent 66%); }
.home-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 76px; }
.home-kicker { padding: 9px 13px; border: 1px solid #cfe5f2; border-radius: 999px; background: rgba(255,255,255,.7); }
.home-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 5px rgba(29,138,216,.12); }
.home-hero h1 { max-width: 720px; margin: 0 0 26px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 6.3vw, 88px); font-weight: 500; line-height: .98; letter-spacing: -.055em; }
.home-hero h1 em { color: var(--blue); font-style: normal; }
.home-hero-lead { max-width: 650px; margin: 0 0 32px; color: #4f6578; font-size: 18px; line-height: 1.75; }
.home-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 26px; }
.home-actions .btn-dark { border-color: var(--navy) !important; background: var(--navy) !important; }
.home-actions .btn-light { display: inline-flex; min-height: 52px; align-items: center; gap: 10px; padding: 14px 20px; border: 1px solid #bed2df; border-radius: 13px; background: rgba(255,255,255,.68); color: var(--navy); font-weight: 800; text-decoration: none; }
.home-trust { display: flex; flex-wrap: wrap; gap: 18px; color: #5b7184; font-size: 13px; font-weight: 700; }
.home-trust span { display: inline-flex; align-items: center; gap: 7px; }
.home-trust i { color: var(--blue); }
.orbit-wrap { position: relative; min-height: 530px; display: grid; place-items: center; }
.orbit-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(29,138,216,.16), rgba(29,138,216,.04) 48%, transparent 70%); filter: blur(2px); }
.orbit { position: relative; width: 450px; aspect-ratio: 1; border: 1px solid rgba(14,103,181,.18); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; border: 1px solid rgba(14,103,181,.24); border-radius: 50%; }
.orbit::before { inset: 13%; }
.orbit::after { inset: 27%; border-color: rgba(232,181,87,.55); }
.orbit-dash { position: absolute; inset: 5%; border: 2px dashed rgba(14,103,181,.22); border-radius: 50%; }
.orbit-core { position: absolute; inset: 35%; display: grid; place-items: center; padding: 24px; border-radius: 50%; background: var(--navy); box-shadow: 0 22px 60px rgba(7,26,51,.23); color: #fff; text-align: center; }
.orbit-core strong { display: block; color: var(--gold); font-size: 21px; line-height: 1.2; }
.orbit-core span { display: block; margin-top: 6px; color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.orbit-node { position: absolute; z-index: 2; display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid #c5dbe8; border-radius: 50%; background: rgba(255,255,255,.93); box-shadow: 0 16px 36px rgba(7,26,51,.12); color: var(--blue); font-size: 21px; }
.orbit-node::after { content: attr(data-label); position: absolute; top: calc(100% + 8px); width: 120px; color: #50687b; font-size: 10px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.orbit-node.n1 { top: 7%; left: 19%; }
.orbit-node.n2 { top: 15%; right: 9%; }
.orbit-node.n3 { right: 5%; bottom: 18%; }
.orbit-node.n4 { left: 11%; bottom: 12%; }
.metric-band { position: relative; z-index: 2; margin-top: 70px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric-card { min-height: 150px; padding: 28px; border: 1px solid #d2e2eb; border-radius: 20px; background: rgba(255,255,255,.78); box-shadow: 0 18px 44px rgba(7,26,51,.07); backdrop-filter: blur(9px); }
.metric-card i { color: var(--blue); font-size: 18px; }
.metric-card strong { display: block; margin-top: 14px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 42px; line-height: 1; }
.metric-card span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; font-weight: 700; }
.metric-note { margin: 14px 0 0; color: #738596; font-size: 11px; text-align: right; }

.home-section { padding: 112px 0; }
.home-section.is-ice { background: var(--ice); }
.home-section.is-cream { background: var(--cream); }
.home-section.is-navy { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.home-section.is-navy::before { content: ""; position: absolute; inset: -260px -180px auto auto; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02); }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 56px; margin-bottom: 52px; }
.section-head h2 { margin: 0; color: var(--navy); font-size: clamp(36px, 4.7vw, 62px); line-height: 1.04; letter-spacing: -.05em; }
.section-head p { max-width: 610px; margin: 0 0 4px auto; color: var(--muted); font-size: 17px; }
.is-navy .section-head h2 { color: #fff; }
.is-navy .section-head p { color: rgba(255,255,255,.65); }
.services-modern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-modern { position: relative; min-height: 310px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-modern:hover { transform: translateY(-6px); border-color: #b7d4e6; box-shadow: var(--shadow-lg); }
.service-modern .service-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; background: var(--sky); color: var(--blue); font-size: 21px; }
.service-modern .service-index { position: absolute; top: 24px; right: 26px; color: #a5b5c2; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-modern h3 { margin: 44px 0 12px; color: var(--navy); font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.service-modern p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-modern .service-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; color: var(--blue); font-size: 13px; font-weight: 800; }
.service-modern.is-accent { background: var(--navy); border-color: var(--navy); }
.service-modern.is-accent .service-icon { background: rgba(255,255,255,.1); color: var(--gold); }
.service-modern.is-accent h3 { color: #fff; }
.service-modern.is-accent p { color: rgba(255,255,255,.64); }
.service-modern.is-accent .service-link { color: var(--gold); }
.service-modern.is-accent .service-index { color: rgba(255,255,255,.32); }

.system-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 78px; align-items: center; }
.system-copy h2 { margin: 0 0 22px; color: var(--navy); font-size: clamp(38px, 4.8vw, 62px); line-height: 1.04; letter-spacing: -.05em; }
.system-copy > p { color: var(--muted); font-size: 17px; }
.system-copy .btn-dark { margin-top: 18px; }
.system-map { position: relative; padding: 28px; border: 1px solid #d6e4ec; border-radius: 30px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-lg); }
.system-row { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 17px; padding: 20px; border-radius: 17px; }
.system-row + .system-row { margin-top: 8px; border-top: 1px solid var(--line); }
.system-row i { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; background: var(--sky); color: var(--blue); }
.system-row strong { display: block; color: var(--navy); }
.system-row span { color: var(--muted); font-size: 12px; }
.system-row b { color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.process-modern { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-modern::before { content: ""; position: absolute; top: 29px; left: 11%; right: 11%; height: 1px; background: rgba(255,255,255,.18); }
.process-step { position: relative; z-index: 1; }
.process-step .num { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: var(--navy); color: var(--gold); font-size: 13px; font-weight: 800; }
.process-step h3 { margin: 0 0 11px; color: #fff; font-size: 19px; }
.process-step p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.results-modern { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.result-feature { padding: 48px; border-radius: 28px; background: var(--navy); color: #fff; }
.result-feature .quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 74px; line-height: .7; }
.result-feature blockquote { margin: 26px 0 30px; font-family: Georgia, serif; font-size: clamp(25px, 3vw, 39px); line-height: 1.25; }
.result-feature p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.result-list { display: grid; gap: 14px; }
.result-line { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 24px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.result-line strong { color: var(--blue); font-family: Georgia, serif; font-size: 38px; line-height: 1; }
.result-line span { color: var(--muted); font-size: 14px; }

.niche-modern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.niche-modern { padding: 22px; border: 1px solid #e7dcc6; border-radius: 18px; background: rgba(255,255,255,.68); }
.niche-modern i { margin-bottom: 18px; color: var(--blue); font-size: 20px; }
.niche-modern h3 { margin: 0 0 7px; color: var(--navy); font-size: 15px; }
.niche-modern p { margin: 0; color: var(--muted); font-size: 12px; }

.faq-modern { max-width: 900px; margin: 0 auto; }
.faq-modern details { border-bottom: 1px solid var(--line); }
.faq-modern summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 26px 4px; color: var(--navy); font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-modern summary::-webkit-details-marker { display: none; }
.faq-modern summary::after { content: "+"; display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border: 1px solid #c9dbe6; border-radius: 50%; color: var(--blue); font-size: 20px; font-weight: 500; }
.faq-modern details[open] summary::after { content: "−"; }
.faq-modern .answer { max-width: 760px; padding: 0 4px 26px; color: var(--muted); }

.area-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-cloud span { padding: 10px 16px; border: 1px solid #e3d7bf; border-radius: 999px; background: rgba(255,255,255,.65); color: #536a7c; font-size: 13px; font-weight: 700; }
.home-final { padding: 48px; border-radius: 32px; background: linear-gradient(120deg, #0a284a, #0d4f87); box-shadow: 0 28px 80px rgba(7,26,51,.2); color: #fff; }
.home-final-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 50px; }
.home-final h2 { margin: 0 0 14px; font-size: clamp(34px, 4.2vw, 55px); line-height: 1.06; letter-spacing: -.045em; }
.home-final p { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); }
.home-final .btn-primary { justify-self: end; }

/* Existing public pages — modern light override */
.page-hero { position: relative !important; min-height: auto !important; padding: 92px 0 84px !important; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, #0c3e6c 100%) !important; }
.page-hero::after { content: ""; position: absolute; right: -170px; bottom: -310px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 82px rgba(255,255,255,.03), 0 0 0 164px rgba(255,255,255,.02); }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 920px !important; margin: 12px 0 22px !important; color: #fff !important; font-family: Georgia, "Times New Roman", serif !important; font-size: clamp(44px, 6vw, 72px) !important; font-weight: 500 !important; line-height: 1.02 !important; letter-spacing: -.05em !important; }
.page-hero p { max-width: 720px !important; color: rgba(255,255,255,.7) !important; font-size: 17px !important; line-height: 1.75 !important; }
.page-hero-wave, .page-hero-blob { display: none !important; }
.sv-hero { padding: 86px 0 80px !important; overflow: hidden; background: linear-gradient(135deg, #eef8fd 0%, #fffaf0 100%) !important; color: var(--ink) !important; }
.sv-hero-grid { gap: 70px !important; }
.sv-hero h1 { color: var(--navy) !important; font-family: Georgia, "Times New Roman", serif !important; font-size: clamp(45px, 5.7vw, 72px) !important; font-weight: 500 !important; line-height: 1.02 !important; letter-spacing: -.05em !important; }
.sv-hero-sub { color: var(--muted) !important; font-size: 17px !important; line-height: 1.75 !important; }
.sv-hero-tag { border-color: #cce0ec !important; background: rgba(255,255,255,.72) !important; color: var(--blue) !important; }
.sv-hero .btn-glass { border-color: #bfcfda !important; background: rgba(255,255,255,.7) !important; color: var(--navy) !important; }
.sv-hero-img { border-radius: 28px !important; box-shadow: var(--shadow-lg) !important; }
.sv-wave, .sv-blob1, .sv-blob2, .sv-grid-dots { display: none !important; }
.sv-hero-stats { margin-top: 32px !important; border-color: #d3e2ea !important; background: rgba(255,255,255,.7) !important; }
.sv-stat-val { color: var(--blue) !important; }
.sv-stat-label { color: var(--muted) !important; }
.sv-section, .services-section, .steps-section, .problems, .niches-section, .areas-section, .faq-section { padding: 104px 0 !important; }
.sv-section:nth-of-type(even), .services-section, .faq-section { background: var(--ice) !important; }
.sv-content-grid { gap: 72px !important; }
.sv-content-title { color: var(--navy) !important; font-size: clamp(34px, 4.3vw, 53px) !important; letter-spacing: -.04em !important; }
.sv-content-body { color: var(--muted) !important; font-size: 16px !important; line-height: 1.8 !important; }
.sv-visual-card, .sv-process, .sv-feature-item, .sv-check-item { border-color: var(--line) !important; border-radius: 22px !important; background: #fff !important; box-shadow: var(--shadow-sm) !important; }
.sv-section-dark { background: var(--navy) !important; }
.sv-section-dark .sv-content-title, .sv-content-title-white { color: #fff !important; }
.sv-section-dark .sv-content-body, .sv-content-body-white { color: rgba(255,255,255,.68) !important; }
.service-article { gap: 72px !important; margin-bottom: 44px !important; padding: 44px !important; border: 1px solid var(--line) !important; border-radius: 28px !important; background: #fff !important; box-shadow: var(--shadow-sm) !important; }
.service-article img { border-radius: 20px !important; box-shadow: none !important; }
.service-article h2 { color: var(--navy) !important; font-size: clamp(30px, 4vw, 46px) !important; letter-spacing: -.04em !important; }
.service-article p, .feature-item { color: var(--muted) !important; }
.feature-check { background: var(--sky) !important; color: var(--blue) !important; }
.grid-3, .services-grid, .values-grid, .cases-grid, .contact-cards { gap: 20px !important; }
.problem-card, .service-card, .value-card { padding: 30px !important; }
.problem-card h3, .service-card h3, .value-card h3 { color: var(--navy) !important; }
.problem-card p, .service-card p, .value-card p { color: var(--muted) !important; }
.steps-section, .work-method-section { background: var(--navy) !important; }
.step-item, .work-method-card { border-color: rgba(255,255,255,.13) !important; background: rgba(255,255,255,.055) !important; box-shadow: none !important; }
.step-item h3, .work-method-card h3 { color: #fff !important; }
.step-item p, .work-method-card p { color: rgba(255,255,255,.62) !important; }
.step-circle, .work-method-num { background: var(--gold) !important; color: var(--navy) !important; }
.final-cta, .mid-cta, .sv-cta-banner { background: linear-gradient(120deg, var(--navy), #0d4f87) !important; }
.faq-group details, .sv-faq details { border-color: var(--line) !important; border-radius: 16px !important; background: #fff !important; box-shadow: none !important; }
.faq-group summary, .sv-faq summary { color: var(--navy) !important; }
.blog-card-img-wrap img, .blog-featured img { object-fit: cover !important; }

/* Consent */
.cookie-panel { position: fixed; z-index: 5000; right: 22px; bottom: 22px; width: min(560px, calc(100% - 44px)); display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; padding: 25px; border: 1px solid #d6e3eb; border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: 0 28px 80px rgba(7,26,51,.2); backdrop-filter: blur(14px); }
.cookie-panel h2 { margin: 0 0 7px; color: var(--navy); font-size: 18px; }
.cookie-panel p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.cookie-panel .cookie-kicker { margin-bottom: 3px; color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.cookie-panel a { color: var(--blue); }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 10px 13px; border-radius: 10px; font-size: 11px; font-weight: 800; cursor: pointer; }
.cookie-secondary { border: 1px solid #cbd9e2; background: #fff; color: var(--navy); }
.cookie-primary { border: 1px solid var(--navy); background: var(--navy); color: #fff; }

/* Footer */
.site-footer { padding: 76px 0 24px; background: #06162b; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 52px; }
.footer-brand img { width: 250px; height: auto; }
.footer-brand p { max-width: 330px; margin: 20px 0 24px; color: rgba(255,255,255,.54); font-size: 13px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: #fff; text-decoration: none; }
.site-footer h2 { margin: 8px 0 20px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 10px 0; color: rgba(255,255,255,.56); font-size: 13px; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 17px; color: var(--gold) !important; font-size: 13px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 62px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p, .footer-bottom a, .footer-bottom button { margin: 0; color: rgba(255,255,255,.42); font-size: 11px; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom button { padding: 0; border: 0; background: none; cursor: pointer; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 20px; }
  .header-cta { display: none; }
  .home-hero-grid { gap: 35px; }
  .orbit { width: 390px; }
  .orbit-wrap { min-height: 460px; }
  .services-modern-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 980px) {
  .container, .header-shell { width: min(100% - 34px, 760px) !important; }
  .header-shell { min-height: 76px; }
  .brand img { width: 210px; }
  .desktop-nav, .header-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .mobile-nav { top: 76px; }
  .home-hero { padding-top: 70px; }
  .home-hero-grid, .system-grid, .results-modern, .home-final-grid { grid-template-columns: 1fr; }
  .home-hero-grid { gap: 12px; }
  .home-hero h1 { max-width: 780px; }
  .orbit-wrap { min-height: 480px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head p { margin-left: 0; }
  .process-modern { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .process-modern::before { display: none; }
  .niche-modern-grid { grid-template-columns: repeat(2, 1fr); }
  .home-final .btn-primary { justify-self: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-hero-grid, .sv-content-grid { grid-template-columns: 1fr !important; gap: 46px !important; }
  .service-article, .service-article.reverse { grid-template-columns: 1fr !important; gap: 38px !important; }
}

@media (max-width: 640px) {
  .container, .header-shell { width: min(100% - 28px, 560px) !important; }
  .brand img { width: 188px; }
  .home-hero { padding: 54px 0 56px; }
  .home-hero h1 { font-size: clamp(47px, 15vw, 65px); }
  .home-hero-lead { font-size: 16px; }
  .home-actions { display: grid; }
  .home-actions a { width: 100%; justify-content: center; }
  .home-trust { display: grid; gap: 8px; }
  .orbit-wrap { min-height: 365px; margin: 20px -10px 0; }
  .orbit { width: min(340px, 92vw); }
  .orbit-node { width: 52px; height: 52px; font-size: 18px; }
  .orbit-node::after { display: none; }
  .orbit-core { inset: 33%; padding: 12px; }
  .orbit-core strong { font-size: 16px; }
  .orbit-core span { font-size: 8px; }
  .metric-band { margin-top: 34px; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .metric-card { min-height: 130px; padding: 19px; }
  .metric-card strong { font-size: 34px; }
  .metric-note { text-align: left; }
  .home-section, .sv-section, .services-section, .steps-section, .problems, .niches-section, .areas-section, .faq-section { padding: 78px 0 !important; }
  .section-head { margin-bottom: 34px; }
  .services-modern-grid { grid-template-columns: 1fr; }
  .service-modern { min-height: 280px; }
  .system-grid { gap: 48px; }
  .system-map { padding: 14px; }
  .system-row { grid-template-columns: 46px 1fr; padding: 17px 12px; }
  .system-row i { width: 42px; height: 42px; }
  .system-row b { display: none; }
  .process-modern { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 50px 1fr; gap: 0 16px; }
  .process-step .num { grid-row: 1 / 3; width: 48px; height: 48px; margin: 0; }
  .result-feature { padding: 34px 26px; }
  .result-line { grid-template-columns: 88px 1fr; gap: 14px; padding: 21px; }
  .result-line strong { font-size: 31px; }
  .niche-modern-grid { grid-template-columns: 1fr; }
  .home-final { padding: 34px 24px; }
  .page-hero { padding: 70px 0 65px !important; }
  .page-hero h1 { font-size: clamp(42px, 13vw, 58px) !important; }
  .sv-hero { padding: 64px 0 60px !important; }
  .service-article { padding: 26px !important; }
  .cookie-panel { right: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-top: 58px; }
  .footer-bottom { display: grid; margin-top: 42px; }
  .footer-bottom div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Home v2 — refined tech performance direction */
.site-header {
  background: rgba(5, 20, 39, .97);
  border-bottom-color: rgba(255,255,255,.1);
}
.site-header.is-scrolled { background: rgba(5, 20, 39, .99); }
.header-shell { min-height: 88px; }
.brand { width: 252px; min-width: 252px; overflow: visible; }
.brand img {
  width: 252px;
  height: auto;
  aspect-ratio: 16 / 5;
  object-fit: contain;
  object-position: left center;
}
.desktop-nav > a,
.nav-dropdown > a { color: rgba(255,255,255,.88) !important; }
.desktop-nav > a:hover,
.desktop-nav > a.is-current,
.nav-dropdown > a:hover { color: #fff !important; }
.nav-dropdown-menu {
  width: 350px;
  padding: 14px;
  border: 1px solid rgba(122, 184, 232, .24);
  background: #0a2747;
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}
.nav-dropdown-menu a {
  min-height: 43px;
  padding: 11px 13px;
  color: #f3f8fc !important;
  font-size: 13px;
  font-weight: 700;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-current {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}
.nav-dropdown-menu span { color: #f1bd5f !important; }

.home-hero {
  padding: 78px 0 48px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 28%, rgba(23, 136, 214, .22), transparent 27%),
    radial-gradient(circle at 8% 0%, rgba(232, 181, 87, .11), transparent 25%),
    linear-gradient(135deg, #06172d 0%, #082442 54%, #0a3156 100%);
}
.home-hero::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background-image:
    linear-gradient(rgba(100,178,235,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,178,235,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), transparent 72%);
  pointer-events: none;
}
.home-hero::after {
  right: -190px;
  bottom: -310px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255,255,255,.06);
  background: transparent;
  box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.014);
  pointer-events: none;
}
.home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 68px;
}
.home-kicker {
  margin-bottom: 24px;
  padding: 9px 14px;
  border-color: rgba(122,184,232,.32);
  background: rgba(255,255,255,.055);
  color: #9dcef0 !important;
  backdrop-filter: blur(8px);
}
.home-kicker-dot {
  background: #f1bd5f;
  box-shadow: 0 0 0 5px rgba(241,189,95,.13), 0 0 22px rgba(241,189,95,.45);
}
.home-hero h1 {
  max-width: 690px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(54px, 5.65vw, 82px);
  line-height: 1;
  letter-spacing: -.052em;
}
.home-hero h1 em { color: #f1bd5f; }
.home-hero-lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(236,245,251,.74);
  font-size: 17px;
  line-height: 1.78;
}
.home-actions { margin-bottom: 25px; }
.home-actions .btn-primary { min-width: 225px; }
.home-actions .btn-light {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.055);
  color: #fff;
  backdrop-filter: blur(8px);
}
.home-actions .btn-light:hover { background: rgba(255,255,255,.1); }
.home-trust { gap: 16px 22px; color: rgba(229,240,248,.66); }
.home-trust i { color: #f1bd5f; }

.orbit-wrap { min-height: 510px; }
.orbit-panel {
  position: relative;
  width: min(100%, 510px);
  padding: 19px 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(139,197,236,.22);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 34px 90px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}
.orbit-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(29,138,216,.14);
  filter: blur(45px);
  pointer-events: none;
}
.orbit-panel-head,
.orbit-panel-foot { position: relative; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.orbit-panel-head { padding: 3px 4px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.orbit-panel-head span { color: rgba(255,255,255,.9); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.orbit-panel-head span i { margin-right: 7px; color: #f1bd5f; }
.orbit-panel-head b { color: rgba(174,214,241,.72); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.orbit-stage { position: relative; min-height: 395px; display: grid; place-items: center; }
.orbit-glow { width: 390px; height: 390px; background: radial-gradient(circle, rgba(34,145,222,.28), rgba(12,71,116,.1) 48%, transparent 70%); }
.orbit {
  width: 370px;
  border-color: rgba(122,193,242,.25);
  box-shadow: inset 0 0 70px rgba(10,89,148,.08);
}
.orbit::before { border-color: rgba(122,193,242,.26); }
.orbit::after { border-color: rgba(241,189,95,.55); }
.orbit-dash { border-color: rgba(122,193,242,.25); }
.orbit-core {
  inset: 32%;
  background: linear-gradient(145deg, #09213d, #0b365d);
  box-shadow: 0 20px 55px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
}
.orbit-core strong { color: #f1bd5f; font-size: 19px; }
.orbit-core span { color: rgba(255,255,255,.65); }
.orbit-node {
  width: 58px;
  height: 58px;
  border-color: rgba(133,194,236,.35);
  background: #0a294a;
  box-shadow: 0 16px 36px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.05);
  color: #f1bd5f;
}
.orbit-node::after { color: rgba(222,238,248,.76); }
.orbit-panel-foot { padding: 15px 5px 1px; border-top: 1px solid rgba(255,255,255,.1); }
.orbit-panel-foot span { display: inline-flex; align-items: center; gap: 7px; color: rgba(220,238,249,.62); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.orbit-panel-foot span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #f1bd5f; box-shadow: 0 0 12px rgba(241,189,95,.5); }

.metric-band { margin-top: 52px; }
.metric-grid { gap: 12px; }
.metric-card {
  min-height: 144px;
  padding: 25px;
  border-color: rgba(139,197,236,.2);
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 45px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.07);
}
.metric-card i { color: #f1bd5f; }
.metric-card strong { color: #fff; }
.metric-card span { color: rgba(229,241,249,.64); }
.home-hero .metric-note { color: rgba(225,239,247,.52); }

.home-section { padding: 96px 0; }
.home-section:not(.is-navy):not(.is-cream):not(.is-ice) { background: #fff; }
.home-section.is-ice { background: #f2f7fb; }
.home-section.is-cream { background: #fbf7ee; }
.section-head { grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: 48px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(36px, 4.2vw, 56px); }
.services-modern-grid { gap: 16px; }
.service-modern {
  min-height: 295px;
  border-color: #dbe6ed;
  background: linear-gradient(155deg, #fff, #f8fbfd);
  box-shadow: 0 12px 34px rgba(7,26,51,.045);
}
.service-modern.is-accent { background: linear-gradient(145deg, #071a33, #0b3a65); }
.system-map { border-color: #cfdee8; background: #fff; box-shadow: 0 24px 68px rgba(7,26,51,.1); }
.home-section.is-navy {
  background:
    radial-gradient(circle at 88% 20%, rgba(29,138,216,.18), transparent 25%),
    linear-gradient(135deg, #06172d, #092946);
}
.process-step { padding: 0 10px; }
.result-feature { background: linear-gradient(145deg, #071a33, #0b3a65); }
.result-feature blockquote { font-size: clamp(24px, 2.7vw, 36px); }
.niche-modern { background: rgba(255,255,255,.82); box-shadow: 0 9px 28px rgba(7,26,51,.035); }

@media (max-width: 1100px) {
  .brand { width: 224px; min-width: 224px; }
  .brand img { width: 224px; }
  .home-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: 38px; }
  .orbit-panel { width: 100%; }
  .orbit { width: 335px; }
  .orbit-stage { min-height: 365px; }
}

@media (max-width: 980px) {
  .header-shell { min-height: 78px; }
  .brand { width: 220px; min-width: 220px; }
  .brand img { width: 220px; }
  .mobile-nav { top: 78px; }
  .mobile-nav a,
  .mobile-nav button,
  #mobile-services-list a { color: #f2f7fb !important; }
  .mobile-nav a.is-current { color: #f1bd5f !important; }
  .home-hero { padding-top: 66px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .orbit-wrap { min-height: auto; }
  .orbit-panel { width: min(100%, 560px); }
  .section-head { grid-template-columns: 1fr; gap: 17px; }
  .section-head p { max-width: 720px; }
}

@media (max-width: 640px) {
  .header-shell { min-height: 72px; }
  .brand { width: 178px; min-width: 178px; }
  .brand img { width: 178px; }
  .mobile-nav { top: 72px; }
  .home-hero { padding: 48px 0 42px; }
  .home-hero h1 { font-size: clamp(45px, 14.2vw, 62px); }
  .home-hero-lead { font-size: 16px; }
  .orbit-panel { padding: 15px 14px 14px; border-radius: 23px; }
  .orbit-panel-head b { display: none; }
  .orbit-stage { min-height: 325px; }
  .orbit { width: min(300px, 84vw); }
  .orbit-glow { width: 310px; height: 310px; }
  .orbit-node { width: 48px; height: 48px; }
  .orbit-core { inset: 31%; }
  .orbit-panel-foot { justify-content: flex-start; flex-wrap: wrap; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .metric-card { min-height: 127px; padding: 18px; }
  .metric-card strong { font-size: 33px; }
  .home-section { padding: 76px 0; }
  .section-head h2 { font-size: clamp(34px, 11vw, 46px); }
}

/* Visual fixes v3 — service checklists, Results page and hero orbit */
.sv-check-item {
  min-height: 52px;
  align-items: center !important;
  padding: 13px 16px !important;
}
.sv-check-item .sv-check-icon {
  margin-top: 0;
}
.sv-check-item .sv-check-text,
.sv-check-item .sv-check-text strong {
  color: var(--navy) !important;
}
.sv-section-dark .sv-check-item {
  border: 1px solid rgba(139, 197, 236, .18) !important;
  background: rgba(255, 255, 255, .065) !important;
  box-shadow: none !important;
}
.sv-section-dark .sv-check-item .sv-check-icon {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.sv-section-dark .sv-check-item .sv-check-text {
  color: rgba(244, 249, 252, .86) !important;
}
.sv-section-dark .sv-check-item .sv-check-text strong {
  color: #fff !important;
}

.orbit-core {
  inset: 50% auto auto 50%;
  width: 142px;
  height: 142px;
  transform: translate(-50%, -50%);
  padding: 16px;
}
.orbit-core > div {
  display: grid;
  width: 100%;
  place-items: center;
  text-align: center;
}
.orbit-core strong {
  white-space: nowrap;
  text-align: center;
}
.orbit-core span {
  width: 100%;
  line-height: 1.55;
  text-align: center;
}

.results-hero {
  min-height: 610px !important;
  padding: 76px 0 70px !important;
  background:
    radial-gradient(circle at 83% 28%, rgba(29, 138, 216, .27), transparent 30%),
    radial-gradient(circle at 14% 7%, rgba(232, 181, 87, .12), transparent 24%),
    linear-gradient(135deg, #06172d 0%, #082542 55%, #0b3b67 100%) !important;
  color: #fff !important;
}
.results-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 178, 235, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 178, 235, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  pointer-events: none;
}
.results-hero .container { position: relative; z-index: 1; }
.results-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
  grid-template-areas:
    "tag stats"
    "title stats"
    "lead stats"
    ". note";
  column-gap: 74px;
  align-items: center;
}
.results-hero-tag { grid-area: tag; justify-self: start; }
.results-hero-title {
  grid-area: title;
  max-width: 720px;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(48px, 5.5vw, 72px) !important;
  font-weight: 500 !important;
  line-height: 1.03 !important;
  letter-spacing: -.05em;
}
.results-hero-title span { display: block; color: #54b5f0; }
.results-hero-lead {
  grid-area: lead;
  max-width: 670px !important;
  margin: 0 !important;
  color: rgba(235, 245, 251, .74) !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
}
.results-hero .resultados-hero-stats {
  grid-area: stats;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: none !important;
  gap: 14px !important;
  padding: 22px;
  border: 1px solid rgba(139, 197, 236, .22);
  border-radius: 28px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.results-hero .resultados-hero-stats > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-color: rgba(139, 197, 236, .18) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .065) !important;
}
.results-hero-note {
  grid-area: note;
  margin: 13px 0 0 !important;
  color: rgba(225, 239, 247, .5) !important;
  font-size: 11px !important;
  text-align: center;
}
.results-cases-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 100% 10%, rgba(29, 138, 216, .11), transparent 26%),
    linear-gradient(180deg, #edf5fa 0%, #f8f5ed 100%);
}
.result-case-card {
  border-color: rgba(7, 26, 51, .1) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 52px rgba(7, 26, 51, .075);
}
.result-case-card.tone-navy {
  border-color: rgba(139, 197, 236, .18) !important;
  background: linear-gradient(145deg, #071a33, #0b3a65) !important;
  box-shadow: 0 24px 60px rgba(7, 26, 51, .18);
}
.result-case-card.tone-navy h3 { color: #fff !important; }
.result-case-card.tone-navy > p { color: rgba(235, 245, 251, .7) !important; }
.result-case-card.tone-navy > div:first-child > div:first-child {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.result-case-card.tone-navy > div:first-child > div:last-child > div {
  background: rgba(255, 255, 255, .09) !important;
  color: var(--gold) !important;
}
.result-case-card.tone-navy .case-metrics-grid > div {
  background: rgba(255, 255, 255, .075) !important;
  border: 1px solid rgba(255, 255, 255, .09);
}
.result-case-card.tone-navy .case-metrics-grid > div > div:first-child { color: var(--gold) !important; }
.result-case-card.tone-navy .case-metrics-grid > div > div:last-child { color: rgba(235, 245, 251, .58) !important; }
.result-case-card.tone-navy > div:last-child { color: rgba(235, 245, 251, .46) !important; }
.results-methodology-section {
  padding: 64px 0;
  background: #071a33;
}
.results-methodology-section > .container > div {
  border: 1px solid rgba(139, 197, 236, .17) !important;
  border-left: 4px solid var(--gold) !important;
  background: rgba(255, 255, 255, .065) !important;
}
.results-methodology-section h3 { color: #fff !important; }
.results-methodology-section p { color: rgba(235, 245, 251, .65) !important; }

@media (max-width: 980px) {
  .results-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "tag" "title" "lead" "stats" "note";
    gap: 0;
  }
  .results-hero .resultados-hero-stats { margin-top: 36px; }
}

@media (max-width: 640px) {
  .orbit-core { width: 116px; height: 116px; padding: 11px; }
  .orbit-core strong { font-size: 15px; }
  .orbit-core span { font-size: 8px; line-height: 1.45; }
  .results-hero { min-height: auto !important; padding: 64px 0 58px !important; }
  .results-hero-title { font-size: clamp(42px, 13vw, 58px) !important; }
  .results-hero .resultados-hero-stats { padding: 13px; gap: 9px !important; }
  .results-hero .resultados-hero-stats > div { min-height: 108px; }
  .results-cases-section { padding: 76px 0; }
  .result-case-card { padding: 26px !important; }
  .case-metrics-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Mobile v4 — unified navigation and responsive safeguards */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip !important;
}

main,
section,
.container,
.home-hero-grid > *,
.sv-hero-grid > *,
.sv-content-grid > *,
.service-article > *,
.article-layout-v2 > *,
.results-hero-inner > * {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: break-word;
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .site-header {
    z-index: 9999 !important;
  }

  .hamburger {
    display: flex !important;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
  }

  .mobile-nav:not([hidden]) {
    position: fixed !important;
    inset: 78px 0 0 !important;
    z-index: 9998 !important;
    display: flex !important;
    width: 100% !important;
    max-height: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    padding: 18px max(22px, env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left)) !important;
    background: rgba(5, 20, 39, .995) !important;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .28) !important;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav > a,
  .mobile-nav > button {
    display: flex !important;
    min-height: 50px;
    padding: 13px 4px !important;
    border-radius: 0 !important;
    color: #f2f7fb !important;
    line-height: 1.35;
    white-space: normal;
  }

  #mobile-services-toggle i {
    transition: transform .2s ease;
  }

  #mobile-services-toggle i.is-open {
    transform: rotate(180deg);
  }

  #mobile-services-list:not([hidden]) {
    display: block !important;
  }

  #mobile-services-list a {
    min-height: 45px;
    padding: 11px 8px !important;
    color: rgba(235, 245, 251, .76) !important;
  }

  .mobile-nav .mobile-cta {
    margin-top: 20px !important;
    padding: 15px 18px !important;
    border-radius: 13px !important;
    color: var(--navy) !important;
  }

  .home-hero-grid,
  .system-grid,
  .results-modern,
  .home-final-grid,
  .sv-hero-grid,
  .sv-content-grid,
  .service-article,
  .service-article.reverse,
  .results-hero-inner,
  .article-grid,
  .article-layout,
  .article-layout-v2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .sv-content-grid,
  .sv-content-grid.reverse,
  .service-article.reverse {
    direction: ltr !important;
  }

  .blog-grid,
  .blog-grid-bottom,
  .cases-grid,
  .values-grid,
  .contact-cards,
  .work-method-grid,
  .work-method-grid-3,
  .service-decision-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .blog-featured,
  .blog-small {
    grid-column: auto !important;
  }

  .work-method-grid,
  .work-method-grid-3,
  .service-decision-grid {
    width: 100% !important;
    margin-inline: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .work-method-card,
  .service-decision-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .sv-hero-img-wrap {
    display: none !important;
  }

  .sv-features-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .sv-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-hero,
  .sv-hero,
  .results-hero {
    min-height: auto !important;
  }

  .cookie-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .mobile-nav:not([hidden]) {
    inset: 72px 0 0 !important;
  }

  .container,
  .header-shell {
    width: calc(100% - 28px) !important;
  }

  .home-hero h1 {
    font-size: clamp(40px, 12.6vw, 54px) !important;
    line-height: 1.02 !important;
  }

  .home-actions,
  .sv-hero-btns {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
  }

  .home-actions a,
  .sv-hero-btns a {
    width: 100% !important;
    max-width: none !important;
    justify-content: center !important;
    text-align: center;
  }

  .orbit-stage {
    min-height: 300px !important;
  }

  .orbit,
  .orbit-glow {
    width: min(286px, calc(100vw - 64px)) !important;
    height: min(286px, calc(100vw - 64px)) !important;
  }

  .orbit-node {
    width: 46px;
    height: 46px;
  }

  .orbit-core {
    width: 110px;
    height: 110px;
  }

  .metric-card {
    min-width: 0;
  }

  .sv-hero h1,
  .page-hero h1,
  .results-hero-title {
    font-size: clamp(36px, 11.4vw, 50px) !important;
    line-height: 1.06 !important;
  }

  .sv-features-row,
  .sv-process-steps,
  .process-modern,
  .niche-modern-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .sv-feature-item {
    border-right: 0 !important;
  }

  .service-article,
  .result-case-card,
  .home-final {
    padding: 24px !important;
  }

  .result-case-card > div:first-child {
    align-items: flex-start !important;
  }

  .result-case-card > div:first-child > div:last-child {
    min-width: 0;
  }

  .case-metrics-grid,
  .results-hero .resultados-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .article-featured-img,
  .blog-card-img-wrap img,
  .blog-featured img {
    height: auto !important;
    max-height: 280px;
  }

  .cookie-actions {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .footer-bottom div {
    gap: 12px 18px;
  }
}

@media (max-width: 420px) {
  .metric-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .metric-card {
    min-height: 112px;
  }

  .results-hero .resultados-hero-stats,
  .case-metrics-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Header and mobile fan menu — v5 */
.site-header,
.header-shell,
.brand,
.brand img,
.header-cta,
.hamburger,
.nav-dropdown {
  transition:
    min-height .28s ease,
    width .28s ease,
    min-width .28s ease,
    padding .28s ease,
    transform .28s ease,
    background-color .28s ease,
    box-shadow .28s ease;
}

.site-header.is-scrolled .header-shell { min-height: 68px; }
.site-header.is-scrolled .brand { width: 210px; min-width: 210px; }
.site-header.is-scrolled .brand img { width: 210px; }
.site-header.is-scrolled .nav-dropdown { padding-block: 18px; }
.site-header.is-scrolled .header-cta { padding-block: 10px; }

@media (max-width: 980px) {
  .site-header.is-scrolled .header-shell { min-height: 60px; }
  .site-header.is-scrolled .brand { width: 164px; min-width: 164px; }
  .site-header.is-scrolled .brand img { width: 164px; }
  .site-header.is-scrolled .hamburger {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-color: rgba(241, 189, 95, .42);
  }

  .hamburger {
    position: relative;
    z-index: 10001;
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.035);
  }

  .hamburger span {
    width: 21px;
    flex: 0 0 2px;
    margin: 3px 0;
    background: #fff !important;
  }

  .hamburger[aria-expanded="true"] {
    border-color: rgba(241, 189, 95, .56);
    background: rgba(241, 189, 95, .09);
  }

  .mobile-nav:not([hidden]) {
    position: fixed !important;
    inset: var(--mobile-header-height, 78px) 0 0 !important;
    z-index: 9998 !important;
    display: block !important;
    width: 100% !important;
    height: calc(100vh - var(--mobile-header-height, 78px)) !important;
    height: calc(100dvh - var(--mobile-header-height, 78px)) !important;
    min-height: 0 !important;
    max-height: calc(100vh - var(--mobile-header-height, 78px)) !important;
    max-height: calc(100dvh - var(--mobile-header-height, 78px)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    padding: 0 0 calc(34px + env(safe-area-inset-bottom)) !important;
    border-top: 1px solid rgba(139, 197, 236, .15) !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(29, 138, 216, .22), transparent 34%),
      linear-gradient(155deg, rgba(5, 20, 39, .998), rgba(8, 39, 70, .998)) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .34) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transform-origin: top right;
    transition:
      opacity .24s ease,
      visibility .24s ease,
      transform .3s cubic-bezier(.2,.75,.25,1);
    -webkit-clip-path: none !important;
    clip-path: none !important;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }

  .mobile-nav-shell {
    width: min(100% - 36px, 680px);
    min-height: 100%;
    margin: 0 auto;
    padding: 25px 0 32px;
  }

  .mobile-nav-label {
    margin-bottom: 8px;
    color: rgba(164, 208, 238, .62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .mobile-nav .mobile-menu-item,
  .mobile-nav .mobile-service-link,
  .mobile-nav .mobile-cta {
    opacity: 0;
    transform: translate3d(42px, -10px, 0) rotate(-1.4deg) scale(.97);
    transform-origin: right top;
    transition:
      opacity .24s ease,
      transform .36s cubic-bezier(.2,.82,.24,1),
      color .2s ease,
      background .2s ease,
      border-color .2s ease;
  }

  .mobile-nav.is-open .mobile-menu-item,
  .mobile-nav.is-open .mobile-service-link,
  .mobile-nav.is-open .mobile-cta {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    transition-delay: calc(45ms + (var(--fan-index, 0) * 34ms));
  }

  .mobile-nav .mobile-menu-item {
    display: flex !important;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 2px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #f4f8fb !important;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
  }

  .mobile-nav .mobile-menu-item.is-current { color: #f1bd5f !important; }
  .mobile-nav .mobile-menu-item > span:last-child { color: #f1bd5f; font-size: 14px; }

  .mobile-services-toggle > span {
    display: grid;
    gap: 3px;
  }

  .mobile-services-toggle small {
    color: rgba(226, 240, 249, .5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .mobile-services-toggle i {
    flex: 0 0 auto;
    color: #f1bd5f;
    font-size: 12px;
  }

  .mobile-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0 18px !important;
  }

  .mobile-services-list[hidden] { display: none !important; }

  .mobile-nav .mobile-service-link {
    display: flex !important;
    min-width: 0;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 13px !important;
    border: 1px solid rgba(139, 197, 236, .14) !important;
    border-radius: 13px !important;
    background: rgba(255,255,255,.045) !important;
    color: rgba(239, 247, 252, .82) !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.28;
    text-decoration: none;
  }

  .mobile-nav .mobile-service-link > span:first-child { min-width: 0; }
  .mobile-nav .mobile-service-link > span:last-child { flex: 0 0 auto; color: #f1bd5f; }
  .mobile-nav .mobile-service-link.is-current {
    border-color: rgba(241, 189, 95, .38) !important;
    background: rgba(241, 189, 95, .09) !important;
    color: #fff !important;
  }

  .mobile-nav-main-links {
    border-top: 1px solid rgba(139, 197, 236, .13);
  }

  .mobile-nav .mobile-cta {
    display: flex !important;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px !important;
    padding: 14px 18px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #f1bd5f !important;
    box-shadow: 0 14px 34px rgba(241, 189, 95, .18);
    color: #071a33 !important;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }
}

@media (max-width: 640px) {
  .site-header.is-scrolled .header-shell { min-height: 58px; }
  .site-header.is-scrolled .brand { width: 150px; min-width: 150px; }
  .site-header.is-scrolled .brand img { width: 150px; }
  .mobile-nav-shell { width: calc(100% - 28px); padding-top: 20px; }
  .mobile-services-list { grid-template-columns: minmax(0, 1fr); gap: 7px; }
  .mobile-nav .mobile-service-link { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav:not([hidden]),
  .mobile-nav .mobile-menu-item,
  .mobile-nav .mobile-service-link,
  .mobile-nav .mobile-cta {
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
}

/* Mobile v7 — give the HOME label clear space below the sticky header. */
@media (max-width: 980px) {
  .home-hero { padding-top: 82px !important; }
}

@media (max-width: 640px) {
  .home-hero { padding-top: 72px !important; }
}
