/* ============================================================
   Secured Orbis - rebuilt static site
   Recreated from the Wayback Machine archive (2024-09-11)
   Original: WordPress (Saluta theme + Elementor)
   ============================================================ */

/* ---- Fonts: loaded via <link rel="preconnect"> + stylesheet in each page <head> for faster, non-render-blocking delivery ---- */

/* ---- Design tokens ---- */
:root {
  --primary-color: #476eec;
  --primary-hover: #3358d4;
  --primary-links-hover-color: #476eec;
  --primary-bg-color: #f7f7f7;
  --header-bg-color: #ffffff;
  --footer-bg-color: #ffffff;
  --primary-dark-color: #111826;
  --title-color: #111826;
  --text-color: #5b6472;
  --muted-color: #7a8290;
  --btn-bg-color: #476eec;
  --btn-hover-color: #111826;
  --card-bg: #ffffff;
  --border-color: #e7e9ee;
  --shadow-sm: 0 6px 20px rgba(17, 24, 38, 0.06);
  --shadow-md: 0 18px 40px rgba(17, 24, 38, 0.10);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Roboto Slab', Georgia, serif;
  --header-h: 92px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-color);
  background: var(--primary-bg-color);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-color); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--title-color);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 92px 0; }

/* ---- Section headings ---- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.section-head p { color: var(--muted-color); font-size: 18px; margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 40px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--btn-bg-color); color: #fff; }
.btn-primary:hover { background: var(--btn-hover-color); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--title-color); border-color: var(--border-color); }
.btn-outline:hover { border-color: var(--primary-color); color: var(--primary-color); }
.btn-light { background: #fff; color: var(--primary-color); }
.btn-light:hover { background: var(--primary-dark-color); color: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg-color);
  box-shadow: 0 1px 0 rgba(17, 24, 38, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand img { height: 40px; width: auto; }

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.primary-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--title-color);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav .current > a { color: var(--primary-color); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.has-dropdown.open .dropdown-toggle::after { transform: rotate(-135deg) translateY(-2px); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a { padding: 10px 14px; border-radius: 8px; font-size: 15px; }
.dropdown-menu a:hover { background: var(--primary-bg-color); }

/* Header icons + search */
.header-icons { display: flex; align-items: center; gap: 14px; }
.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #fff;
  cursor: pointer;
  color: var(--title-color);
  transition: all .2s ease;
}
.search-toggle:hover { border-color: var(--primary-color); color: var(--primary-color); }
.search-toggle svg { width: 18px; height: 18px; fill: currentColor; }

.search-panel {
  position: absolute;
  top: 100%;
  right: 24px;
  width: min(420px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px;
  display: none;
}
.search-panel.open { display: block; }
.search-panel form { display: flex; gap: 8px; }
.search-panel input[type="search"] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}
.search-panel input[type="search"]:focus { outline: none; border-color: var(--primary-color); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--title-color);
  transition: all .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-bg-color) 100%);
  padding: 72px 0 84px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-copy h1 .accent { color: var(--primary-color); }
.hero-copy p { font-size: 20px; color: var(--muted-color); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-media { position: relative; text-align: center; }
.hero-media img { margin: 0 auto; animation: floaty 6s ease-in-out infinite; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--primary-bg-color); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 76px; height: 76px;
  border-radius: 18px;
  background: rgba(71, 110, 236, 0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon img { width: 40px; height: 40px; object-fit: contain; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 15.5px; color: var(--text-color); margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 15px;
}
.card-link::after {
  content: "→";
  transition: transform .2s ease;
}
.card-link:hover::after { transform: translateX(4px); }

/* ============================================================
   FEATURE / SPLIT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.split.reverse .split-media { order: 2; }
.split-copy h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
.split-copy > p { color: var(--muted-color); font-size: 17px; margin-bottom: 28px; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-bottom: 32px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--title-color);
}
.feature-list li .check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(71, 110, 236, 0.12);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
}
.feature-list li .check svg { width: 14px; height: 14px; fill: currentColor; }

.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); margin: 0 auto; }
.split-media .stack-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.spin { animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Partners strip */
.partners { background: var(--primary-dark-color); }
.partners .section-head h2, .partners .section-head p { color: #fff; }
.partners .section-head p { color: rgba(255,255,255,0.7); }
.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px 64px;
}
.partner-row img {
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  filter: grayscale(1) brightness(2);
  transition: opacity .25s ease, filter .25s ease;
}
.partner-row img:hover { opacity: 1; filter: none; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--primary-bg-color); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: #eef1f7; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 21px; margin-bottom: 10px; }
.product-body p { font-size: 15px; color: var(--text-color); margin-bottom: 20px; flex: 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  margin-bottom: 16px;
  background: var(--primary-bg-color);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
  cursor: pointer;
}
.faq-q .icon {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
  transition: transform .3s ease;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--primary-color);
  border-radius: 2px;
}
.faq-q .icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-q .icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); transition: opacity .3s ease; }
.faq-item.open .faq-q .icon::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 26px 24px; color: var(--text-color); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--primary-color);
  background-image: linear-gradient(120deg, #476eec 0%, #3358d4 100%);
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.cta-inner p { color: rgba(255, 255, 255, 0.88); font-size: 18px; margin-bottom: 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--footer-bg-color); position: relative; }
.footer-wave { display: block; width: 100%; height: 60px; color: var(--primary-bg-color); }
.footer-wave svg { display: block; width: 100%; height: 100%; }
.footer-top { padding: 40px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 20px; }
.footer-brand address { font-style: normal; color: var(--muted-color); line-height: 1.9; }
.footer-col h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--title-color);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted-color); }
.footer-col a:hover { color: var(--primary-color); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--title-color);
}
.social-links a:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { margin: 0; color: var(--muted-color); font-size: 14.5px; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-bg-color) 100%);
  padding: 72px 0 60px;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 14px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-color); margin-bottom: 14px;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 14px; }
.page-hero p { color: var(--muted-color); font-size: 19px; max-width: 640px; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: 14px; color: var(--muted-color); }
.breadcrumb a { color: var(--muted-color); }
.breadcrumb a:hover { color: var(--primary-color); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .info-item .ico {
  flex: none; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(71,110,236,0.1); color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
}
.contact-info .info-item .ico svg { width: 22px; height: 22px; fill: currentColor; }
.contact-info .info-item h4 { margin: 0 0 4px; font-size: 17px; }
.contact-info .info-item p { margin: 0; color: var(--muted-color); }
.contact-form {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--title-color); margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--title-color);
  background: var(--primary-bg-color);
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-color); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 14px; margin-top: 6px; }
.form-note.error { color: #c0392b; }
.form-note.ok { color: #1e8b4d; }

/* Values / stats */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-grid .num { font-size: clamp(34px, 4vw, 48px); font-weight: 800; color: var(--primary-color); line-height: 1; }
.stat-grid .lbl { color: var(--muted-color); margin-top: 8px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 34px 30px;
}
.value-card .service-icon { background: rgba(71,110,236,0.08); }
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--text-color); margin: 0; }

/* Service list (our-services page) */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 40px; }
.svc-detail:nth-child(even) .svc-detail-media { order: 2; }
.svc-detail .service-icon { margin-bottom: 20px; }
.svc-detail-media img { border-radius: var(--radius-lg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .card-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }

  /* The full bar (6 links + CTA + search) needs a lot of width, so switch to
     the mobile drawer below 1200px to avoid a cramped, wrapping header. */
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 auto;
    width: min(340px, 84vw);
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    padding: 20px;
    transform: translateX(105%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .primary-nav a { padding: 14px 12px; border-radius: 10px; white-space: normal; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown:hover .dropdown-menu { opacity: 1; }
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }

  .split, .contact-grid, .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media,
  .svc-detail:nth-child(even) .svc-detail-media { order: 0; }
  .split-media { max-width: 520px; margin: 0 auto; }

  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .card-grid, .product-grid, .value-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 60px; }
  .partner-row { gap: 32px 40px; }
  .partner-row img { height: 38px; }
}

@media (max-width: 479px) {
  .stat-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* ============================================================
   TEAM (about page)
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-secondary);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #476eec, #6f8ef2);
}
.team-card h3 { font-size: 20px; margin-bottom: 4px; }
.team-card .role { color: var(--primary-color); font-weight: 500; font-size: 15px; }

@media (max-width: 991px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPLIANCE PAGE
   ============================================================ */

/* Header CTA button - visible on tablet+, hidden on phones */
.header-cta { padding: 10px 20px; font-size: 14.5px; }
@media (max-width: 767px) { .header-cta { display: none; } }

/* Hero tweaks */
.compliance-hero { padding-top: 56px; }
.hero-pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 40px;
  background: rgba(71, 110, 236, 0.1);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted-color);
}
.hero-trust .sep { color: var(--border-color); }
.check-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

/* Dashboard mockup */
.dash-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
  max-width: 460px;
  margin: 0 auto;
  animation: floaty 6s ease-in-out infinite;
}
.dash-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.dash-title { font-weight: 700; color: var(--title-color); font-size: 18px; }
.dash-sub { font-size: 13px; color: var(--muted-color); margin-top: 2px; }
.dash-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 40px;
  white-space: nowrap;
}
.dash-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  100% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
.dash-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.dash-fw { flex: none; width: 84px; font-size: 14px; font-weight: 600; color: var(--title-color); }
.dash-bar { flex: 1; height: 8px; border-radius: 8px; background: var(--primary-bg-color); overflow: hidden; }
.dash-bar i {
  display: block; height: 100%; border-radius: 8px;
  background: linear-gradient(90deg, #476eec, #6f8ef2);
  animation: growbar 1.4s ease-out;
}
@keyframes growbar { from { width: 0 !important; } }
.dash-pct { flex: none; width: 42px; text-align: right; font-size: 13px; font-weight: 600; color: var(--muted-color); }
.dash-foot {
  display: flex; gap: 16px; margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
.dash-stat { flex: 1; }
.dash-stat strong { display: block; font-size: 24px; color: var(--primary-color); line-height: 1; }
.dash-stat span { font-size: 12.5px; color: var(--muted-color); }

/* Framework strip */
.framework-strip { background: var(--primary-dark-color); padding: 40px 0; }
.strip-label {
  text-align: center; color: rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 22px;
}
.badge-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.fw-badge {
  color: #fff;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: .02em;
  padding: 6px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  opacity: .92;
}

/* Problem grid */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.problem-card {
  background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 30px 26px;
}
.problem-card .p-ico { font-size: 30px; line-height: 1; margin-bottom: 16px; }
.problem-card h3 { font-size: 18px; margin-bottom: 10px; }
.problem-card p { font-size: 14.5px; color: var(--text-color); margin: 0; }

/* Steps */
.steps { max-width: 820px; margin: 0 auto; }
.step { display: flex; gap: 24px; position: relative; padding-bottom: 34px; }
.step:not(:last-child)::before {
  content: ""; position: absolute;
  left: 27px; top: 56px; bottom: -6px;
  width: 2px; background: var(--border-color);
}
.step-num {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-secondary);
  font-size: 22px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(71, 110, 236, 0.3);
  z-index: 1;
}
.step-body { padding-top: 6px; }
.step-body h3 { font-size: 20px; margin-bottom: 6px; }
.step-body p { color: var(--muted-color); margin: 0; font-size: 15.5px; }

/* SVG feature icons */
.service-icon.svg-icon svg { width: 34px; height: 34px; fill: var(--primary-color); }

/* Frameworks detail cards */
.fw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.fw-card {
  position: relative;
  background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.fw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.fw-card h3 { font-family: var(--font-secondary); font-size: 26px; margin-bottom: 12px; color: var(--primary-color); }
.fw-card > p { font-size: 14.5px; color: var(--text-color); margin-bottom: 18px; }
.fw-tag {
  position: absolute; top: 20px; right: 20px;
  background: rgba(71, 110, 236, 0.1); color: var(--primary-color);
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 40px;
}
.tick-list { display: grid; gap: 10px; }
.tick-list li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; color: var(--title-color);
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(-45deg);
}

/* Compliance responsive */
@media (max-width: 1199px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .fw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .problem-grid { grid-template-columns: 1fr; }
  .fw-grid { grid-template-columns: 1fr; }
  .dash-card { padding: 22px; }
  .step { gap: 18px; }
  .step-num { width: 48px; height: 48px; font-size: 19px; }
  .step:not(:last-child)::before { left: 23px; }
}

/* ============================================================
   COMPLYBOSS PRODUCT PAGE
   ============================================================ */

/* Product wordmark in hero pill */
.product-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 10px;
  border-radius: 40px;
  background: rgba(71, 110, 236, 0.1);
  color: var(--primary-color);
  font-size: 14px; font-weight: 600;
  margin-bottom: 20px;
}
.product-badge .tag {
  background: var(--primary-color); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 40px; text-transform: uppercase;
}

/* Three core pillars */
.pillar-card { position: relative; border-top: 3px solid var(--primary-color); }
.pillar-step {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary-color); margin-bottom: 16px;
}
.pillar-step .n {
  width: 28px; height: 28px; border-radius: 9px;
  background: rgba(71, 110, 236, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-secondary); font-size: 14px;
}

/* Dashboard log feed (reinforces logs + evidence) */
.dash-logs { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-color); display: grid; gap: 9px; }
.dash-logline { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-color); }
.dash-logline .dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex: none; box-shadow: 0 0 0 3px rgba(34,197,94,.16); }
.dash-logline .t { margin-left: auto; font-variant-numeric: tabular-nums; color: #aeb4bf; font-size: 11.5px; }

/* Integrations logo row (reuses partners styling on light bg) */
.integrations { text-align: center; }
.int-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.int-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--border-color); border-radius: 12px;
  background: #fff; font-weight: 600; font-size: 15px; color: var(--title-color);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.int-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--primary-color); }
.int-chip .d { width: 10px; height: 10px; border-radius: 3px; background: var(--primary-color); }

/* ComplyBoss: "works with" line under the why section */
.works-with { font-size: 14px; color: var(--muted-color); margin: 4px 0 26px; }
