:root {
  --navy: #07152e;
  --blue: #0f6bff;
  --cyan: #16c7d9;
  --gold: #ffc857;
  --bg: #f5f8fd;
  --text: #172033;
  --muted: #6b7280;
  --card: #ffffff;
  --line: #e6edf7;
  --shadow: 0 18px 45px rgba(10, 31, 68, 0.1);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-body {
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 21, 46, 0.96);
  backdrop-filter: blur(10px);
  color: white;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 25px #0002;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
  font-size: 22px;
}
.brand-block b {
  display: block;
  font-size: 18px;
}
.brand-block small {
  display: block;
  color: #b9c7de;
  font-size: 12px;
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.site-nav a {
  color: #dbe7fb;
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 14px;
}
.site-nav a:hover,
.nav-pill {
  background: #173d7c;
  color: white !important;
}
.mobile-menu {
  display: none;
  background: #173d7c;
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 22px;
}
.hero,
.page-hero {
  background: radial-gradient(
      circle at 80% 20%,
      rgba(22, 199, 217, 0.25),
      transparent 28%
    ),
    linear-gradient(135deg, #07152e, #0b2c63 65%, #0f6bff);
  color: white;
}
.hero-premium {
  min-height: 610px;
  padding: 80px 7vw;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: 34px;
  align-items: center;
}
.hero-content h1,
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  margin: 14px 0 18px;
  max-width: 900px;
}
.hero-content p,
.page-hero p {
  font-size: 18px;
  color: #d9e5f6;
  max-width: 780px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 800;
  color: #0f6bff;
  background: #e8f1ff;
  border: 1px solid #d2e3ff;
  border-radius: 999px;
  padding: 7px 11px;
}
.hero .eyebrow,
.page-hero .eyebrow,
.eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), #004bd6);
  color: white;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 107, 255, 0.25);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
.light-btn {
  background: white !important;
  color: #0b2c63 !important;
}
.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-stats div {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 14px 18px;
  min-width: 140px;
}
.hero-stats b {
  display: block;
  font-size: 24px;
}
.hero-stats span {
  font-size: 13px;
  color: #c8d6ed;
}
.glass {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.check-list li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}
.wrap {
  width: min(1180px, 92vw);
  margin: auto;
}
.section {
  padding: 70px 0;
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
}
.section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 12px 0;
}
.section-head p {
  color: var(--muted);
}
.vertical-grid,
.service-grid,
.feature-grid,
.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 20px;
}
.vertical-card,
.service-card,
.feature,
.testimonial,
.blog-card,
.info-panel,
.contact-card,
.mini-price,
.price-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.vertical-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  transition: 0.2s transform;
}
.vertical-card:hover,
.service-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
}
.vertical-card:after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #eef5ff;
}
.vertical-card.tax:after {
  background: #eaf2ff;
}
.vertical-card.it:after {
  background: #e8fbff;
}
.vertical-card.qa:after {
  background: #fff4d8;
}
.icon {
  font-size: 34px;
}
.vertical-card h3,
.service-card h3 {
  font-size: 24px;
  margin: 14px 0 8px;
}
.vertical-card p,
.service-card p,
.feature p,
.testimonial,
.blog-card p {
  color: var(--muted);
}
.alt-bg {
  background: #edf4ff;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.category-chip {
  align-self: flex-start;
  background: #eef4ff;
  color: #12366d;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}
.price-tag {
  font-size: 32px;
  font-weight: 900;
  color: #0b2c63;
}
.text-link {
  color: var(--blue);
  font-weight: 900;
}
.pricing-preview {
  background: linear-gradient(135deg, #07152e, #0e3980);
  color: white;
}
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  align-items: start;
}
.mini-price-grid {
  display: grid;
  gap: 14px;
}
.mini-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}
.mini-price span {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
}
.cta-band {
  background: linear-gradient(135deg, #0f6bff, #16c7d9);
  color: white;
  border-radius: 32px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}
.testimonial b {
  display: block;
  margin-top: 16px;
  color: #0b2c63;
}
.contact-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(300px, 1.3fr);
  gap: 26px;
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.lead-form input,
.lead-form select,
.lead-form textarea,
.form input,
.form select,
.form textarea,
.search input,
.search select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d6dce8;
  border-radius: 14px;
  background: white;
}
.lead-form textarea {
  grid-column: 1/-1;
  min-height: 100px;
}
.lead-form button {
  grid-column: 1/-1;
}
.site-footer {
  background: #07152e;
  color: white;
  padding: 32px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-hero {
  padding: 78px 7vw;
}
.tax-hero {
  background: linear-gradient(135deg, #07152e, #123f86);
}
.it-hero {
  background: linear-gradient(135deg, #062330, #0f6bff);
}
.qa-hero {
  background: linear-gradient(135deg, #181226, #6d49ff);
}
.info-panel {
  margin-top: 30px;
}
.big-list {
  font-size: 18px;
  line-height: 2;
}
.pricing-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pricing-tabs button {
  border: 1px solid #d6e3f7;
  background: white;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 800;
  cursor: pointer;
}
.pricing-tabs button.active {
  background: var(--blue);
  color: white;
}
.price-section {
  margin-bottom: 22px;
}
.table-wrap {
  overflow: auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.price-table th {
  background: #f0f6ff;
}
.map-box {
  height: 220px;
  border-radius: 18px;
  background: repeating-linear-gradient(
    45deg,
    #eef4ff,
    #eef4ff 10px,
    #e3ecfb 10px,
    #e3ecfb 20px
  );
  display: grid;
  place-items: center;
  color: #5e6f8f;
  font-weight: 800;
  margin-top: 20px;
}
.blog-card h3 {
  font-size: 23px;
  margin-top: 0;
}
.top {
  background: #07152e;
  color: white;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-weight: 800;
  font-size: 22px;
}
.nav a,
.nav button {
  margin-left: 12px;
  background: #1f3b6d;
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}
.hero h1 {
  font-size: 42px;
  max-width: 850px;
}
.hero p {
  font-size: 18px;
  max-width: 780px;
}
.btn.alt {
  background: #e7eefc;
  color: #10264d;
}
.btn.danger {
  background: #dc3545;
}
.btn.good {
  background: #198754;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px #0001;
  border: 1px solid #e8edf5;
}
.card h3 {
  margin-top: 0;
}
.stat {
  font-size: 26px;
  font-weight: 800;
}
.muted {
  color: #6b7280;
}
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.side {
  width: 270px;
  background: #07152e;
  color: white;
  padding: 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
}
.side button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 11px;
  margin: 3px 0;
  cursor: pointer;
}
.side button:hover,
.side button.active {
  background: #14366d;
}
.main {
  flex: 1;
  padding: 20px;
  overflow: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 14px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 11px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
}
.table th {
  background: #eef4ff;
}
.form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.form textarea {
  min-height: 80px;
}
.modal {
  position: fixed;
  inset: 0;
  background: #0008;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal.open {
  display: flex;
}
.modal-box {
  background: white;
  width: min(1000px, 94vw);
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
  padding: 22px;
}
.badge {
  border-radius: 999px;
  padding: 4px 9px;
  background: #eef4ff;
  color: #12366d;
  font-size: 12px;
  display: inline-block;
}
.red {
  background: #ffe8e8;
  color: #8b0000;
}
.green {
  background: #e9f8ef;
  color: #075d2b;
}
.yellow {
  background: #fff8db;
  color: #6d5300;
}
.login {
  max-width: 420px;
  margin: 90px auto;
}
.hidden {
  display: none !important;
}
.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tabs button {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  background: #e7eefc;
  cursor: pointer;
}
.tabs button.active {
  background: #0f6bff;
  color: white;
}
.search {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.footer {
  padding: 30px;
  background: #07152e;
  color: white;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 880px) {
  .mobile-menu {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: #07152e;
    padding: 14px 24px;
    box-shadow: 0 12px 30px #0004;
  }
  .menu-open .site-nav {
    display: grid;
  }
  .hero-premium {
    grid-template-columns: 1fr;
    padding: 58px 6vw;
  }
  .hero-card {
    display: none;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .lead-form {
    grid-template-columns: 1fr;
  }
  .site-footer,
  .cta-band {
    display: block;
  }
  .admin-layout {
    display: block;
  }
  .side {
    width: 100%;
    height: auto;
    position: relative;
  }
  .hero h1 {
    font-size: 30px;
  }
}
.contact-hero .hero-actions {
  margin-top: 24px;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
}
.contact-form-card,
.contact-side-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.contact-form-card {
  padding: 30px;
}
.contact-side-card {
  padding: 24px;
  display: grid;
  gap: 18px;
}
.contact-title-block {
  margin-bottom: 22px;
}
.contact-title-block h2 {
  font-size: 34px;
  margin: 12px 0 8px;
}
.contact-title-block p {
  color: var(--muted);
  margin: 0;
}
.contact-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field-block {
  display: grid;
  gap: 7px;
}
.field-block.full {
  grid-column: 1/-1;
}
.field-block label {
  font-size: 13px;
  font-weight: 900;
  color: #24344d;
}
.contact-lead-form input,
.contact-lead-form select,
.contact-lead-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d6dce8;
  border-radius: 16px;
  background: #fff;
  font-size: 15px;
  outline: none;
}
.contact-lead-form input:focus,
.contact-lead-form select:focus,
.contact-lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 107, 255, 0.1);
}
.contact-lead-form textarea {
  min-height: 124px;
  resize: vertical;
}
.full-btn {
  grid-column: 1/-1;
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
}
.contact-info-box {
  background: #f7faff;
  border: 1px solid #e1ebfa;
  border-radius: 22px;
  padding: 20px;
}
.primary-info {
  background: linear-gradient(135deg, #07152e, #0d377c);
  color: white;
  border-color: transparent;
}
.primary-info h2 {
  margin-top: 0;
}
.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-line:first-of-type {
  border-top: 0;
}
.contact-line span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
}
.contact-line b {
  display: block;
}
.contact-line p {
  margin: 3px 0 0;
  color: #d9e5f6;
  word-break: break-word;
}
.contact-chip-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-chip-list span {
  background: white;
  border: 1px solid #d9e7fb;
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 800;
  color: #12366d;
  font-size: 13px;
}
.process-list {
  margin: 0;
  padding-left: 20px;
  color: #334155;
}
.process-list li {
  margin: 8px 0;
}
.contact-map-box {
  margin-top: 0;
  min-height: 190px;
  height: 190px;
}
@media (max-width: 920px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .contact-side-card {
    order: 2;
  }
  .contact-form-card {
    order: 1;
  }
  .contact-lead-form {
    grid-template-columns: 1fr;
  }
  .field-block.full,
  .full-btn {
    grid-column: auto;
  }
  .page-hero.contact-hero {
    text-align: left;
  }
  .contact-title-block h2 {
    font-size: 30px;
  }
}
@media (max-width: 520px) {
  .contact-form-card,
  .contact-side-card {
    padding: 18px;
    border-radius: 22px;
  }
  .contact-info-box {
    padding: 16px;
  }
  .contact-line {
    grid-template-columns: 36px 1fr;
  }
  .contact-line span {
    width: 36px;
    height: 36px;
  }
  .contact-hero .hero-actions {
    display: grid;
  }
  .contact-hero .hero-actions .btn {
    width: 100%;
  }
}
.client-body {
  background: #f5f7fb;
  color: #0f172a;
}
.client-wrap {
  max-width: 1180px;
}
.client-login-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  min-height: 72vh;
}
.client-login-card h1 {
  font-size: 44px;
  line-height: 1.05;
  margin: 12px 0;
}
.client-login-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}
.client-login-box input,
.client-login-box select,
.client-login-box textarea,
.client-main input,
.client-main select,
.client-main textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dbe1ea;
  border-radius: 12px;
  margin: 7px 0 14px;
  background: #fff;
}
.full {
  width: 100%;
}
.small {
  font-size: 12px;
}
.client-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #07162f, #123b72);
  color: #fff;
  border: 0;
}
.client-hero p {
  color: #dbeafe;
}
.client-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.client-layout {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 18px;
  margin-top: 18px;
}
.client-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 12px;
}
.client-nav-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
}
.client-nav-btn:hover,
.client-nav-btn.active {
  background: #eaf2ff;
  color: #0b4fb3;
}
.client-main {
  min-width: 0;
}
.client-section-title {
  margin: 4px 0 16px;
}
.client-section-title h2 {
  margin: 0;
  font-size: 28px;
}
.client-section-title p {
  margin: 5px 0;
  color: #64748b;
}
.stat-card .stat {
  font-size: 30px;
  font-weight: 900;
}
.danger-text {
  color: #dc2626;
}
.mini-progress {
  height: 10px;
  background: #e5e7eb;
  border-radius: 99px;
  overflow: hidden;
  margin: 12px 0;
}
.mini-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  border-radius: 99px;
}
.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #edf1f7;
  padding: 12px 0;
}
.service-row p {
  margin: 4px 0 0;
  color: #64748b;
}
.clean-list {
  margin: 0;
  padding-left: 20px;
}
.clean-list li {
  margin: 10px 0;
}
.service-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}
.service-card {
  border-left: 4px solid #2563eb;
}
.timeline-progress {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.step {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  min-height: 95px;
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e2e8f0;
  font-weight: 900;
  margin-bottom: 8px;
}
.step.done {
  background: #ecfdf5;
  border-color: #bbf7d0;
}
.step.done span {
  background: #16a34a;
  color: #fff;
}
.step p {
  margin: 0;
  font-weight: 700;
}
.doc-grid,
.download-grid,
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.doc-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 15px;
}
.doc-card h4 {
  margin: 0 0 8px;
}
.small-btn {
  padding: 8px 12px;
  font-size: 13px;
}
.pay-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pay-summary div {
  background: #f8fafc;
  border-radius: 18px;
  padding: 16px;
}
.pay-summary p {
  margin: 0;
  color: #64748b;
}
.pay-summary h2 {
  margin: 4px 0 0;
}
.notice-list {
  display: grid;
  gap: 12px;
}
.notice {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 14px;
  padding: 14px;
}
.notice p {
  margin: 5px 0;
  color: #475569;
}
.notice span {
  font-size: 12px;
  color: #64748b;
}
.portal-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}
.portal-timeline > div {
  position: relative;
  padding-left: 34px;
  border-left: 2px solid #dbeafe;
  margin-left: 10px;
  padding-bottom: 14px;
}
.portal-timeline span {
  position: absolute;
  left: -10px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #2563eb;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #bfdbfe;
}
.portal-timeline p {
  margin: 4px 0;
  color: #475569;
}
.portal-timeline small {
  color: #64748b;
}
.download-card,
.knowledge-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.download-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
}
.download-card span {
  display: block;
  color: #2563eb;
  margin-top: 6px;
}
.knowledge-card span {
  font-weight: 800;
  color: #2563eb;
}
.client-modal-box {
  max-width: 680px;
}
@media (max-width: 850px) {
  .client-login-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .client-login-card h1 {
    font-size: 32px;
  }
  .client-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .client-layout {
    grid-template-columns: 1fr;
  }
  .client-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .two,
  .pay-summary {
    grid-template-columns: 1fr;
  }
  .client-nav-btn {
    text-align: center;
  }
  .client-top .nav {
    display: flex;
  }
}
.qa-landing-hero {
  background: radial-gradient(
      circle at 78% 15%,
      rgba(255, 200, 87, 0.28),
      transparent 24%
    ),
    radial-gradient(
      circle at 20% 10%,
      rgba(22, 199, 217, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, #07152e, #092a5c 58%, #0f6bff);
  color: #fff;
  padding: 78px 0 68px;
  overflow: hidden;
}
.qa-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}
.qa-landing-hero h1 {
  font-size: clamp(38px, 5.3vw, 70px);
  line-height: 1.03;
  margin: 16px 0;
}
.qa-landing-hero p {
  font-size: 18px;
  color: #d9e7fb;
  max-width: 850px;
}
.qa-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.qa-trust-row span {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: 13px;
}
.qa-hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}
.qa-hero-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
}
.qa-score {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 16px;
  margin: 13px 0;
}
.qa-score b {
  display: block;
  color: #ffc857;
  font-size: 18px;
}
.qa-score span {
  display: block;
  color: #dbeafe;
  margin-top: 5px;
}
.qa-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}
.qa-value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: 0.2s transform;
}
.qa-value-card:hover {
  transform: translateY(-4px);
}
.qa-value-card span {
  font-size: 34px;
}
.qa-value-card h3 {
  font-size: 22px;
  margin: 14px 0 8px;
}
.qa-value-card p {
  color: var(--muted);
  margin: 0;
}
.qa-split h2 {
  font-size: 38px;
  line-height: 1.12;
  margin: 14px 0 18px;
}
.qa-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.qa-check-grid div {
  background: #fff;
  border: 1px solid #e1ebfa;
  border-radius: 18px;
  padding: 14px 15px;
  font-weight: 800;
  color: #12366d;
}
.qa-check-grid div:before {
  content: "✓";
  color: #0f6bff;
  margin-right: 8px;
}
.qa-report-card {
  background: linear-gradient(135deg, #07152e, #123b72);
  color: #fff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.qa-report-card h3 {
  font-size: 28px;
  margin-top: 0;
}
.dark-check li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.qa-process-band {
  background: linear-gradient(135deg, #07152e, #0b2c63);
  color: #fff;
  padding: 70px 0;
}
.light-head h2 {
  color: #fff;
}
.qa-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.qa-process-grid div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 23px;
}
.qa-process-grid b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #ffc857;
  color: #07152e;
  border-radius: 15px;
  font-size: 22px;
}
.qa-process-grid h3 {
  margin: 14px 0 7px;
}
.qa-process-grid p {
  color: #dbeafe;
  margin: 0;
}
.qa-cta p {
  color: #eaf2ff;
  margin: 0;
}
@media (max-width: 900px) {
  .qa-hero-grid {
    grid-template-columns: 1fr;
  }
  .qa-landing-hero {
    padding: 56px 0;
  }
  .qa-hero-card {
    display: block;
  }
  .qa-split h2 {
    font-size: 30px;
  }
}
.qa-premium-page {
  background: #f6f9ff;
}
.qa-pro-hero {
  position: relative;
  background: radial-gradient(
      circle at 72% 18%,
      rgba(255, 200, 87, 0.34),
      transparent 22%
    ),
    radial-gradient(
      circle at 18% 10%,
      rgba(22, 199, 217, 0.28),
      transparent 26%
    ),
    linear-gradient(135deg, #06112a 0%, #09275b 58%, #0f6bff 100%);
  color: #fff;
  padding: 86px 0 76px;
  overflow: hidden;
}
.qa-pro-hero:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}
.qa-pro-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 42px;
  align-items: center;
}
.qa-pro-copy h1 {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 0.99;
  margin: 18px 0 20px;
  letter-spacing: -0.045em;
}
.qa-pro-copy p {
  font-size: 19px;
  color: #dbeafe;
  max-width: 780px;
}
.qa-pro-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 760px;
}
.qa-pro-proof span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 15px;
  color: #dbeafe;
}
.qa-pro-proof b {
  display: block;
  color: #ffc857;
  font-size: 20px;
}
.qa-pro-form-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  padding: 28px;
  backdrop-filter: blur(14px);
}
.qa-pro-form-card h2 {
  font-size: 32px;
  margin: 8px 0 4px;
}
.qa-pro-form-card p {
  color: #dbeafe;
  margin: 0 0 18px;
}
.form-badge {
  display: inline-flex;
  background: #ffc857;
  color: #07152e;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.qa-lead-form {
  display: grid;
  gap: 11px;
}
.qa-lead-form input,
.qa-lead-form select,
.qa-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: #101827;
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
.qa-lead-form textarea {
  min-height: 92px;
  resize: vertical;
}
.qa-lead-form input:focus,
.qa-lead-form select:focus,
.qa-lead-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(22, 199, 217, 0.25);
  border-color: #16c7d9;
}
.qa-logo-band {
  background: #fff;
  border-bottom: 1px solid #e3ebf7;
}
.qa-logo-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.qa-logo-row span {
  color: #64748b;
  font-weight: 800;
}
.qa-logo-row b {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid #e3ebf7;
  background: #f8fbff;
  color: #12366d;
}
.qa-stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 46px;
  padding-bottom: 46px;
}
.qa-stat-card {
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.qa-stat-card strong {
  display: block;
  font-size: 34px;
  color: #0f6bff;
  line-height: 1;
}
.qa-stat-card span {
  display: block;
  color: #667085;
  margin-top: 10px;
}
.qa-service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.qa-service-cards article {
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 14px 38px rgba(10, 31, 68, 0.08);
  transition: 0.18s transform, 0.18s box-shadow;
}
.qa-service-cards article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(10, 31, 68, 0.14);
}
.qa-service-cards span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #eaf3ff;
  font-size: 26px;
}
.qa-service-cards h3 {
  font-size: 21px;
  margin: 18px 0 8px;
}
.qa-service-cards p {
  margin: 0;
  color: #667085;
}
.qa-dark-section {
  background: linear-gradient(135deg, #07152e, #0b2c63);
  color: #fff;
  padding: 78px 0;
}
.qa-split-premium {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.qa-split-premium h2 {
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.06;
  margin: 15px 0;
}
.qa-split-premium p {
  color: #dbeafe;
  font-size: 17px;
}
.qa-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.qa-why-grid div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 22px;
}
.qa-why-grid b {
  color: #ffc857;
}
.qa-why-grid h3 {
  margin: 10px 0 8px;
}
.qa-why-grid p {
  margin: 0;
  color: #dbeafe;
}
.qa-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.qa-model-grid div {
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 28px;
  padding: 25px;
  box-shadow: var(--shadow);
}
.qa-model-grid h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.qa-model-grid p {
  color: #667085;
}
.qa-model-grid a {
  font-weight: 900;
  color: #0f6bff;
}
.qa-tools-section {
  background: #edf5ff;
  padding: 72px 0;
}
.qa-tool-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.qa-tool-tabs div {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 22px;
}
.qa-tool-tabs h3 {
  margin: 0 0 8px;
  color: #0b2c63;
}
.qa-tool-tabs p {
  margin: 0;
  color: #667085;
  font-weight: 700;
}
.qa-process-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: start;
}
.qa-process-layout h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  margin: 14px 0;
}
.qa-process-layout > div > p {
  color: #667085;
  font-size: 17px;
}
.qa-timeline {
  display: grid;
  gap: 16px;
  position: relative;
}
.qa-timeline div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(10, 31, 68, 0.07);
}
.qa-timeline b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: #0f6bff;
  color: #fff;
  font-size: 22px;
}
.qa-timeline h3 {
  margin: 0 0 5px;
}
.qa-timeline p {
  grid-column: 2;
  margin: 0;
  color: #667085;
}
.qa-industry-section {
  background: radial-gradient(
      circle at 10% 0,
      rgba(22, 199, 217, 0.22),
      transparent 24%
    ),
    linear-gradient(135deg, #07152e, #08204a);
  color: #fff;
  padding: 74px 0;
}
.qa-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.qa-industry-grid span {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  padding: 17px;
  text-align: center;
  font-weight: 900;
}
.qa-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.qa-faq-grid details {
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.06);
}
.qa-faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  color: #0b2c63;
}
.qa-faq-grid p {
  color: #667085;
  margin: 10px 0 0;
}
.qa-final-cta {
  background: linear-gradient(135deg, #0f6bff, #07152e);
}
@media (max-width: 1050px) {
  .qa-pro-hero-grid,
  .qa-split-premium,
  .qa-process-layout {
    grid-template-columns: 1fr;
  }
  .qa-stats-section,
  .qa-service-cards,
  .qa-model-grid,
  .qa-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qa-pro-proof {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .qa-pro-hero {
    padding: 54px 0;
  }
  .qa-pro-copy h1 {
    font-size: 38px;
  }
  .qa-pro-form-card {
    padding: 21px;
    border-radius: 24px;
  }
  .qa-stats-section,
  .qa-service-cards,
  .qa-model-grid,
  .qa-tool-tabs,
  .qa-industry-grid,
  .qa-faq-grid,
  .qa-why-grid {
    grid-template-columns: 1fr;
  }
  .qa-timeline div {
    grid-template-columns: 1fr;
  }
  .qa-timeline p {
    grid-column: 1;
  }
  .qa-pro-proof {
    grid-template-columns: 1fr;
  }
  .qa-logo-row {
    justify-content: flex-start;
    padding: 16px 0;
  }
}
html {
  scroll-behavior: smooth;
}
.qa-v20-page {
  background: #f6f9ff;
  color: #0b1736;
  overflow-x: hidden;
}
.qa20-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 56px;
  background: linear-gradient(135deg, #071225 0%, #0b2d68 48%, #0967e8 100%);
  color: #fff;
}
.qa20-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  z-index: -2;
}
.qa20-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.72;
  z-index: -1;
  animation: qa20Float 7s ease-in-out infinite alternate;
}
.qa20-orb-one {
  width: 360px;
  height: 360px;
  background: rgba(33, 219, 255, 0.27);
  top: 40px;
  right: 10%;
}
.qa20-orb-two {
  width: 280px;
  height: 280px;
  background: rgba(255, 200, 87, 0.2);
  bottom: -90px;
  left: 9%;
  animation-delay: 1.5s;
}
@keyframes qa20Float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(22px);
  }
}
.qa20-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 42px;
  align-items: center;
}
.qa20-kicker,
.qa20-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: #1570ef;
}
.qa20-kicker {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #d9f5ff;
  backdrop-filter: blur(12px);
}
.qa20-kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #21dbff;
  box-shadow: 0 0 0 7px rgba(33, 219, 255, 0.16);
}
.qa20-hero-copy h1 {
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 20px 0 18px;
  max-width: 920px;
}
.qa20-hero-text {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: #dcecff;
  max-width: 760px;
  margin: 0 0 28px;
}
.qa20-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.qa20-actions-center {
  justify-content: center;
}
.btn.qa20-primary {
  background: linear-gradient(135deg, #21dbff, #0f6bff);
  border: 0;
  color: #fff;
  box-shadow: 0 18px 36px rgba(15, 107, 255, 0.28);
  transition: 0.22s ease;
}
.btn.qa20-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(15, 107, 255, 0.36);
}
.btn.qa20-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn.qa20-secondary-light {
  background: #fff;
  color: #0b2d68;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}
.qa20-full {
  width: 100%;
  justify-content: center;
}
.qa20-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.qa20-trust-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}
.qa20-trust-row b {
  display: block;
  font-size: 27px;
  line-height: 1;
  color: #fff;
}
.qa20-trust-row span {
  display: block;
  color: #cfe8ff;
  margin-top: 7px;
  font-weight: 750;
  font-size: 13px;
}
.qa20-hero-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 16px;
  align-items: center;
}
.qa20-dashboard-card,
.qa20-form-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  border-radius: 32px;
  backdrop-filter: blur(22px);
}
.qa20-dashboard-card {
  padding: 22px;
  transform: translateY(26px);
}
.qa20-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  color: #dcecff;
}
.qa20-card-top b {
  color: #ffc857;
}
.qa20-quality-ring {
  width: 152px;
  height: 152px;
  margin: 24px auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 48px;
  font-weight: 950;
  background: conic-gradient(#21dbff 0 92%, rgba(255, 255, 255, 0.16) 92% 100%);
  box-shadow: inset 0 0 0 14px rgba(7, 18, 37, 0.56);
}
.qa20-quality-ring span {
  font-size: 19px;
}
.qa20-mini-bars {
  display: grid;
  gap: 10px;
}
.qa20-mini-bars p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  color: #dcecff;
}
.qa20-mini-bars b {
  color: #fff;
}
.qa20-form-card {
  padding: 26px;
}
.qa20-form-card h2 {
  font-size: 29px;
  margin: 10px 0 5px;
}
.qa20-form-card p {
  margin: 0 0 16px;
  color: #dcecff;
}
.qa20-form-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffc857;
  color: #071225;
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
}
.qa20-lead-form {
  display: grid;
  gap: 11px;
}
.qa20-lead-form input,
.qa20-lead-form select,
.qa20-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
.qa20-lead-form textarea {
  min-height: 92px;
  resize: vertical;
}
.qa20-lead-form input:focus,
.qa20-lead-form select:focus,
.qa20-lead-form textarea:focus {
  border-color: #21dbff;
  box-shadow: 0 0 0 4px rgba(33, 219, 255, 0.22);
}
.qa20-logo-strip {
  background: #fff;
  border-bottom: 1px solid #e5edf8;
}
.qa20-logo-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}
.qa20-logo-wrap span {
  color: #667085;
  font-weight: 900;
}
.qa20-logo-wrap b {
  padding: 10px 15px;
  border: 1px solid #d9e7fb;
  background: #f8fbff;
  border-radius: 999px;
  color: #0b2d68;
  box-shadow: 0 8px 20px rgba(11, 45, 104, 0.05);
}
.qa20-section {
  padding: 76px 0;
}
.qa20-section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 36px;
}
.qa20-section-head h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 12px 0;
  color: #0b1736;
}
.qa20-section-head p {
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
  margin: 0;
}
.qa20-light-head h2,
.qa20-light-head p {
  color: #fff;
}
.qa20-light-head p {
  opacity: 0.82;
}
.qa20-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.qa20-value-grid article,
.qa20-deliverable-grid article {
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(11, 45, 104, 0.08);
  transition: 0.22s ease;
}
.qa20-value-grid article:hover,
.qa20-deliverable-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(11, 45, 104, 0.13);
}
.qa20-value-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e8f8ff, #edf4ff);
  font-size: 28px;
}
.qa20-value-grid h3,
.qa20-deliverable-grid h3 {
  font-size: 23px;
  margin: 18px 0 9px;
  color: #0b2d68;
}
.qa20-value-grid p {
  color: #667085;
  margin: 0;
  line-height: 1.65;
}
.qa20-center-cta {
  text-align: center;
  margin-top: 30px;
}
.qa20-gradient-section {
  position: relative;
  padding: 82px 0;
  background: radial-gradient(
      circle at 15% 10%,
      rgba(33, 219, 255, 0.24),
      transparent 28%
    ),
    linear-gradient(135deg, #071225, #0b2d68 52%, #0a7ce9);
  color: #fff;
  overflow: hidden;
}
.qa20-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.qa20-service-grid article {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  padding: 28px;
  backdrop-filter: blur(14px);
  transition: 0.22s ease;
  overflow: hidden;
}
.qa20-service-grid article:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -44px;
  bottom: -44px;
  border-radius: 50%;
  background: rgba(33, 219, 255, 0.16);
}
.qa20-service-grid article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.16);
}
.qa20-service-grid div {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffc857;
  color: #071225;
  font-weight: 950;
}
.qa20-service-grid h3 {
  font-size: 24px;
  margin: 20px 0 9px;
  color: #fff;
}
.qa20-service-grid p {
  color: #dcecff;
  line-height: 1.65;
  margin: 0;
}
.qa20-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: start;
}
.qa20-split h2 {
  font-size: clamp(31px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 13px 0;
  color: #0b1736;
}
.qa20-split p {
  color: #667085;
  line-height: 1.75;
  font-size: 17px;
}
.qa20-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.qa20-process-grid article {
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(11, 45, 104, 0.07);
  transition: 0.22s ease;
}
.qa20-process-grid article:hover {
  transform: translateY(-4px);
  border-color: #b9d6ff;
}
.qa20-process-grid b {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 15px;
  background: #0f6bff;
  color: #fff;
  font-size: 20px;
}
.qa20-process-grid h3 {
  margin: 14px 0 7px;
  color: #0b2d68;
}
.qa20-process-grid p {
  margin: 0;
  color: #667085;
}
.qa20-industries {
  padding: 78px 0;
  background: linear-gradient(135deg, #071225, #111f45);
  color: #fff;
}
.qa20-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.qa20-industry-grid span {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 22px 18px 22px 48px;
  font-weight: 950;
  transition: 0.2s ease;
}
.qa20-industry-grid span:before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #21dbff;
  color: #071225;
  font-weight: 950;
}
.qa20-industry-grid span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}
.qa20-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.qa20-deliverable-grid ul {
  margin: 12px 0 0;
  padding-left: 19px;
  color: #667085;
  line-height: 1.8;
}
.qa20-report-preview {
  max-width: 840px;
  margin: 28px auto 0;
  background: #071225;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 18, 37, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.qa20-report-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0f6bff, #21dbff);
}
.qa20-report-header span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
}
.qa20-report-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.qa20-report-row span {
  color: #aebfd7;
}
.qa20-audit-band {
  padding: 58px 0;
  background: linear-gradient(135deg, #0f6bff, #21dbff);
  color: #fff;
}
.qa20-audit-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.qa20-audit-grid h2 {
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.05;
  margin: 10px 0;
}
.qa20-audit-grid p {
  font-size: 17px;
  color: #eaf7ff;
  margin: 0;
}
.qa20-audit-grid .qa20-eyebrow {
  color: #fff;
}
.qa20-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.qa20-faq details {
  background: #fff;
  border: 1px solid #e3ebf7;
  border-radius: 22px;
  padding: 19px 20px;
  box-shadow: 0 14px 38px rgba(11, 45, 104, 0.06);
  transition: 0.2s ease;
}
.qa20-faq details:hover {
  border-color: #b9d6ff;
}
.qa20-faq summary {
  cursor: pointer;
  font-weight: 950;
  color: #0b2d68;
  font-size: 17px;
}
.qa20-faq p {
  color: #667085;
  line-height: 1.7;
  margin: 12px 0 0;
}
.qa20-final-cta {
  text-align: center;
  color: #fff;
  padding: 82px 0;
  background: radial-gradient(
      circle at 50% 0,
      rgba(33, 219, 255, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #071225, #0b2d68);
}
.qa20-final-cta h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 13px;
}
.qa20-final-cta p {
  color: #dcecff;
  font-size: 18px;
  margin: 0 auto 26px;
  max-width: 720px;
}
.qa20-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 40;
  background: #20c45a;
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(32, 196, 90, 0.35);
  text-decoration: none;
}
.qa20-mobile-enquiry {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 41;
  background: linear-gradient(135deg, #21dbff, #0f6bff);
  color: #fff;
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(15, 107, 255, 0.34);
  text-decoration: none;
}
@media (max-width: 1120px) {
  .qa20-hero-grid,
  .qa20-split {
    grid-template-columns: 1fr;
  }
  .qa20-hero-panel {
    max-width: 900px;
  }
  .qa20-trust-row,
  .qa20-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .qa20-hero {
    padding: 62px 0 42px;
  }
  .qa20-hero-panel {
    grid-template-columns: 1fr;
  }
  .qa20-dashboard-card {
    transform: none;
  }
  .qa20-value-grid,
  .qa20-deliverable-grid,
  .qa20-industry-grid {
    grid-template-columns: 1fr;
  }
  .qa20-process-grid,
  .qa20-faq {
    grid-template-columns: 1fr;
  }
  .qa20-audit-grid {
    display: block;
    text-align: center;
  }
  .qa20-audit-grid .btn {
    margin-top: 22px;
  }
  .qa20-report-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .qa20-whatsapp {
    bottom: 78px;
  }
}
@media (max-width: 620px) {
  .qa20-hero-copy h1 {
    font-size: 38px;
    letter-spacing: -0.04em;
  }
  .qa20-trust-row {
    grid-template-columns: 1fr 1fr;
  }
  .qa20-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .qa20-form-card {
    padding: 20px;
    border-radius: 25px;
  }
  .qa20-logo-wrap {
    justify-content: flex-start;
    padding: 16px 0;
  }
  .qa20-section {
    padding: 56px 0;
  }
  .qa20-service-grid {
    grid-template-columns: 1fr;
  }
  .qa20-mobile-enquiry {
    display: block;
  }
  .qa20-whatsapp {
    display: none;
  }
  .qa20-final-cta {
    padding-bottom: 96px;
  }
}
.qa21-page {
  background: #f6f9ff;
  color: #0b1736;
  overflow-x: hidden;
}
.qa21-page * {
  box-sizing: border-box;
}
.qa21-page .site-header {
  background: linear-gradient(90deg, #07152e, #0b2d68);
  color: #fff;
  border-bottom: 1px solid rgba(33, 219, 255, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}
.qa21-page .brand-block b {
  color: #fff;
}
.qa21-page .brand-block small {
  color: #b9d7ff;
}
.qa21-page .site-nav a {
  color: #dbeafe;
}
.qa21-page .site-nav a:hover,
.qa21-page .site-nav .nav-pill {
  background: rgba(33, 219, 255, 0.16);
  color: #fff !important;
  box-shadow: inset 0 -2px 0 #21dbff;
}
.qa21-page .mobile-menu {
  background: #173d7c;
  color: #fff;
}
.qa21-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background: radial-gradient(
      circle at 15% 10%,
      rgba(33, 219, 255, 0.28),
      transparent 34%
    ),
    radial-gradient(
      circle at 84% 16%,
      rgba(58, 122, 255, 0.34),
      transparent 32%
    ),
    linear-gradient(135deg, #061228 0%, #09235a 48%, #071225 100%);
  color: #fff;
}
.qa21-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, #f6f9ff);
  pointer-events: none;
}
.qa21-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.55;
  pointer-events: none;
}
.qa21-glow-a {
  width: 360px;
  height: 360px;
  left: -130px;
  top: 90px;
  background: #21dbff;
}
.qa21-glow-b {
  width: 440px;
  height: 440px;
  right: -170px;
  top: 20px;
  background: #0f6bff;
}
.qa21-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: 34px;
  align-items: center;
}
.qa21-kicker,
.qa21-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 950;
  color: #24dcff;
}
.qa21-kicker span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #24dcff;
  box-shadow: 0 0 0 7px rgba(33, 219, 255, 0.14);
}
.qa21-hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #fff;
  max-width: 890px;
}
.qa21-subhead {
  max-width: 780px;
  margin: 0;
  color: #d9e8ff;
  font-size: 19px;
  line-height: 1.75;
}
.qa21-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.qa21-actions-center {
  justify-content: center;
}
.qa21-btn-main {
  background: linear-gradient(135deg, #21dbff, #0f6bff);
  color: #fff !important;
  border: 0;
  box-shadow: 0 18px 44px rgba(15, 107, 255, 0.34);
}
.qa21-btn-line {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: none;
}
.qa21-btn-white {
  background: #fff;
  color: #0b2d68 !important;
  border: 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}
.qa21-btn-main:hover,
.qa21-btn-line:hover,
.qa21-btn-white:hover {
  transform: translateY(-3px);
}
.qa21-full {
  width: 100%;
  justify-content: center;
}
.qa21-trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 34px;
  max-width: 860px;
}
.qa21-trust-cards article {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.qa21-trust-cards b {
  display: block;
  font-size: 25px;
  color: #fff;
  line-height: 1;
}
.qa21-trust-cards span {
  display: block;
  margin-top: 8px;
  color: #cfe0ff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
}
.qa21-hero-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.qa21-score-card,
.qa21-form-card {
  background: rgba(255, 255, 255, 0.96);
  color: #0b1736;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  padding: 25px;
}
.qa21-score-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(235, 247, 255, 0.96)
  );
}
.qa21-score-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #667085;
  font-weight: 850;
}
.qa21-score-top b {
  color: #0f6bff;
}
.qa21-score-wrap {
  display: grid;
  place-items: center;
  padding: 20px 0 12px;
}
.qa21-score-ring {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#21dbff 0 92%, #dde9f7 92% 100%);
  position: relative;
  box-shadow: 0 22px 50px rgba(15, 107, 255, 0.18);
}
.qa21-score-ring:after {
  content: "";
  position: absolute;
  inset: 14px;
  background: #fff;
  border-radius: 50%;
}
.qa21-score-ring strong,
.qa21-score-ring small {
  position: relative;
  z-index: 2;
  grid-area: 1/1;
}
.qa21-score-ring strong {
  font-size: 48px;
  letter-spacing: -0.06em;
  color: #071225;
}
.qa21-score-ring small {
  margin-top: 70px;
  color: #667085;
  font-weight: 950;
}
.qa21-score-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f2f7ff;
  color: #667085;
  font-weight: 800;
}
.qa21-score-list b {
  color: #0b2d68;
}
.qa21-form-tag {
  display: inline-flex;
  background: #e7f7ff;
  color: #0f6bff;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.qa21-form-card h2 {
  margin: 14px 0 8px;
  color: #071225;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.qa21-form-card p {
  margin: 0 0 16px;
  color: #667085;
  line-height: 1.6;
}
.qa21-lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.qa21-lead-form input,
.qa21-lead-form select,
.qa21-lead-form textarea {
  width: 100%;
  border: 1px solid #d9e5f4;
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  outline: none;
  color: #0b1736;
}
.qa21-lead-form textarea,
.qa21-lead-form button {
  grid-column: 1/-1;
}
.qa21-lead-form textarea {
  min-height: 92px;
  resize: vertical;
}
.qa21-lead-form input:focus,
.qa21-lead-form select:focus,
.qa21-lead-form textarea:focus {
  border-color: #0f6bff;
  box-shadow: 0 0 0 4px rgba(15, 107, 255, 0.1);
}
.qa21-trusted {
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid #e6eef8;
}
.qa21-trusted h2 {
  text-align: center;
  margin: 0 0 18px;
  color: #0b2d68;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.03em;
}
.qa21-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.qa21-badges span {
  padding: 11px 15px;
  border: 1px solid #d9e8f8;
  background: #f7fbff;
  border-radius: 999px;
  color: #0b2d68;
  font-weight: 950;
}
.qa21-section {
  padding: 82px 0;
}
.qa21-section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 36px;
}
.qa21-section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #071225;
}
.qa21-section-head p {
  margin: 0 auto;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}
.qa21-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.qa21-card-grid article {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 16px 45px rgba(11, 45, 104, 0.07);
  transition: 0.22s ease;
}
.qa21-card-grid article:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #21dbff, #0f6bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.22s ease;
}
.qa21-card-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(11, 45, 104, 0.13);
  border-color: #b7d7ff;
}
.qa21-card-grid article:hover:before {
  transform: scaleX(1);
}
.qa21-card-grid span {
  font-size: 30px;
}
.qa21-card-grid h3 {
  margin: 16px 0 8px;
  color: #0b2d68;
  font-size: 21px;
}
.qa21-card-grid p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}
.qa21-center {
  text-align: center;
  margin-top: 30px;
}
.qa21-dark-section,
.qa21-industries,
.qa21-testimonials,
.qa21-final-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background: radial-gradient(
      circle at 20% 0,
      rgba(33, 219, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, #071225, #0b2d68);
  color: #fff;
}
.qa21-light-head h2,
.qa21-light-head p {
  color: #fff;
}
.qa21-light-head p {
  color: #d7e7ff;
}
.qa21-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.qa21-service-grid article {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 25px;
  min-height: 255px;
  transition: 0.25s ease;
}
.qa21-service-grid article:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(33, 219, 255, 0.55);
}
.qa21-service-grid em {
  font-style: normal;
  color: #7beaff;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.qa21-service-grid i {
  display: block;
  font-style: normal;
  font-size: 34px;
  margin: 18px 0;
}
.qa21-service-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #fff;
}
.qa21-service-grid p {
  color: #d6e7ff;
  line-height: 1.7;
  margin: 0 0 18px;
}
.qa21-service-grid a {
  color: #7beaff;
  text-decoration: none;
  font-weight: 950;
}
.qa21-process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.qa21-process-line article {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 15px 42px rgba(11, 45, 104, 0.07);
  transition: 0.2s ease;
}
.qa21-process-line article:hover {
  transform: translateY(-5px);
  border-color: #bad7ff;
}
.qa21-process-line b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #21dbff, #0f6bff);
  color: #fff;
  font-size: 20px;
}
.qa21-process-line h3 {
  font-size: 18px;
  margin: 16px 0 8px;
  color: #0b2d68;
}
.qa21-process-line p {
  margin: 0;
  color: #667085;
  line-height: 1.55;
  font-size: 14px;
}
.qa21-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.qa21-industry-grid span {
  position: relative;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 22px 18px 22px 48px;
  font-weight: 950;
}
.qa21-industry-grid span:before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #21dbff;
  color: #071225;
  font-weight: 950;
}
.qa21-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.qa21-deliverable-grid article {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 22px;
  padding: 18px 20px;
  font-weight: 950;
  color: #0b2d68;
  box-shadow: 0 13px 35px rgba(11, 45, 104, 0.06);
}
.qa21-table-card {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e3ecf7;
  box-shadow: 0 24px 70px rgba(11, 45, 104, 0.12);
}
.qa21-table-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(135deg, #071225, #0b2d68);
  color: #fff;
}
.qa21-table-title h3 {
  margin: 0;
  font-size: 24px;
}
.qa21-table-title span {
  background: rgba(33, 219, 255, 0.16);
  border: 1px solid rgba(33, 219, 255, 0.24);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 850;
}
.qa21-table-wrap {
  overflow-x: auto;
}
.qa21-table-card table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.qa21-table-card th,
.qa21-table-card td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e9f0f8;
  color: #344054;
}
.qa21-table-card th {
  color: #0b2d68;
  background: #f7fbff;
}
.sev {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
}
.sev.critical {
  background: #ffe7e7;
  color: #b42318;
}
.sev.high {
  background: #fff0d7;
  color: #b54708;
}
.sev.medium {
  background: #e9f7ff;
  color: #026aa2;
}
.sev.low {
  background: #ecfdf3;
  color: #027a48;
}
.qa21-case-study {
  padding: 82px 0;
  background: linear-gradient(135deg, #0f6bff, #21dbff);
  color: #fff;
}
.qa21-case-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
}
.qa21-case-grid h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  margin: 12px 0;
  color: #fff;
  letter-spacing: -0.045em;
}
.qa21-case-grid p {
  color: #effbff;
  font-size: 18px;
  line-height: 1.7;
}
.qa21-case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.qa21-case-stats article {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  padding: 24px;
}
.qa21-case-stats article:last-child {
  grid-column: 1/-1;
}
.qa21-case-stats b {
  display: block;
  font-size: 40px;
  letter-spacing: -0.05em;
  color: #fff;
}
.qa21-case-stats span {
  color: #eafaff;
  font-weight: 850;
}
.qa21-pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.qa21-pricing-grid article {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 27px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(11, 45, 104, 0.07);
  transition: 0.22s ease;
}
.qa21-pricing-grid article:hover {
  transform: translateY(-6px);
  border-color: #add3ff;
}
.qa21-pricing-grid h3 {
  margin: 0 0 16px;
  color: #0b2d68;
}
.qa21-pricing-grid b {
  display: block;
  font-size: 23px;
  color: #071225;
  letter-spacing: -0.03em;
}
.qa21-pricing-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: #0f6bff;
  text-decoration: none;
  font-weight: 950;
}
.qa21-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.qa21-testimonial-grid article {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 26px;
}
.qa21-testimonial-grid p {
  font-size: 18px;
  line-height: 1.7;
  color: #e1efff;
  margin: 0 0 18px;
}
.qa21-testimonial-grid b {
  color: #fff;
}
.qa21-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.qa21-faq-grid details {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 22px;
  padding: 19px 20px;
  box-shadow: 0 14px 38px rgba(11, 45, 104, 0.06);
}
.qa21-faq-grid summary {
  cursor: pointer;
  font-weight: 950;
  color: #0b2d68;
  font-size: 17px;
}
.qa21-faq-grid p {
  color: #667085;
  line-height: 1.7;
  margin: 12px 0 0;
}
.qa21-final-cta {
  text-align: center;
}
.qa21-final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
  color: #fff;
}
.qa21-final-cta p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
  color: #dcecff;
}
.qa21-floating-wa {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 45;
  background: #20c45a;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 20px 45px rgba(32, 196, 90, 0.38);
}
.qa21-mobile-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 46;
  background: #fff;
  border: 1px solid #d9e8f8;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(7, 18, 37, 0.24);
  gap: 8px;
}
.qa21-mobile-bar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 10px;
  font-weight: 950;
}
.qa21-mobile-bar a:first-child {
  background: #20c45a;
  color: #fff;
}
.qa21-mobile-bar a:last-child {
  background: linear-gradient(135deg, #21dbff, #0f6bff);
  color: #fff;
}
@media (max-width: 1180px) {
  .qa21-hero-grid {
    grid-template-columns: 1fr;
  }
  .qa21-hero-side {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .qa21-process-line {
    grid-template-columns: repeat(3, 1fr);
  }
  .qa21-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .qa21-trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .qa21-hero {
    padding: 62px 0 50px;
  }
  .qa21-hero-side,
  .qa21-card-grid,
  .qa21-service-grid,
  .qa21-case-grid,
  .qa21-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .qa21-industry-grid,
  .qa21-deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qa21-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qa21-faq-grid {
    grid-template-columns: 1fr;
  }
  .qa21-floating-wa {
    display: none;
  }
  .qa21-mobile-bar {
    display: flex;
  }
  .qa21-final-cta {
    padding-bottom: 98px;
  }
  .qa21-case-stats article:last-child {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .qa21-hero-copy h1 {
    font-size: 39px;
  }
  .qa21-subhead {
    font-size: 16px;
  }
  .qa21-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .qa21-trust-cards,
  .qa21-lead-form,
  .qa21-process-line,
  .qa21-industry-grid,
  .qa21-deliverable-grid,
  .qa21-pricing-grid,
  .qa21-case-stats {
    grid-template-columns: 1fr;
  }
  .qa21-score-card,
  .qa21-form-card {
    border-radius: 25px;
    padding: 20px;
  }
  .qa21-section,
  .qa21-dark-section,
  .qa21-industries,
  .qa21-case-study,
  .qa21-testimonials,
  .qa21-final-cta {
    padding: 58px 0;
  }
  .qa21-section-head h2 {
    font-size: 32px;
  }
  .qa21-table-title {
    display: block;
  }
  .qa21-table-title span {
    display: inline-flex;
    margin-top: 10px;
  }
  .qa21-badges {
    justify-content: flex-start;
  }
  .qa21-mobile-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .qa21-page .site-footer {
    padding-bottom: 84px;
  }
}
.site-nav a.active {
  background: #173d7c;
  color: #fff !important;
  box-shadow: inset 0 -2px 0 #16c7d9;
}
.seo-page {
  background: #f5f8fd;
}
.seo-hero {
  background: radial-gradient(
      circle at 80% 15%,
      rgba(22, 199, 217, 0.28),
      transparent 32%
    ),
    linear-gradient(135deg, #07152e, #0b2c63 68%, #0f6bff);
  color: #fff;
  padding: 74px 0;
}
.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 34px;
  align-items: center;
}
.seo-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 14px 0;
}
.seo-hero p {
  font-size: 18px;
  color: #dce8ff;
  line-height: 1.75;
  max-width: 780px;
}
.seo-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.seo-badges span,
.seo-market-grid span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
}
.seo-form-card {
  background: #fff;
  color: #172033;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
}
.seo-form-card h2 {
  margin: 0 0 14px;
  color: #07152e;
}
.seo-lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.seo-lead-form input,
.seo-lead-form textarea {
  width: 100%;
  border: 1px solid #d9e5f4;
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
.seo-lead-form textarea,
.seo-lead-form button,
.seo-lead-form .form-note {
  grid-column: 1/-1;
}
.seo-lead-form textarea {
  min-height: 92px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.seo-card-grid article {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 42px rgba(10, 31, 68, 0.08);
  transition: 0.22s ease;
}
.seo-card-grid article:hover {
  transform: translateY(-5px);
  border-color: #9dcbff;
}
.seo-card-grid h3 {
  margin: 0 0 10px;
  color: #0b2c63;
}
.seo-card-grid p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}
.seo-market-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  text-align: center;
}
.seo-market-grid span {
  background: #fff;
  color: #0b2c63;
  border: 1px solid #e3ecf7;
}
.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.seo-faq-grid details {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(10, 31, 68, 0.06);
}
.seo-faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  color: #0b2c63;
}
.seo-faq-grid p {
  color: #667085;
  line-height: 1.7;
}
.seo-footer a {
  color: #dbe7fb;
  text-decoration: underline;
}
.mobile-seo-cta {
  display: none;
}
@media (max-width: 900px) {
  .seo-hero-grid {
    grid-template-columns: 1fr;
  }
  .seo-card-grid,
  .seo-market-grid,
  .seo-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .seo-form-card {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .seo-hero {
    padding: 50px 0;
  }
  .seo-card-grid,
  .seo-market-grid,
  .seo-faq-grid,
  .seo-lead-form {
    grid-template-columns: 1fr;
  }
  .seo-hero h1 {
    font-size: 38px;
  }
  .seo-form-card {
    border-radius: 22px;
  }
  .qa21-floating-wa {
    bottom: 84px;
  }
  .site-footer {
    padding-bottom: 88px;
  }
}
.vkn-footer {
  background: radial-gradient(
      circle at 85% 10%,
      rgba(22, 199, 217, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #07152e, #0b244f 64%, #061126);
  color: #eaf3ff;
  padding: 0 !important;
  display: block !important;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.vkn-footer-wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 54px 0 24px;
}
.vkn-footer a {
  color: #dbeafe;
  text-decoration: none;
  transition: 0.2s ease;
}
.vkn-footer a:hover {
  color: #38d9ff;
  transform: translateX(3px);
}
.vkn-footer-brand {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vkn-footer-logo {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  background: #07172f;
  box-shadow: 0 18px 45px rgba(15, 107, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.vkn-footer h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: #fff;
}
.vkn-footer-brand p {
  margin: 0;
  max-width: 850px;
  color: #b9c7de;
  line-height: 1.75;
}
.vkn-footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.vkn-footer-badges span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  color: #e7f4ff;
}
.vkn-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 34px 0;
}
.vkn-footer-col h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.vkn-footer-col a {
  display: block;
  margin: 9px 0;
  color: #c7d7ee;
  font-size: 14px;
}
.vkn-footer-contact p {
  margin: 8px 0;
  color: #c7d7ee;
  font-size: 14px;
  line-height: 1.65;
}
.vkn-footer-contact a {
  display: inline;
}
.vkn-footer-wa {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 12px !important;
  background: #20c45a;
  color: white !important;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(32, 196, 90, 0.24);
}
.vkn-footer-wa:hover {
  transform: translateY(-2px) !important;
  color: #fff !important;
}
.vkn-footer-seo {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  color: #aec1dc;
}
.vkn-footer-seo p {
  margin: 7px 0;
  line-height: 1.7;
  font-size: 14px;
}
.vkn-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  color: #a8bbd6;
  font-size: 14px;
}
.vkn-footer-bottom p {
  margin: 0;
}
.vkn-footer-bottom div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vkn-footer-bottom a {
  font-size: 13px;
  color: #bcd0ec;
}
.qa21-page .vkn-footer,
.seo-page .vkn-footer {
  padding-bottom: 0 !important;
}
@media (max-width: 1050px) {
  .vkn-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .vkn-footer-wrap {
    padding: 42px 0 96px;
  }
  .vkn-footer-brand {
    grid-template-columns: 1fr;
  }
  .vkn-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .vkn-footer-bottom {
    display: block;
  }
  .vkn-footer-bottom div {
    margin-top: 12px;
  }
  .vkn-footer h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .vkn-footer-grid {
    grid-template-columns: 1fr;
  }
  .vkn-footer-col a {
    padding: 3px 0;
  }
  .vkn-footer-logo {
    width: 56px;
    height: 56px;
  }
  .vkn-footer-wrap {
    width: min(92vw, 420px);
  }
}
.vkn-main-header {
  background: linear-gradient(90deg, #061a3d, #08265c);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}
.brand-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.28);
  background: #07172f;
  flex: 0 0 auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.brand-text b {
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}
.brand-text small {
  font-size: 12px;
  color: #b9d8ff;
  margin-top: 3px;
}
.site-nav a.active {
  color: #67e8f9;
  background: rgba(14, 165, 233, 0.12);
  border-radius: 999px;
}
.site-nav a.nav-pill {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
}
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.content-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
  min-height: 230px;
}
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  border-color: #38bdf8;
}
.content-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.content-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}
.content-card p {
  color: #475569;
  line-height: 1.7;
}
.content-card a {
  font-weight: 800;
  color: #0369a1;
  text-decoration: none;
}
.service-copy-panel {
  margin-top: 28px;
}
.service-enquiry-card {
  margin-top: 28px;
}
.tax-service-page .section-head,
.it-service-page .section-head {
  max-width: 880px;
}
.tax-service-page .service-grid,
.it-service-page .service-grid {
  display: none !important;
}
@media (max-width: 980px) {
  .content-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-text b {
    font-size: 16px;
  }
  .brand-logo-img {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 680px) {
  .content-card-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .brand-text b {
    font-size: 15px;
  }
  .brand-text small {
    font-size: 11px;
  }
  .site-header {
    gap: 10px;
  }
  .site-nav a.nav-pill {
    display: inline-block;
  }
  .service-enquiry-card {
    padding: 20px;
  }
}
.premium-page {
  background: #f6f9ff;
  color: #0f172a;
}
.premium-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 74px 0 58px;
  background: #07152e;
}
.premium-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(34, 211, 238, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 18%,
      rgba(59, 130, 246, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, #07152e 0%, #0b2c63 55%, #0f172a 100%);
}
.tax-premium-hero .premium-hero-bg {
  background: radial-gradient(
      circle at 12% 18%,
      rgba(34, 211, 238, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(14, 165, 233, 0.26),
      transparent 30%
    ),
    linear-gradient(135deg, #07152e 0%, #0b2c63 52%, #062a45 100%);
}
.it-premium-hero .premium-hero-bg {
  background: radial-gradient(
      circle at 14% 18%,
      rgba(45, 212, 191, 0.24),
      transparent 30%
    ),
    radial-gradient(circle at 86% 16%, rgba(37, 99, 235, 0.32), transparent 28%),
    linear-gradient(135deg, #061526 0%, #082f49 50%, #0f6bff 100%);
}
.premium-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
}
.premium-hero-wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 34px;
  align-items: center;
}
.premium-hero-copy h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.03;
  margin: 16px 0 18px;
  letter-spacing: -0.04em;
}
.premium-hero-copy p {
  font-size: 19px;
  color: #dbeafe;
  max-width: 760px;
}
.premium-hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.premium-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.premium-trust-row div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.premium-trust-row b {
  display: block;
  font-size: 23px;
  color: #fff;
}
.premium-trust-row span {
  font-size: 13px;
  color: #cfe1ff;
}
.premium-hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.premium-hero-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
}
.premium-hero-card p {
  margin-top: 0;
  color: #475569;
}
.premium-lead-form {
  grid-template-columns: 1fr 1fr;
}
.premium-lead-form input,
.premium-lead-form select,
.premium-lead-form textarea {
  border-radius: 16px;
  background: #f8fafc;
  border-color: #dbeafe;
}
.form-assurance {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.form-assurance span {
  font-size: 12px;
  font-weight: 800;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 999px;
  padding: 7px 10px;
}
.premium-section {
  padding: 72px 0;
}
.alt-soft {
  background: linear-gradient(180deg, #eef6ff, #f8fbff);
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pill-grid span {
  background: #fff;
  border: 1px solid #dbeafe;
  color: #0f2f64;
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 850;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.premium-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
  min-height: 252px;
}
.premium-card:before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.13),
    rgba(34, 211, 238, 0.13)
  );
}
.premium-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.15);
  border-color: #38bdf8;
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  font-size: 25px;
  margin-bottom: 16px;
}
.premium-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.premium-card p {
  color: #475569;
  line-height: 1.75;
}
.premium-card a {
  font-weight: 900;
  color: #0369a1;
}
.conversion-band {
  border-radius: 34px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  position: relative;
}
.conversion-band:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.conversion-band > * {
  position: relative;
}
.conversion-band h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  margin: 12px 0;
}
.conversion-band p {
  color: #eaf4ff;
}
.tax-band {
  background: linear-gradient(135deg, #0b2c63, #0ea5e9);
}
.it-band {
  background: linear-gradient(135deg, #082f49, #2563eb);
}
.split-premium {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.story-panel {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.story-panel h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.12;
  margin: 12px 0;
}
.story-panel p {
  color: #475569;
  font-size: 17px;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.process-timeline div {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}
.process-timeline b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #0ea5e9;
  color: #fff;
  margin-bottom: 10px;
}
.process-timeline h3 {
  margin: 0 0 7px;
}
.process-timeline p {
  color: #475569;
  margin: 0;
}
.horizontal-process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.value-grid div {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}
.value-grid b {
  display: block;
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 8px;
}
.value-grid span {
  display: block;
  color: #475569;
  line-height: 1.65;
}
.compact-value {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dark-ghost {
  color: #0b2c63 !important;
  border: 1px solid #bfdbfe !important;
  background: #fff !important;
}
.premium-bottom-form {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-color: #dbeafe;
}
.mini-checks {
  padding-left: 0;
  list-style: none;
  color: #334155;
}
.mini-checks li {
  margin: 10px 0;
}
.mini-checks li:before {
  content: "✓";
  font-weight: 900;
  color: #0ea5e9;
  margin-right: 9px;
}
.logo-strip-section {
  padding-bottom: 50px;
}
.tax-premium-page .service-enquiry-card,
.it-premium-page .service-enquiry-card {
  margin-top: 0;
}
@media (max-width: 1000px) {
  .premium-hero-wrap,
  .split-premium {
    grid-template-columns: 1fr;
  }
  .premium-trust-row,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .premium-card-grid,
  .horizontal-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .premium-hero-card {
    max-width: 720px;
  }
  .conversion-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .premium-hero {
    padding: 48px 0 34px;
  }
  .premium-hero-copy h1 {
    font-size: 36px;
  }
  .premium-hero-copy p {
    font-size: 16px;
  }
  .premium-lead-form,
  .premium-trust-row,
  .premium-card-grid,
  .process-timeline,
  .horizontal-process,
  .value-grid,
  .compact-value {
    grid-template-columns: 1fr;
  }
  .premium-hero-card {
    padding: 20px;
    border-radius: 22px;
  }
  .premium-section {
    padding: 48px 0;
  }
  .conversion-band {
    padding: 24px;
    border-radius: 24px;
  }
  .premium-hero-actions .btn {
    width: 100%;
  }
  .pill-grid {
    justify-content: flex-start;
  }
  .pill-grid span {
    font-size: 13px;
    padding: 10px 13px;
  }
}
.form-response-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  margin: 18px 0;
  border: 1px solid rgba(14, 165, 233, 0.24);
  background: linear-gradient(
    135deg,
    rgba(240, 249, 255, 0.98),
    rgba(255, 255, 255, 0.98)
  );
  box-shadow: 0 18px 45px rgba(2, 8, 23, 0.12);
  color: #0f172a;
}
.form-response-card.hidden {
  display: none !important;
}
.form-response-card .response-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 24px;
}
.form-response-card.success .response-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}
.form-response-card.error {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(
    135deg,
    rgba(254, 242, 242, 0.98),
    rgba(255, 255, 255, 0.98)
  );
}
.form-response-card.error .response-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}
.form-response-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  color: #0f172a;
}
.form-response-card p {
  margin: 0 0 8px;
  color: #334155;
  line-height: 1.6;
}
.form-response-card .lead-ref {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: 14px;
}
.form-response-card .response-note {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .form-response-card {
    padding: 18px;
    border-radius: 18px;
    gap: 12px;
  }
  .form-response-card .response-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .form-response-card h3 {
    font-size: 18px;
  }
}
.client-portal-hero-pro {
  background: linear-gradient(135deg, #071a3f, #0b2d66 55%, #083b5f);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.25);
}
.client-portal-hero-pro h1,
.client-portal-hero-pro p {
  color: #fff;
}
.client-portal-hero-pro .badge {
  vertical-align: middle;
}
.client-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  margin: 20px 0;
  position: sticky;
  top: 88px;
  z-index: 20;
  background: #fff;
  border: 1px solid #e5eefb;
}
.client-nav-btn {
  border: 1px solid #dbeafe;
  background: #f8fbff;
  color: #0f172a;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease;
}
.client-nav-btn:hover,
.client-nav-btn.active {
  background: #0f63d8;
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 99, 216, 0.22);
}
.client-section-title {
  margin: 26px 0 14px;
}
.client-section-title h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0;
  color: #08214d;
}
.client-section-title p {
  color: #64748b;
  max-width: 850px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}
.info-grid p {
  margin: 0;
  padding: 14px;
  border: 1px solid #e5eefb;
  border-radius: 16px;
  background: #f8fbff;
}
.info-grid span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 4px;
}
.info-grid b {
  color: #0f172a;
  word-break: break-word;
}
.team-card {
  text-align: left;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f63d8, #22d3ee);
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  margin: 12px 0;
}
.table-card {
  overflow-x: auto;
}
.responsive-table {
  min-width: 880px;
}
.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.portal-success {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ecfdf5, #eff6ff);
  border: 1px solid #bbf7d0;
  text-align: center;
}
.success-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c55e;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 12px;
}
.error-text {
  color: #b91c1c;
  background: #fee2e2;
  border: 1px solid #fecaca;
  padding: 10px 12px;
  border-radius: 12px;
}
.reply-box {
  padding: 10px;
  border-radius: 12px;
  background: #f1f5f9;
  margin-top: 8px;
}
.notice-list {
  display: grid;
  gap: 12px;
}
.notice {
  border: 1px solid #e5eefb;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}
.notice b {
  color: #08214d;
}
.notice p {
  margin: 6px 0;
  color: #475569;
}
.notice span {
  font-size: 12px;
  color: #64748b;
}
.portal-timeline {
  display: grid;
  gap: 14px;
}
.portal-timeline > div {
  position: relative;
  padding: 16px 16px 16px 52px;
  border: 1px solid #e5eefb;
  border-radius: 18px;
  background: #f8fbff;
}
.portal-timeline > div > span {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dbeafe;
  color: #0f63d8;
  font-weight: 900;
}
.portal-timeline > div.done {
  background: #ecfdf5;
  border-color: #bbf7d0;
}
.portal-timeline > div.done > span {
  background: #22c55e;
  color: #fff;
}
.pro-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.doc-grid,
.download-grid,
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.doc-card,
.download-card {
  display: block;
  border: 1px solid #e5eefb;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.doc-card h4 {
  margin-top: 0;
}
.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.pay-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pay-summary > div {
  padding: 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e5eefb;
}
.pay-summary p {
  margin: 0;
  color: #64748b;
}
.pay-summary h2 {
  margin: 8px 0 0;
  color: #08214d;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  box-sizing: border-box;
}
.client-modal-box {
  max-height: 90vh;
  overflow: auto;
}
@media (max-width: 900px) {
  .client-nav {
    top: 72px;
  }
  .info-grid,
  .quick-action-grid,
  .pay-summary,
  .pro-timeline,
  .doc-grid,
  .download-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }
  .responsive-table {
    min-width: 760px;
  }
  .client-hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .client-hero-actions .btn {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .client-nav {
    position: static;
  }
  .client-hero-actions {
    grid-template-columns: 1fr;
  }
  .client-section-title h2 {
    font-size: 24px;
  }
  .info-grid p {
    padding: 12px;
  }
  .portal-timeline > div {
    padding-left: 46px;
  }
  .modal-box {
    width: 94vw;
  }
}
.client-body {
  background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 42%, #f5f7fb 100%);
}
.client-wrap {
  padding-top: 24px;
  padding-bottom: 34px;
}
.client-login-card,
.client-hero,
.client-stats,
.client-portal-shell {
  animation: portalFadeUp 0.35s ease both;
}
@keyframes portalFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.client-portal-hero-pro {
  position: relative;
  overflow: hidden;
  border-radius: 28px !important;
  background: radial-gradient(
      circle at 86% 10%,
      rgba(34, 211, 238, 0.34),
      transparent 24%
    ),
    linear-gradient(135deg, #06142f 0%, #0b2d66 55%, #075985 100%) !important;
  padding: 28px !important;
}
.client-portal-hero-pro:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.client-portal-hero-pro h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 10px 0;
}
.client-hero-actions {
  position: relative;
  z-index: 1;
}
.client-stats {
  margin: 18px 0;
}
.client-stats .stat-card {
  border: 1px solid #dbeafe;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.client-portal-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}
.client-nav-panel {
  position: sticky;
  top: 96px;
  border-radius: 26px !important;
  padding: 16px !important;
  background: #fff !important;
  border: 1px solid #dbeafe !important;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.09) !important;
}
.client-nav-head {
  padding: 12px 12px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e5eefb;
}
.client-nav-head span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #64748b;
}
.client-nav-head b {
  display: block;
  color: #08214d;
  font-size: 17px;
  margin-top: 4px;
}
.client-nav {
  position: static !important;
  display: grid !important;
  gap: 7px !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.client-nav-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: #334155 !important;
  border-radius: 16px !important;
  padding: 11px 12px !important;
  font-weight: 850 !important;
  text-align: left !important;
  box-shadow: none !important;
  white-space: normal !important;
}
.client-nav-btn .nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #eef6ff;
  font-size: 16px;
  flex: 0 0 auto;
}
.client-nav-btn:hover {
  background: #f1f7ff !important;
  border-color: #dbeafe !important;
  color: #0f63d8 !important;
  transform: translateX(2px);
}
.client-nav-btn.active {
  background: linear-gradient(135deg, #0f63d8, #04a8d8) !important;
  color: #fff !important;
  border-color: #0f63d8 !important;
  box-shadow: 0 13px 28px rgba(15, 99, 216, 0.24) !important;
}
.client-nav-btn.active .nav-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.client-main-panel {
  min-width: 0;
}
.client-main-panel > .card,
.client-main-panel .card {
  border-radius: 22px;
  border-color: #e5eefb;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}
.client-section-title {
  background: linear-gradient(135deg, #fff, #f8fbff);
  border: 1px solid #e5eefb;
  border-radius: 24px;
  padding: 20px 22px;
  margin: 0 0 18px !important;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}
.client-section-title h2 {
  color: #06142f !important;
}
.client-section-title p {
  margin-bottom: 0 !important;
}
.info-grid p {
  background: linear-gradient(180deg, #fff, #f8fbff) !important;
}
.quick-action-grid .btn,
.client-hero-actions .btn {
  border-radius: 14px;
}
.portal-success {
  box-shadow: 0 14px 35px rgba(34, 197, 94, 0.1);
}
@media (max-width: 980px) {
  .client-portal-shell {
    grid-template-columns: 1fr;
  }
  .client-nav-panel {
    position: static;
  }
  .client-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .client-nav-btn:hover {
    transform: none;
  }
  .client-wrap {
    width: min(1180px, 94vw);
  }
}
@media (max-width: 560px) {
  .client-nav {
    grid-template-columns: 1fr !important;
  }
  .client-nav-btn {
    padding: 12px !important;
  }
  .client-portal-hero-pro {
    padding: 22px !important;
  }
  .client-stats.grid {
    grid-template-columns: 1fr;
  }
  .client-section-title {
    padding: 16px;
  }
  .client-login-box {
    padding: 20px;
  }
}
.doc-table th:last-child,
.doc-table td:last-child {
  min-width: 260px;
}
.doc-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.doc-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.btn.doc-btn {
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1;
  min-width: auto;
  box-shadow: none;
}
.btn.doc-btn.light {
  background: #eef5ff;
  color: #0b2a55;
}
.btn.doc-btn.primary {
  background: #1167e8;
  color: #fff;
}
.btn.doc-btn.good {
  background: #15945d;
  color: #fff;
}
.btn.doc-btn.danger {
  background: #e63946;
  color: #fff;
}
.btn.doc-btn.outline {
  background: #fff;
  color: #e63946;
  border: 1px solid #ffd0d5;
}
.doc-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #64748b;
  font-size: 13px;
}
.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
}
.mini-stats span {
  background: #f1f5ff;
  border: 1px solid #dbeafe;
  color: #0f2557;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 760px) {
  .doc-table th:last-child,
  .doc-table td:last-child {
    min-width: 220px;
  }
  .doc-action-row {
    gap: 6px;
  }
  .btn.doc-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}
body.admin-page {
  --admin-bg: #eef4fb;
  --admin-navy: #07152e;
  --admin-navy-2: #0b2c63;
  --admin-blue: #0f6bff;
  --admin-cyan: #22d3ee;
  --admin-card: #ffffff;
  background: linear-gradient(135deg, #eef4fb, #f8fbff);
  color: #0f172a;
  overflow: hidden;
}
.admin-page .site-footer {
  display: none;
}
.admin-login-card {
  width: min(440px, 92vw);
  margin: 8vh auto;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}
.admin-login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.admin-login-brand img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(15, 99, 216, 0.22);
}
.admin-login-brand h2 {
  margin: 0;
  color: #06142f;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.admin-login-brand p {
  margin: 4px 0 0;
  color: #64748b;
}
.admin-login-card input {
  width: 100%;
  padding: 14px 16px;
  margin: 8px 0;
  border: 1px solid #dbe5f1;
  border-radius: 16px;
  background: #f8fbff;
  font-size: 15px;
  outline: none;
}
.admin-login-card input:focus {
  border-color: #0f6bff;
  box-shadow: 0 0 0 4px rgba(15, 107, 255, 0.1);
  background: #fff;
}
.admin-login-btn {
  width: 100%;
  margin-top: 12px;
  min-height: 48px;
}
.admin-shell {
  height: 100vh;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  background: var(--admin-bg);
}
.admin-sidebar {
  height: 100vh;
  background: linear-gradient(180deg, #06142f, #071d42 62%, #08214d) !important;
  color: #fff;
  padding: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 16px 0 45px rgba(7, 21, 46, 0.16);
  overflow: hidden;
}
.admin-side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}
.admin-side-brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(34, 211, 238, 0.2);
}
.admin-side-brand h2 {
  margin: 0;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.03em;
}
.admin-side-brand span {
  display: block;
  color: #9fb8d8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.admin-side-scroll {
  flex: 1;
  overflow: auto;
  padding: 12px 10px;
}
.admin-side-scroll::-webkit-scrollbar {
  width: 8px;
}
.admin-side-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.admin-sidebar button {
  width: 100%;
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 3px 0 !important;
  border: 1px solid transparent !important;
  border-radius: 14px !important;
  background: transparent !important;
  color: #cbd7ea !important;
  padding: 10px 12px !important;
  text-align: left !important;
  font-weight: 800 !important;
  font-size: 14px;
  box-shadow: none !important;
  transition: 0.18s ease;
}
.admin-sidebar button:before {
  content: "•";
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: #38bdf8;
  font-size: 18px;
  line-height: 1;
}
.admin-sidebar button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  transform: translateX(2px);
}
.admin-sidebar button.active {
  background: linear-gradient(135deg, #0f6bff, #04a8d8) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 14px 30px rgba(15, 107, 255, 0.26) !important;
}
.admin-sidebar button.active:before {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.admin-side-actions {
  padding: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
}
.admin-side-actions .logout-btn {
  background: rgba(239, 68, 68, 0.14) !important;
  color: #fecaca !important;
}
.admin-workspace {
  min-width: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.admin-topbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #dbeafe;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  z-index: 3;
}
.admin-topbar h1 {
  margin: 2px 0 0;
  font-size: 27px;
  color: #06142f;
  letter-spacing: -0.04em;
}
.admin-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0f6bff;
  font-weight: 950;
}
.admin-top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-top-actions a {
  padding: 10px 13px;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #dbeafe;
  color: #0b2c63;
  font-weight: 850;
  font-size: 13px;
}
.admin-top-actions a:hover {
  background: #0f6bff;
  color: #fff;
}
.admin-main {
  height: calc(100vh - 86px);
  overflow: auto;
  padding: 26px !important;
  background: radial-gradient(
      circle at top right,
      rgba(34, 211, 238, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #f6f9fe, #eef4fb);
}
.admin-main h1 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.055em;
  margin: 0 0 18px;
  color: #06142f;
}
.admin-main h2 {
  letter-spacing: -0.03em;
  color: #08214d;
}
.admin-page .card {
  border: 1px solid #dbeafe !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
  padding: 22px !important;
}
.admin-page .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.admin-page .grid .card {
  min-height: 128px;
}
.admin-page .stat {
  font-size: 34px;
  font-weight: 950;
  color: #0f6bff;
  letter-spacing: -0.05em;
}
.admin-page .search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 12px;
  margin: 0 0 16px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}
.admin-page .search input {
  flex: 1;
  min-width: 230px;
  border: 0;
  background: #f8fbff;
  border-radius: 14px;
  padding: 13px 15px;
  outline: none;
}
.admin-page .search input:focus {
  box-shadow: 0 0 0 4px rgba(15, 107, 255, 0.1);
}
.admin-page .table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}
.admin-page .table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, #eef6ff, #e7f0ff) !important;
  color: #08214d;
  text-align: left;
  padding: 14px 13px;
  font-size: 13px;
  white-space: nowrap;
}
.admin-page .table td {
  padding: 13px;
  border-top: 1px solid #edf2f7;
  vertical-align: middle;
  color: #1e293b;
}
.admin-page .table tr:hover td {
  background: #f8fbff;
}
.admin-page .table td:last-child {
  min-width: 190px;
}
.admin-page .btn {
  border-radius: 13px;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(15, 107, 255, 0.18);
  margin: 3px;
}
.admin-page .btn.alt,
.admin-page .btn.light {
  background: #eef6ff !important;
  color: #0b2c63 !important;
  box-shadow: none !important;
}
.admin-page .btn.good {
  background: #15945d !important;
  color: #fff !important;
}
.admin-page .btn.danger {
  background: #e63946 !important;
  color: #fff !important;
}
.admin-page .badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  background: #eef6ff;
  color: #0b2c63;
}
.admin-page .badge.green {
  background: #dcfce7;
  color: #166534;
}
.admin-page .badge.red {
  background: #fee2e2;
  color: #991b1b;
}
.admin-page .badge.yellow {
  background: #fef3c7;
  color: #92400e;
}
.admin-page .form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.admin-page .form label {
  font-weight: 800;
  color: #334155;
}
.admin-page .form input,
.admin-page .form select,
.admin-page .form textarea {
  margin-top: 6px;
  width: 100%;
  border: 1px solid #dbe5f1;
  border-radius: 14px;
  background: #f8fbff;
  padding: 12px 14px;
  outline: none;
  font: inherit;
}
.admin-page .form textarea {
  min-height: 92px;
  resize: vertical;
}
.admin-page .form input:focus,
.admin-page .form select:focus,
.admin-page .form textarea:focus {
  border-color: #0f6bff;
  box-shadow: 0 0 0 4px rgba(15, 107, 255, 0.1);
  background: #fff;
}
.admin-page .form .btn,
.admin-page .form button[type="submit"] {
  grid-column: 1/-1;
  justify-self: start;
}
.admin-modal {
  background: rgba(2, 6, 23, 0.58) !important;
  backdrop-filter: blur(5px);
}
.admin-modal-box {
  width: min(980px, 94vw) !important;
  max-height: 88vh;
  overflow: auto;
  border-radius: 26px !important;
  border: 1px solid #dbeafe !important;
  box-shadow: 0 35px 100px rgba(2, 6, 23, 0.32) !important;
}
.admin-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5eefb;
  margin-bottom: 16px;
}
.admin-modal-head h2 {
  margin: 0;
}
.doc-table th:last-child,
.doc-table td:last-child {
  min-width: 250px;
}
.doc-actions {
  display: grid;
  gap: 6px;
}
.doc-action-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.btn.doc-btn {
  padding: 8px 11px !important;
  border-radius: 11px !important;
  font-size: 12px !important;
  margin: 0 !important;
}
.doc-note {
  font-size: 12px;
  color: #64748b;
}
.admin-page .table-card,
.admin-page .card {
  overflow-x: auto;
}
@media (max-width: 1100px) {
  .admin-shell {
    grid-template-columns: 86px minmax(0, 1fr);
  }
  .admin-side-brand {
    justify-content: center;
    padding: 14px 8px;
  }
  .admin-side-brand img {
    width: 44px;
    height: 44px;
  }
  .admin-side-brand div {
    display: none;
  }
  .admin-sidebar button {
    justify-content: center;
    padding: 11px 8px !important;
    font-size: 0 !important;
  }
  .admin-sidebar button:before {
    font-size: 16px;
  }
  .admin-side-actions button {
    font-size: 0 !important;
  }
  .admin-topbar {
    padding: 14px 18px;
  }
  .admin-main {
    padding: 18px !important;
  }
}
@media (max-width: 760px) {
  body.admin-page {
    overflow: auto;
  }
  .admin-shell {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    height: auto;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .admin-side-brand {
    justify-content: flex-start;
  }
  .admin-side-brand div {
    display: block;
  }
  .admin-side-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
  }
  .admin-sidebar button {
    min-width: max-content;
    font-size: 13px !important;
    justify-content: flex-start;
  }
  .admin-side-actions {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }
  .admin-workspace {
    height: auto;
    overflow: visible;
  }
  .admin-topbar {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-main {
    height: auto;
    overflow: visible;
    padding: 14px !important;
  }
  .admin-page .form {
    grid-template-columns: 1fr;
  }
  .admin-page .table {
    display: block;
    overflow-x: auto;
  }
  .admin-page .search {
    border-radius: 18px;
  }
  .admin-top-actions {
    width: 100%;
  }
  .admin-top-actions a {
    flex: 1;
    text-align: center;
  }
  .admin-page .card {
    padding: 16px !important;
    border-radius: 20px !important;
  }
}
.admin-file-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}
.admin-file-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.admin-file-preview {
  width: 96px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.admin-file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.admin-file-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.admin-file-meta small {
  color: #64748b;
  word-break: break-all;
}
.admin-file-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.mini-file-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  margin: 2px;
}
.mini-file-link:hover {
  background: #bae6fd;
}
@media (max-width: 640px) {
  .admin-file-item {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-file-preview {
    width: 100%;
    height: 150px;
  }
  .admin-file-actions .btn {
    width: auto;
  }
}
:root {
  --v51-radius: 18px;
  --v51-radius-lg: 26px;
  --v51-focus: 0 0 0 4px rgba(15, 107, 255, 0.13);
}
html {
  scroll-behavior: smooth;
}
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}
button,
a,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(1180px, 94vw);
}
.site-header {
  min-height: 76px;
  gap: 18px;
}
.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  flex: 0 0 auto;
}
.brand-text b {
  line-height: 1.12;
}
.brand-text small {
  line-height: 1.25;
}
.site-nav {
  justify-content: flex-end;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  white-space: nowrap;
}
.nav-pill {
  box-shadow: 0 10px 24px rgba(15, 107, 255, 0.25);
}
.hero-premium,
.page-hero {
  overflow: hidden;
}
.hero-content,
.page-hero .wrap {
  min-width: 0;
}
.hero-content h1,
.page-hero h1 {
  letter-spacing: -0.045em;
}
.hero-content p,
.page-hero p {
  line-height: 1.75;
}
.hero-actions .btn,
.cta-band .btn {
  min-height: 48px;
}
.hero-stats {
  align-items: stretch;
}
.hero-stats div {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section {
  padding: 64px 0;
}
.section-head h2 {
  letter-spacing: -0.04em;
}
.vertical-card,
.service-card,
.feature,
.testimonial,
.blog-card,
.info-panel,
.contact-card,
.mini-price,
.price-section {
  height: 100%;
}
.service-card h3,
.vertical-card h3 {
  line-height: 1.2;
}
.cta-band {
  align-items: center;
}
.lead-form {
  align-items: start;
}
.lead-form input,
.lead-form select,
.lead-form textarea,
.form input,
.form select,
.form textarea,
.search input,
.search select {
  min-height: 48px;
  outline: none;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.form input:focus,
.form select:focus,
.form textarea:focus,
.search input:focus,
.search select:focus {
  border-color: #0f6bff;
  box-shadow: var(--v51-focus);
}
.lead-form button,
.form button,
.btn {
  min-height: 44px;
}
.table-wrap,
.table-card {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  min-width: 720px;
}
.price-table th,
.price-table td {
  vertical-align: middle;
}
.vkn-footer {
  padding: 42px 7vw;
}
.vkn-footer-wrap {
  width: min(1180px, 100%);
  margin: auto;
}
.vkn-footer-grid {
  align-items: start;
}
.vkn-footer a {
  word-break: break-word;
}
.admin-page {
  overflow: hidden;
}
.admin-shell {
  grid-template-columns: 280px minmax(0, 1fr);
}
.admin-sidebar {
  width: 280px;
}
.admin-side-brand {
  min-height: 92px;
}
.admin-side-brand h2 {
  line-height: 1.1;
}
.admin-side-scroll {
  padding-bottom: 16px;
}
.admin-sidebar button {
  min-height: 42px;
  line-height: 1.2;
}
.admin-workspace {
  min-width: 0;
}
.admin-topbar {
  min-height: 84px;
}
.admin-main {
  min-width: 0;
}
.admin-main h1 {
  line-height: 1.1;
}
.admin-page .search {
  gap: 12px;
}
.admin-page .search input {
  min-height: 48px;
}
.admin-page .table {
  table-layout: auto;
  min-width: 900px;
}
.admin-page .table th,
.admin-page .table td {
  line-height: 1.35;
  vertical-align: middle;
}
.admin-page .table th {
  font-weight: 900;
}
.admin-page .table td {
  word-break: normal;
}
.admin-page .table td:first-child {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  color: #0f2a55;
}
.admin-page .table td:last-child {
  white-space: normal;
}
.admin-page .table .btn,
.admin-page .table button {
  white-space: nowrap;
}
.admin-page .table-card,
.admin-page .card:has(.table) {
  overflow-x: auto;
}
.admin-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.15;
  white-space: nowrap;
}
.admin-page .badge {
  line-height: 1.1;
  text-align: center;
}
.admin-page .form {
  align-items: start;
}
.admin-page .form label {
  display: block;
}
.admin-page .form .btn,
.admin-page .form button[type="submit"] {
  min-width: 160px;
}
.admin-modal-box {
  padding: 24px !important;
}
.admin-modal-head {
  align-items: center;
}
.doc-actions {
  min-width: 220px;
}
.doc-action-row {
  gap: 7px;
}
.btn.doc-btn {
  min-width: 72px;
}
.admin-file-item {
  min-width: 0;
}
.admin-file-meta {
  flex: 1;
}
.admin-file-actions .btn {
  white-space: nowrap;
}
.client-wrap {
  width: min(1180px, 94vw);
}
.client-portal-shell {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}
.client-nav-panel {
  min-width: 0;
}
.client-nav-head b {
  word-break: break-word;
}
.client-nav-btn {
  min-height: 50px;
  line-height: 1.25;
}
.client-main-panel {
  overflow: hidden;
}
.client-section-title {
  display: block;
}
.client-section-title h2 {
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.client-section-title p {
  line-height: 1.65;
}
.client-main-panel .card {
  min-width: 0;
  overflow: hidden;
}
.client-main-panel .table-card {
  border-radius: 22px;
  overflow-x: auto;
}
.responsive-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}
.responsive-table th,
.responsive-table td {
  padding: 14px 12px;
  vertical-align: middle;
  line-height: 1.35;
}
.responsive-table th {
  white-space: nowrap;
}
.responsive-table td {
  word-break: normal;
}
.info-grid p,
.pay-summary > div,
.doc-card,
.download-card,
.notice,
.portal-timeline > div {
  min-width: 0;
}
.info-grid b {
  overflow-wrap: anywhere;
}
.quick-action-grid {
  align-items: stretch;
}
.quick-action-grid .btn {
  width: 100%;
  text-align: center;
}
.portal-success h2 {
  line-height: 1.2;
}
.client-modal-box {
  width: min(760px, 94vw) !important;
}
.client-main input,
.client-main select,
.client-main textarea {
  min-height: 48px;
}
.client-main textarea {
  resize: vertical;
}
.client-hero-actions .btn {
  flex: 1 1 auto;
}
@media (max-width: 1200px) {
  .admin-shell {
    grid-template-columns: 250px minmax(0, 1fr);
  }
  .admin-sidebar {
    width: 250px;
  }
  .admin-main {
    padding: 22px !important;
  }
  .admin-page .table {
    min-width: 980px;
  }
  .client-portal-shell {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}
@media (max-width: 980px) {
  .site-header {
    padding: 12px 18px;
  }
  .brand-logo-img {
    width: 48px;
    height: 48px;
  }
  .brand-text b {
    font-size: 16px;
  }
  .brand-text small {
    font-size: 11px;
  }
  .section {
    padding: 52px 0;
  }
  .cta-band {
    display: grid;
    text-align: center;
  }
  .admin-shell {
    grid-template-columns: 86px minmax(0, 1fr);
  }
  .admin-sidebar {
    width: 86px;
  }
  .admin-page .table {
    min-width: 920px;
  }
  .client-portal-shell {
    grid-template-columns: 1fr;
  }
  .client-nav-panel {
    position: static !important;
  }
  .client-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .responsive-table {
    min-width: 820px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 15px;
  }
  .site-body {
    overflow-x: hidden;
  }
  .site-header {
    min-height: 70px;
  }
  .site-nav {
    top: 70px;
  }
  .hero-premium {
    padding: 46px 6vw;
  }
  .page-hero {
    padding: 56px 6vw;
  }
  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
  }
  .hero-content p,
  .page-hero p {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact-card {
    padding: 18px;
  }
  .lead-form {
    gap: 10px;
  }
  .mini-price {
    display: grid;
    gap: 6px;
    text-align: left;
  }
  .admin-page {
    overflow: auto;
  }
  .admin-shell {
    display: block;
  }
  .admin-sidebar {
    width: 100%;
    height: auto;
  }
  .admin-side-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }
  .admin-sidebar button {
    min-width: max-content;
  }
  .admin-main {
    padding: 16px !important;
  }
  .admin-page .table {
    min-width: 840px;
  }
  .admin-topbar {
    gap: 12px;
  }
  .admin-top-actions a {
    min-height: 42px;
  }
  .admin-modal-box {
    padding: 18px !important;
  }
  .client-nav {
    grid-template-columns: 1fr !important;
  }
  .client-section-title {
    padding: 18px;
  }
  .client-portal-hero-pro {
    border-radius: 22px !important;
  }
  .client-hero-actions {
    grid-template-columns: 1fr !important;
  }
  .responsive-table {
    min-width: 760px;
  }
  .pay-summary,
  .info-grid,
  .doc-grid,
  .download-grid,
  .knowledge-grid,
  .quick-action-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 520px) {
  .wrap,
  .client-wrap {
    width: min(100% - 24px, 1180px);
  }
  .site-header {
    padding: 10px 12px;
  }
  .brand-logo-img {
    width: 44px;
    height: 44px;
  }
  .brand-text b {
    font-size: 15px;
  }
  .brand-text small {
    max-width: 190px;
  }
  .mobile-menu {
    padding: 8px 10px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .vertical-grid,
  .service-grid,
  .feature-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    text-align: left;
  }
  .cta-band {
    border-radius: 22px;
    padding: 24px 18px;
  }
  .admin-main h1 {
    font-size: 30px;
  }
  .admin-page .search {
    padding: 10px;
  }
  .admin-page .search input {
    min-width: 100%;
  }
  .admin-page .btn {
    width: auto;
  }
  .admin-page .table {
    min-width: 760px;
  }
  .client-login-card h1 {
    font-size: 30px;
  }
  .client-login-box {
    padding: 18px;
  }
  .client-section-title h2 {
    font-size: 24px;
  }
  .portal-timeline > div {
    padding: 14px 14px 14px 48px;
  }
  .doc-actions {
    min-width: 190px;
  }
  .doc-action-row {
    align-items: stretch;
  }
  .btn.doc-btn {
    flex: 1 1 auto;
  }
}
.qa57-urgency {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.28);
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
  color: #0f172a;
  display: grid;
  gap: 3px;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.1);
}
.qa57-urgency strong {
  font-size: 14px;
  color: #075985;
  line-height: 1.3;
}
.qa57-urgency span {
  font-size: 13px;
  color: #475569;
  line-height: 1.45;
}
.qa57-why-grid,
.qa57-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.qa57-why-grid article,
.qa57-tools-grid article {
  border: 1px solid #e5eefb;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 20px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
  min-height: 100%;
}
.qa57-why-grid article:hover,
.qa57-tools-grid article:hover {
  transform: translateY(-4px);
  border-color: #bae6fd;
  box-shadow: 0 24px 60px rgba(15, 99, 216, 0.13);
}
.qa57-why-grid i,
.qa57-tools-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f63d8, #22d3ee);
  color: #fff;
  font-style: normal;
  font-size: 22px;
  margin-bottom: 12px;
}
.qa57-why-grid h3,
.qa57-tools-grid h3 {
  margin: 0 0 8px;
  color: #08214d;
  line-height: 1.2;
}
.qa57-why-grid p,
.qa57-tools-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
.qa57-tools-grid article p {
  display: inline-flex;
  margin: 4px 5px 4px 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0b2a55;
  font-size: 13px;
  font-weight: 800;
}
.qa57-case-study {
  padding: 78px 0;
  background: radial-gradient(
      circle at 18% 8%,
      rgba(34, 211, 238, 0.2),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(59, 130, 246, 0.24),
      transparent 26%
    ),
    linear-gradient(135deg, #06142f, #0b2d66 55%, #075985);
  color: #fff;
  overflow: hidden;
}
.qa57-case-study .qa21-section-head h2,
.qa57-case-study .qa21-section-head p {
  color: #fff;
}
.qa57-case-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}
.qa57-case-overview {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 26px 70px rgba(2, 8, 23, 0.28);
}
.qa57-case-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.16);
  border: 1px solid rgba(125, 211, 252, 0.35);
  color: #cffafe;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px;
}
.qa57-case-overview h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.qa57-case-fields {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}
.qa57-case-fields p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  color: #e0f2fe;
  line-height: 1.55;
}
.qa57-case-fields b {
  color: #fff;
}
.qa57-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.qa57-metric-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  border-radius: 24px;
  padding: 22px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 20px 48px rgba(2, 8, 23, 0.18);
}
.qa57-metric-grid article.wide {
  grid-column: 1/-1;
  min-height: 105px;
}
.qa57-metric-grid b {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  color: #0f63d8;
}
.qa57-metric-grid span {
  margin-top: 8px;
  color: #475569;
  font-weight: 900;
  line-height: 1.35;
}
@media (max-width: 980px) {
  .qa57-why-grid,
  .qa57-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .qa57-case-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .qa57-why-grid,
  .qa57-tools-grid,
  .qa57-metric-grid {
    grid-template-columns: 1fr;
  }
  .qa57-case-study {
    padding: 54px 0;
  }
  .qa57-case-overview {
    padding: 20px;
    border-radius: 24px;
  }
  .qa57-metric-grid article,
  .qa57-metric-grid article.wide {
    min-height: auto;
  }
  .qa57-tools-grid article p {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
}
.qa58-capability-strip {
  background: #071a3a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.qa58-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.qa58-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #eaf6ff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.qa58-response-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 12px 0 14px;
}
.qa58-response-box span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #eef9ff;
  border: 1px solid #b9e9ff;
  color: #06415f;
  border-radius: 13px;
  padding: 10px 11px;
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.3;
}
.qa58-logo-section {
  padding: 54px 0 18px;
}
.qa58-logo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  border: 1px solid #dfeaf8;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(10, 31, 68, 0.08);
}
.qa58-logo-panel h2 {
  margin: 8px 0 10px;
  color: #081b3f;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.qa58-logo-panel p {
  color: #65758b;
  line-height: 1.75;
  margin: 0;
}
.qa58-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.qa58-logo-grid article {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid #e2ecf7;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.07);
  transition: 0.22s ease;
}
.qa58-logo-grid article:hover {
  transform: translateY(-4px);
  border-color: #8fd8ff;
  box-shadow: 0 18px 40px rgba(10, 31, 68, 0.12);
}
.qa58-logo-grid b {
  color: #10223f;
  font-weight: 950;
}
.qa58-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  color: #fff;
  letter-spacing: -0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 18px rgba(10, 31, 68, 0.12);
}
.qa58-logo-mark.jira {
  background: linear-gradient(135deg, #2684ff, #0052cc);
}
.qa58-logo-mark.postman {
  background: linear-gradient(135deg, #ff8a3d, #f15a24);
}
.qa58-logo-mark.selenium {
  background: linear-gradient(135deg, #43b02a, #0b7f37);
}
.qa58-logo-mark.chrome {
  background: conic-gradient(
    #4285f4 0 25%,
    #34a853 0 50%,
    #fbbc05 0 75%,
    #ea4335 0
  );
}
.qa58-logo-mark.github {
  background: linear-gradient(135deg, #111827, #374151);
}
.qa58-logo-mark.mysql {
  background: linear-gradient(135deg, #00758f, #f29111);
}
.vkn-global-wa {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #20c45a;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 1000;
  box-shadow: 0 18px 42px rgba(32, 196, 90, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: 0.22s ease;
}
.vkn-global-wa::before {
  content: "☎";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vkn-global-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(32, 196, 90, 0.46);
}
.vkn-global-wa::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(32, 196, 90, 0.42);
  animation: vknWaPulse 1.9s ease-out infinite;
  pointer-events: none;
}
@keyframes vknWaPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}
@media (max-width: 640px) {
  .qa58-response-box,
  .qa58-logo-grid {
    grid-template-columns: 1fr;
  }
  .qa58-logo-panel {
    border-radius: 24px;
    padding: 22px;
  }
  .qa58-logo-section {
    padding: 38px 0 10px;
  }
  .qa58-chip-row {
    justify-content: flex-start;
  }
  .vkn-global-wa {
    font-size: 0;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
    right: 14px;
    bottom: 88px;
  }
  .vkn-global-wa::before {
    font-size: 20px;
    background: transparent;
  }
  .vkn-global-wa::after {
    border-radius: 50%;
  }
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.hero-actions .ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.industry-chip-grid {
  max-width: 980px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.industry-chip-grid span {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
}
.google-login-btn {
  width: 100%;
  border: 1px solid #dbe4ef;
  background: #fff;
  color: #0f172a;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.google-login-btn:hover {
  border-color: #0ea5e9;
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.12);
  transform: translateY(-1px);
}
.google-login-btn span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  font-weight: 900;
}
@keyframes vknFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.employee-master-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 10px;
  margin: 16px 0 24px;
}
.wizard-steps span {
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  border-radius: 999px;
  padding: 11px 12px;
  text-align: center;
  font-weight: 800;
  color: #44556f;
  font-size: 14px;
}
.wizard-steps span.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
}
.wizard-steps span.done {
  background: #059669;
  color: #fff;
  border-color: #059669;
}
.employee-form h3 {
  margin: 22px 0 12px;
  color: #0f172a;
}
.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.checkline {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: #1f2a44;
  font-weight: 700;
}
.checkline input {
  width: auto !important;
}
.zoho-wizard {
  background: #fff;
  border: 1px solid #e4ebf5;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  margin: 18px 0 28px;
}
.employee-wizard-top {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid #edf2f7;
  padding: 22px 28px 18px;
  text-align: center;
}
.employee-wizard-top h2 {
  margin: 0 0 18px;
  font-size: 1.55rem;
  color: #07142d;
  font-weight: 800;
}
.zoho-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.zoho-stepper button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #334155;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
}
.zoho-stepper button:not(:last-child)::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: #d7dce6;
  margin-left: 18px;
}
.zoho-stepper span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #1e3a8a;
  font-weight: 900;
}
.zoho-stepper .active span {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.zoho-stepper .done span {
  background: #14875d;
  color: #fff;
  border-color: #14875d;
}
.zoho-employee-form {
  padding: 24px 34px 34px;
  max-width: 1040px;
  margin: 0 auto;
}
.zoho-form-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 26px 30px;
  margin: 0 0 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.zoho-form-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #111827;
  font-weight: 800;
}
.zoho-employee-form label {
  font-weight: 700;
  color: #0f172a;
}
.zoho-employee-form input,
.zoho-employee-form select,
.zoho-employee-form textarea {
  height: 48px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  font-size: 15px;
  padding: 0 13px;
  transition: 0.18s ease;
}
.zoho-employee-form textarea {
  height: 96px;
  padding: 12px 13px;
}
.zoho-employee-form input:focus,
.zoho-employee-form select:focus,
.zoho-employee-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.zoho-employee-form .form-grid {
  gap: 22px 28px;
  align-items: end;
}
.checkline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  font-weight: 700;
}
.checkline input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.checkline small {
  display: block;
  font-weight: 500;
  color: #64748b;
  margin-top: 4px;
}
.statutory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin-top: 18px;
}
.ctc-input-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px;
  gap: 24px;
  align-items: end;
  margin: 20px 0 24px;
}
.currency-input {
  height: 50px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 42px 1fr 90px;
  align-items: center;
  background: #fff;
  overflow: hidden;
}
.currency-input span,
.currency-input small {
  background: #f8fafc;
  color: #64748b;
  height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid #e5e7eb;
}
.currency-input small {
  border-right: 0;
  border-left: 1px solid #e5e7eb;
  font-size: 13px;
}
.currency-input input {
  border: 0 !important;
  box-shadow: none !important;
  height: 100%;
  border-radius: 0;
}
.salary-structure-card {
  border: 1px solid #e8edf6;
  border-radius: 14px;
  overflow: auto;
  margin-top: 10px;
}
.salary-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.salary-table th {
  background: #f7f8fc;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #53627c;
  padding: 14px;
  text-align: left;
}
.salary-table td {
  padding: 18px 14px;
  border-top: 1px solid #edf2f7;
  color: #0f172a;
}
.salary-table small {
  display: block;
  color: #64748b;
  margin-top: 4px;
  font-weight: 500;
}
.salary-total td {
  background: #eaf4ff !important;
  font-size: 1.05rem;
  font-weight: 900;
  border-top: 0 !important;
}
.payment-method-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #e5e7eb;
  margin: 12px 0 24px;
}
.payment-method {
  display: grid;
  grid-template-columns: 28px 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 12px;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
  border-radius: 8px;
}
.payment-method:hover {
  background: #f8fbff;
}
.payment-method input {
  width: 18px;
  height: 18px;
}
.payment-method span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #dbe5f0;
  display: grid;
  place-items: center;
  background: #fff;
}
.payment-method b {
  display: block;
  font-size: 1rem;
}
.payment-method small {
  display: block;
  color: #64748b;
  font-weight: 500;
  margin-top: 3px;
}
.sticky-actions {
  border-top: 1px solid #edf2f7;
  margin-top: 18px;
  padding-top: 18px;
  align-items: center;
}
.required-note {
  margin-left: auto;
  color: #f43f5e;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .zoho-stepper {
    overflow: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .zoho-stepper button {
    padding: 0 12px;
  }
  .zoho-stepper button:not(:last-child)::after {
    width: 44px;
  }
  .zoho-employee-form {
    padding: 20px 16px 26px;
  }
  .zoho-form-card {
    padding: 20px 16px;
  }
  .ctc-input-row,
  .statutory-grid {
    grid-template-columns: 1fr;
  }
  .currency-input {
    grid-template-columns: 36px 1fr 76px;
  }
  .required-note {
    width: 100%;
    margin-left: 0;
  }
  .sticky-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 4;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.08);
  }
}
@media (max-width: 640px) {
  .employee-wizard-top {
    padding: 18px 12px;
  }
  .employee-wizard-top h2 {
    font-size: 1.25rem;
  }
  .zoho-stepper button {
    font-size: 0.82rem;
  }
  .zoho-stepper span {
    width: 28px;
    height: 28px;
  }
  .zoho-employee-form .form-grid.two,
  .zoho-employee-form .form-grid.three {
    grid-template-columns: 1fr;
  }
  .payment-method {
    grid-template-columns: 22px 34px 1fr;
    padding: 16px 6px;
  }
  .salary-table {
    min-width: 640px;
  }
}
.zoho-employee-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 1px solid #e5ecf7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.view-title-btn {
  background: #f4f6fb !important;
  color: #111827 !important;
  font-size: 20px !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
}
.icon-btn {
  height: 38px !important;
  width: 38px !important;
  border-radius: 6px !important;
  background: #fff !important;
  border: 1px solid #d8deea !important;
  color: #111827 !important;
}
.zoho-filter {
  top: 118px !important;
  min-height: calc(100vh - 118px) !important;
  border-right: 1px solid #e7ebf3 !important;
  box-shadow: 8px 0 26px rgba(15, 23, 42, 0.07) !important;
  padding: 14px !important;
}
.zoho-filter .employee-search {
  height: 46px !important;
  border: 1px solid #d7dfec !important;
  border-radius: 8px !important;
  margin-bottom: 10px !important;
}
.zoho-filter button {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #334155 !important;
  font-size: 15px !important;
  text-align: left !important;
  padding: 0 14px !important;
  font-weight: 600 !important;
}
.zoho-filter button.active {
  background: #4087f5 !important;
  color: #fff !important;
}
.zoho-filter .add-custom {
  border-top: 1px solid #edf2f7 !important;
  border-radius: 0 !important;
  color: #2563eb !important;
  margin-top: 12px !important;
  padding-top: 16px !important;
  background: transparent !important;
}
.zoho-content {
  background: #fff !important;
  min-width: 0 !important;
}
.zoho-list-table {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.zoho-list-table thead th {
  height: 50px !important;
  background: #fbfbfe !important;
  color: #475569 !important;
  font-size: 12px !important;
  letter-spacing: 0.03em !important;
  border-bottom: 1px solid #e6ebf4 !important;
  padding: 0 18px !important;
}
.zoho-list-table tbody td {
  height: 72px !important;
  padding: 0 18px !important;
  border-bottom: 1px solid #edf2f7 !important;
  vertical-align: middle !important;
}
.employee-name-cell img {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #111827 !important;
}
.employee-name-cell button b {
  font-size: 15px !important;
  color: #2563eb !important;
}
.employee-name-cell button span {
  font-size: 13px !important;
  color: #64748b !important;
}
.employee-wizard-top.v68-wizard-top {
  position: sticky !important;
  top: 56px !important;
  z-index: 12 !important;
  background: #fff !important;
  border-bottom: 1px solid #edf1f7 !important;
  padding: 24px 28px 20px !important;
  text-align: center !important;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02) !important;
}
.v68-wizard-title-row {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 22px;
}
.v68-wizard-title-row h2 {
  font-size: 24px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  color: #111827 !important;
}
.v68-stepper {
  max-width: 820px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  overflow: visible !important;
}
.v68-stepper button {
  min-width: 178px !important;
  font-size: 14px !important;
  color: #334155 !important;
  background: transparent !important;
  border: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  position: relative !important;
  cursor: pointer !important;
}
.v68-stepper button:not(:last-child)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  right: -45px !important;
  width: 90px !important;
  height: 2px !important;
  background: #cfd6e2 !important;
  top: 50% !important;
  z-index: -1 !important;
}
.v68-stepper span {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 1px solid #cbd5e1 !important;
  background: #fff !important;
  color: #334155 !important;
  display: grid !important;
  place-items: center !important;
  font-weight: 800 !important;
}
.v68-stepper .active span {
  background: #2478ef !important;
  border-color: #2478ef !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px #dbeafe !important;
}
.v68-stepper .done span {
  background: #14835f !important;
  border-color: #14835f !important;
  color: #fff !important;
}
.zoho-employee-form {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 28px 20px 60px !important;
  background: #fff !important;
}
.zoho-form-card {
  max-width: 900px !important;
  margin: 0 auto 8px !important;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.zoho-form-card h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 0 0 18px !important;
}
.zoho-employee-form .form-grid.two {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px 38px !important;
}
.zoho-employee-form .form-grid.three {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 18px !important;
}
.zoho-employee-form label {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #111827 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.zoho-employee-form input,
.zoho-employee-form select,
.zoho-employee-form textarea {
  height: 46px !important;
  border: 1px solid #d7dfec !important;
  border-radius: 7px !important;
  padding: 0 14px !important;
  background: #fff !important;
  font-size: 15px !important;
  box-shadow: none !important;
}
.zoho-employee-form textarea {
  height: auto !important;
  min-height: 90px !important;
  padding: 12px 14px !important;
}
.zoho-employee-form input:focus,
.zoho-employee-form select:focus,
.zoho-employee-form textarea:focus {
  outline: 2px solid #bfdbfe !important;
  border-color: #3b82f6 !important;
}
.checkline {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 18px 0 !important;
  font-weight: 500 !important;
}
.checkline input {
  width: 16px !important;
  height: 16px !important;
  min-height: 0 !important;
  margin-top: 2px !important;
}
.checkline small {
  display: block;
  color: #475569;
  margin-top: 6px;
  line-height: 1.5;
}
.sticky-actions {
  max-width: 900px !important;
  margin: 24px auto 0 !important;
  border-top: 1px solid #e5e7eb !important;
  padding: 18px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #fff !important;
}
.sticky-actions .btn {
  height: 38px !important;
  border-radius: 6px !important;
  padding: 0 18px !important;
  box-shadow: none !important;
}
.required-note {
  margin-left: auto !important;
  color: #ef4444 !important;
  font-size: 13px !important;
}
.salary-structure-card {
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  margin-top: 18px !important;
  overflow: hidden !important;
}
.salary-table th,
.salary-table td {
  padding: 15px 18px !important;
}
.payment-method-list {
  max-width: 900px !important;
  margin: 0 auto !important;
  border-top: 1px solid #e5e7eb !important;
}
.payment-method {
  grid-template-columns: 50px 1fr 34px !important;
  padding: 22px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  background: #fff !important;
}
.payment-method span {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  color: #64748b !important;
}
.payment-method b {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #111827 !important;
}
.payment-method small {
  font-size: 14px !important;
  color: #64748b !important;
  margin-top: 6px !important;
}
.payment-method input {
  width: 24px !important;
  height: 24px !important;
  accent-color: #3b82f6 !important;
}
.zoho-employee-profile {
  background: #fff !important;
  min-height: calc(100vh - 56px) !important;
}
.profile-hero {
  height: auto !important;
  background: #fff !important;
  border-bottom: 1px solid #edf1f7 !important;
  padding: 22px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.profile-identity img {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: #111827 !important;
}
.profile-identity h2 {
  font-size: 21px !important;
  font-weight: 600 !important;
  color: #111827 !important;
}
.profile-tabs {
  padding: 0 28px !important;
  height: 54px !important;
  gap: 28px !important;
  background: #fff !important;
  border-bottom: 1px solid #edf1f7 !important;
}
.profile-tabs button {
  height: 54px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-weight: 500 !important;
}
.profile-tabs button.active {
  border-bottom: 3px solid #3b82f6 !important;
  color: #111827 !important;
}
.profile-section {
  margin: 24px 28px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 22px !important;
  box-shadow: none !important;
  background: #fff !important;
}
.profile-section h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 22px !important;
}
.profile-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px 90px !important;
}
.profile-grid p {
  display: grid !important;
  grid-template-columns: 170px 1fr !important;
  gap: 16px !important;
  align-items: start !important;
}
.profile-grid span {
  color: #64748b !important;
  font-size: 14px !important;
}
.profile-grid b {
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.settings-app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 0px);
  background: #f8fafc;
  color: #0f172a;
}
.settings-side {
  background: #fff;
  border-right: 1px solid #e5e7eb;
  min-height: 100vh;
  padding: 18px 14px;
  position: sticky;
  top: 0;
  align-self: start;
  overflow: auto;
  max-height: 100vh;
}
.settings-head {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #eef2f7;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.settings-head h2 {
  font-size: 18px;
  margin: 0;
}
.settings-head p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: 12px;
}
.settings-back {
  width: 36px;
  height: 36px;
  border: 1px solid #dbe5f3;
  background: #fff;
  border-radius: 9px;
  font-size: 22px;
  cursor: pointer;
}
.settings-group {
  margin: 16px 0;
}
.settings-group > p {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #64748b;
  margin: 10px 8px;
}
.settings-nav {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: #334155;
  cursor: pointer;
  font-weight: 600;
}
.settings-nav:hover {
  background: #eff6ff;
  color: #0b63ce;
}
.settings-nav.active {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.2);
}
.settings-main {
  padding: 0 0 60px;
  overflow: auto;
}
.settings-top {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.settings-top input {
  width: min(420px, 55vw);
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 18px;
  background: #f6f8fc;
}
.settings-title {
  padding: 28px 38px 10px;
}
.settings-title h1 {
  font-size: 26px;
  margin: 0 0 8px;
}
.settings-title p {
  color: #64748b;
  margin: 0;
}
.settings-hero {
  padding: 36px 38px 14px;
}
.settings-hero h1 {
  font-size: 30px;
  margin: 0 0 8px;
}
.settings-hero p {
  color: #64748b;
  max-width: 760px;
}
.settings-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 38px;
}
.settings-tile {
  text-align: left;
  background: #fff;
  border: 1px solid #e5eef9;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  min-height: 124px;
}
.settings-tile:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}
.settings-tile b {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}
.settings-tile span {
  display: block;
  color: #64748b;
  font-size: 13px;
  margin-bottom: 14px;
}
.settings-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}
.settings-status.done {
  background: #dcfce7;
  color: #166534;
}
.settings-status.todo {
  background: #fee2e2;
  color: #991b1b;
}
@media (max-width: 980px) {
  .settings-app {
    grid-template-columns: 1fr;
  }
  .settings-side {
    position: relative;
    min-height: auto;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }
  .settings-main {
    padding-bottom: 30px;
  }
  .settings-grid-cards {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }
  .settings-panel,
  .settings-title,
  .settings-hero {
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .stat-tabs {
    padding: 0 16px;
  }
  .settings-top {
    position: relative;
    justify-content: flex-start;
    padding: 12px 16px;
    height: auto;
    flex-wrap: wrap;
  }
  .settings-top input {
    width: 100%;
  }
  .usage-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .settings-grid-cards {
    grid-template-columns: 1fr;
  }
  .logo-upload-card {
    grid-template-columns: 1fr;
  }
  .settings-record {
    align-items: flex-start;
    flex-direction: column;
  }
  .record-actions {
    flex-wrap: wrap;
  }
  .settings-panel .form-grid.two {
    grid-template-columns: 1fr !important;
  }
  .week-selector span {
    padding: 10px 14px;
  }
}
.doc-filter-card {
  margin-bottom: 18px;
}
.doc-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
  align-items: center;
}
.doc-filter-grid input,
.doc-filter-grid select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d9e6f7;
  border-radius: 12px;
  background: #fff;
}
.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.chip {
  border: 1px solid #d9e6f7;
  background: #eef6ff;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  color: #10284f;
  cursor: pointer;
}
.chip.active {
  background: #1265f3;
  color: #fff;
  border-color: #1265f3;
}
.doc-bulk-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.doc-overview-list {
  display: grid;
  gap: 14px;
}
.doc-client-card {
  background: #fff;
  border: 1px solid #d9e6f7;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(13, 37, 76, 0.06);
}
.doc-client-main {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.doc-client-main h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.doc-client-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 280px;
}
.mini-stats.compact {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
}
.doc-detail-modal .table {
  font-size: 13px;
}
.doc-detail-modal h2 {
  margin-top: 0;
}
@media (max-width: 900px) {
  .doc-filter-grid {
    grid-template-columns: 1fr;
  }
  .doc-client-main {
    flex-direction: column;
  }
  .doc-client-actions {
    min-width: 0;
    justify-content: flex-start;
  }
}
.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.account-manager-card,
.team-filter-card,
.service-team-card {
  border: 1px solid #e5eefb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}
.team-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
}
.team-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.service-team-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-team-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.service-team-top h3 {
  margin: 0 0 5px;
  color: #08214d;
}
.service-team-top p {
  margin: 0;
}
.team-filter-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  align-items: center;
}
.team-filter-row input,
.team-filter-row select {
  margin: 0 !important;
}
.team-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #e5eefb;
}
.team-members {
  background: #f8fbff;
  border: 1px solid #e5eefb;
  border-radius: 16px;
  padding: 12px;
}
.team-members h4 {
  margin: 0 0 8px;
}
.team-members p {
  margin: 6px 0;
}
.badge.gray {
  background: #f1f5f9;
  color: #334155;
}
.badge.blue {
  background: #dbeafe;
  color: #1d4ed8;
}
@media (max-width: 900px) {
  .four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-filter-row {
    grid-template-columns: 1fr;
  }
  .team-service-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .four {
    grid-template-columns: 1fr;
  }
  .team-actions .btn {
    width: 100%;
  }
}
.qa-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}
.qa-tab {
  border: 1px solid #dbe8ff;
  background: #fff;
  color: #0b2147;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}
.qa-tab.active {
  background: linear-gradient(135deg, #1769ff, #09a9d8);
  color: #fff;
  box-shadow: 0 12px 25px rgba(23, 105, 255, 0.18);
}
.qa-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.qa-select-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #0b2147;
}
.qa-select-label select {
  min-width: 320px;
  border: 1px solid #dbe8ff;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}
.qa-hero-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #061b42, #0e78a0);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: 0 18px 45px rgba(10, 43, 91, 0.18);
}
.qa-hero-card h2 {
  font-size: 32px;
  margin: 5px 0;
}
.qa-hero-card p {
  color: #eaf6ff;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.16);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
}
.qa-progress-ring {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 8px solid rgba(255, 255, 255, 0.24);
}
.qa-progress-ring b {
  font-size: 30px;
}
.qa-progress-ring span {
  font-size: 12px;
  font-weight: 800;
}
.qa-stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 16px 0 20px;
}
.qa-step {
  border: 1px solid #dbe8ff;
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  text-align: center;
  min-height: 82px;
}
.qa-step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #edf4ff;
  color: #1769ff;
  font-weight: 900;
  margin-bottom: 8px;
}
.qa-step b {
  display: block;
  font-size: 12px;
  color: #0b2147;
}
.qa-step.done {
  background: #ecfff5;
  border-color: #b8f3d2;
}
.qa-step.done span {
  background: #10b981;
  color: #fff;
}
.qa-step.active {
  background: #eef6ff;
  border-color: #8cc4ff;
  box-shadow: 0 10px 25px rgba(23, 105, 255, 0.1);
}
.qa-step.active span {
  background: #1769ff;
  color: #fff;
}
.qa-panel {
  max-width: 760px;
}
.qa-bars {
  display: grid;
  gap: 9px;
  margin: 14px 0;
}
.qa-bars div {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.qa-bars b {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1769ff, #09a9d8);
  min-width: 3px;
}
.qa-bars em {
  font-style: normal;
  font-weight: 900;
  color: #0b2147;
}
.qa-cycle {
  border: 1px solid #dbe8ff;
  border-radius: 16px;
  background: #fff;
  margin: 10px 0;
  padding: 12px;
}
.qa-cycle summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.qa-feed {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.qa-feed > div {
  border-left: 4px solid #1769ff;
  background: #f7fbff;
  border-radius: 14px;
  padding: 14px;
}
.qa-feed b {
  display: block;
  color: #0b2147;
}
.qa-feed span,
.qa-feed small {
  color: #62708a;
  font-size: 12px;
}
.empty-state {
  border: 1px dashed #c9d9f2;
  background: #f8fbff;
  border-radius: 16px;
  padding: 18px;
  color: #62708a;
  text-align: center;
}
.success-inline {
  background: #ecfff5;
  border: 1px solid #b8f3d2;
  color: #06633d;
  border-radius: 14px;
  padding: 12px;
  margin-top: 10px;
  font-weight: 800;
}
@media (max-width: 900px) {
  .qa-stepper {
    grid-template-columns: repeat(2, 1fr);
  }
  .qa-hero-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .qa-select-label {
    display: block;
  }
  .qa-select-label select {
    min-width: 100%;
    margin-top: 8px;
  }
}
.client-main .qa-topbar {
  background: #fff;
  border: 1px solid #dbe8ff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.06);
  margin-bottom: 14px;
}
.client-main .qa-tabs {
  background: #f3f8ff;
  border: 1px solid #dbe8ff;
  border-radius: 18px;
  padding: 8px;
  margin: 14px 0 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.client-main .qa-tab {
  white-space: nowrap;
  box-shadow: none;
  border-radius: 13px;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  color: #51627a;
}
.client-main .qa-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #0f6bff, #16a5d9);
  box-shadow: 0 10px 24px rgba(15, 107, 255, 0.2);
}
.client-main .qa-hero-card {
  border-radius: 26px;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  align-items: center;
}
.client-main .qa-hero-card h2 {
  word-break: break-word;
  line-height: 1.15;
}
.client-main .qa-stepper {
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  overflow-x: auto;
  padding-bottom: 4px;
}
.client-main .qa-step {
  min-width: 110px;
  padding: 13px 10px;
  border-radius: 17px;
}
.client-main .qa-panel {
  max-width: none;
}
.client-main .qa-panel .form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.client-main .qa-panel .form label:nth-child(n + 6),
.client-main .qa-panel .form .notice,
.client-main .qa-panel .form button {
  grid-column: 1/-1;
}
.client-main .qa-bars div {
  grid-template-columns: 82px minmax(80px, 1fr) 38px;
}
.client-main .qa-cycle {
  box-shadow: 0 8px 22px rgba(10, 31, 68, 0.04);
}
.client-main .info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.client-main .info-grid p {
  background: #f8fbff;
  border: 1px solid #e1ecfb;
  border-radius: 14px;
  padding: 12px;
  margin: 0;
  min-width: 0;
}
.client-main .info-grid span {
  display: block;
  color: #64748b;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.client-main .info-grid b {
  display: block;
  color: #0b2147;
  word-break: break-word;
}
.client-main .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.client-main .stat-grid div {
  background: #f8fbff;
  border: 1px solid #e1ecfb;
  border-radius: 16px;
  padding: 13px;
  color: #64748b;
  font-weight: 800;
}
.client-main .stat-grid b {
  display: block;
  font-size: 24px;
  color: #0b2147;
  margin-top: 4px;
}
.client-main .table-wrap {
  border: 1px solid #e1ecfb;
  border-radius: 16px;
  background: #fff;
}
.client-main .table {
  min-width: 760px;
}
.client-main .empty-state {
  margin: 8px 0;
}
.client-main .success-inline {
  margin-bottom: 10px;
}
.modal-content .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.modal-content .stat-grid div {
  background: #f8fbff;
  border: 1px solid #e1ecfb;
  border-radius: 16px;
  padding: 12px;
  color: #64748b;
  font-weight: 800;
}
.modal-content .stat-grid b {
  display: block;
  font-size: 23px;
  color: #0b2147;
}
.modal-content details {
  background: #f8fbff;
  border: 1px solid #e1ecfb;
  border-radius: 18px;
  padding: 14px;
  margin: 14px 0;
}
.modal-content details summary {
  cursor: pointer;
}
.modal-content #qaActionForm,
.modal-content #qaCycleForm,
.modal-content #qaBugForm,
.modal-content #qaBuildForm,
.modal-content #qaDocForm {
  background: #fff;
  border: 1px solid #e1ecfb;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(10, 31, 68, 0.04);
}
@media (max-width: 900px) {
  .client-main .qa-hero-card {
    grid-template-columns: 1fr;
  }
  .client-main .qa-progress-ring {
    width: 96px;
    height: 96px;
    border-width: 6px;
  }
  .client-main .qa-panel .form,
  .client-main .info-grid {
    grid-template-columns: 1fr;
  }
  .client-main .qa-stepper {
    grid-template-columns: repeat(6, 120px);
  }
}
.qa-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}
.qa-tab {
  border: 1px solid #dce8f9;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: #06234d;
  cursor: pointer;
}
.qa-tab.active {
  background: linear-gradient(135deg, #1473ff, #02a5e8);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 115, 255, 0.25);
}
.qa-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.qa-select-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.qa-select-label select {
  min-width: 320px;
  border: 1px solid #d8e5f5;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}
.qa-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #062451, #0a92bc);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(8, 61, 119, 0.18);
}
.qa-hero-card p,
.qa-hero-card .eyebrow {
  color: #eaf6ff;
}
.qa-progress-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}
.qa-progress-ring b {
  font-size: 24px;
}
.qa-progress-ring span {
  font-size: 11px;
}
.qa-stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.qa-step {
  background: #fff;
  border: 1px solid #dce8f9;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}
.qa-step span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #edf5ff;
  color: #1565d8;
  font-weight: 900;
  margin-bottom: 5px;
}
.qa-step.done {
  background: #ecfff6;
  border-color: #b8f1d0;
}
.qa-step.done span {
  background: #16a34a;
  color: white;
}
.qa-step.active {
  border-color: #1473ff;
  box-shadow: 0 8px 22px rgba(20, 115, 255, 0.18);
}
.qa-step.active span {
  background: #1473ff;
  color: #fff;
}
.empty-state {
  border: 1px dashed #cfe0f4;
  background: #f8fbff;
  border-radius: 14px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6b7b93;
  padding: 18px;
}
.qa-bars div {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
}
.qa-bars b {
  display: block;
  height: 6px;
  background: #1473ff;
  border-radius: 999px;
  min-width: 3px;
}
.qa-feed {
  display: grid;
  gap: 10px;
}
.qa-feed > div {
  border-left: 4px solid #1473ff;
  background: #f8fbff;
  border-radius: 12px;
  padding: 12px;
}
.qa-feed span {
  display: block;
  color: #68758b;
  font-size: 12px;
}
.qa-cycle {
  background: #fff;
  border: 1px solid #dce8f9;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}
.qa-panel .form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.qa-panel .form textarea {
  min-height: 72px;
}
.qa-panel .form button {
  align-self: end;
  min-height: 48px;
}
.qa-admin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}
.qa-admin-tabs button {
  border: 1px solid #dce8f9;
  background: #f8fbff;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  cursor: pointer;
}
.qa-admin-tabs button.active {
  background: #1473ff;
  color: #fff;
}
.qa-admin-tab-panel {
  display: block;
}
.qa-admin-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.qa-admin-actions-grid .form {
  background: #fff;
  border: 1px solid #e2ebf7;
  border-radius: 14px;
  padding: 14px;
}
.qa-modal .table-wrap {
  max-width: 100%;
  overflow: auto;
}
.qa-modal .card {
  box-shadow: none;
}
.qa-metric-note {
  margin-top: 10px;
  color: #63758d;
  font-size: 12px;
}
@media (max-width: 900px) {
  .qa-stepper {
    grid-template-columns: repeat(2, 1fr);
  }
  .qa-panel .form,
  .qa-admin-actions-grid {
    grid-template-columns: 1fr;
  }
  .qa-hero-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .qa-select-label select {
    min-width: 100%;
    width: 100%;
  }
}
.qa-hero-card.customer-facing {
  background: linear-gradient(135deg, #08204a, #0b7ca4);
}
.qa-summary-card .info-grid p {
  min-height: 62px;
}
.qa-status-card .status-large {
  margin: 12px 0 10px;
}
.qa-status-card .badge {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
}
.qa-feed.compact {
  max-height: 280px;
  overflow: auto;
  padding-right: 4px;
}
.qa-feed.compact > div {
  padding: 12px 13px;
}
.client-main .qa-status-card p {
  margin: 8px 0;
}
@media (max-width: 900px) {
  .qa-summary-card .info-grid p {
    min-height: auto;
  }
  .qa-feed.compact {
    max-height: none;
  }
}
:root {
  --phase14-gap: 16px;
  --phase14-radius: 18px;
  --phase14-soft: #f8fbff;
  --phase14-border: #e1ecfb;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.admin-workspace,
.admin-main,
#content,
.client-main-panel,
.client-main,
.client-wrap,
.qa-modal,
.qa-admin-tab-panel {
  min-width: 0;
  max-width: 100%;
}
.admin-main .grid,
#content .grid,
.client-main .grid,
.client-main-panel .grid {
  align-items: stretch;
  gap: var(--phase14-gap);
}
.admin-main .card,
#content .card,
.client-main .card,
.client-main-panel .card {
  min-width: 0;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}
.admin-main .card h1,
.admin-main .card h2,
.admin-main .card h3,
.client-main .card h1,
.client-main .card h2,
.client-main .card h3 {
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.admin-main p,
.client-main p,
.admin-main td,
.client-main td {
  overflow-wrap: anywhere;
}
.admin-main .search,
#content .search {
  background: #fff;
  border: 1px solid var(--phase14-border);
  border-radius: var(--phase14-radius);
  padding: 12px;
  margin: 12px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}
.admin-main .search input,
.admin-main .search select,
.admin-main .search button {
  flex: 1 1 220px;
  min-width: 0;
}
.admin-main .search button {
  flex: 0 0 auto;
}
.table-wrap,
.table-card,
.admin-main .card:has(.table),
#content > .table,
.admin-main > .table,
.client-main .card:has(.table) {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
#content > .table,
.admin-main > .table {
  display: block;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--phase14-border);
}
.admin-main .table,
.client-main .table,
.modal-box .table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  table-layout: auto;
}
.admin-main .table th,
.admin-main .table td,
.client-main .table th,
.client-main .table td,
.modal-box .table th,
.modal-box .table td {
  vertical-align: top;
  line-height: 1.35;
}
.admin-main .table th,
.client-main .table th,
.modal-box .table th {
  white-space: nowrap;
}
.admin-main .table td:last-child,
.client-main .table td:last-child,
.modal-box .table td:last-child {
  white-space: normal;
}
.admin-main .table .btn,
.client-main .table .btn,
.modal-box .table .btn {
  margin: 2px;
  white-space: nowrap;
}
.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal-box,
.admin-modal-box,
.client-modal-box {
  width: min(1060px, 96vw) !important;
  max-width: 96vw !important;
  max-height: 92dvh !important;
  overflow: auto !important;
  border-radius: 22px !important;
  overscroll-behavior: contain;
}
.admin-modal-head,
.client-modal-box > div:first-child {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--phase14-border);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.modal-box .form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.modal-box textarea {
  max-height: 180px;
  resize: vertical;
}
.modal-box input,
.modal-box select,
.modal-box textarea {
  min-width: 0;
}
.qa-modal {
  display: block;
}
.qa-admin-tabs {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid var(--phase14-border);
  overflow-x: auto;
  flex-wrap: nowrap;
}
.qa-admin-tabs button {
  white-space: nowrap;
  flex: 0 0 auto;
}
.qa-admin-actions-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.qa-panel .form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.qa-hero-card,
.client-main .qa-hero-card {
  min-width: 0;
}
.qa-hero-card > * {
  min-width: 0;
}
.qa-stepper,
.client-main .qa-stepper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.qa-feed > div,
.portal-timeline > div,
.notice,
.doc-card,
.download-card {
  min-width: 0;
  overflow-wrap: anywhere;
}
.client-portal-shell {
  align-items: start;
}
.client-nav-panel,
.client-main-panel {
  min-width: 0;
}
.client-nav {
  gap: 8px;
}
.client-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.client-section-title {
  margin-bottom: 14px;
}
.client-section-title h2 {
  overflow-wrap: anywhere;
}
.doc-grid,
.download-grid,
.knowledge-grid,
.pay-summary,
.info-grid,
.quick-action-grid,
.team-service-grid {
  align-items: stretch;
}
.doc-card,
.download-card,
.pay-summary > div,
.info-grid p {
  height: auto;
}
.client-login-card {
  gap: 24px;
}
.client-login-box {
  min-width: 0;
}
@media (min-width: 1201px) {
  .admin-main .grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .client-main .doc-grid,
  .client-main .download-grid,
  .client-main .knowledge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-top-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
  }
  .admin-top-actions a {
    flex: 1 1 160px;
    text-align: center;
  }
  .admin-main .table,
  .client-main .table,
  .modal-box .table {
    min-width: 760px;
  }
  .qa-stepper,
  .client-main .qa-stepper {
    grid-template-columns: repeat(6, 130px) !important;
  }
  .client-main .qa-hero-card {
    grid-template-columns: 1fr !important;
  }
  .client-main .qa-progress-ring {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 760px) {
  .admin-shell {
    display: block;
  }
  .admin-sidebar {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible;
  }
  .admin-side-brand {
    min-height: auto;
  }
  .admin-side-scroll {
    display: flex !important;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0 12px;
  }
  .admin-side-scroll button {
    flex: 0 0 auto;
    min-width: max-content;
  }
  .admin-side-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .admin-workspace {
    display: block;
  }
  .admin-topbar {
    min-height: auto;
    padding: 16px;
  }
  .admin-topbar h1 {
    font-size: 26px;
    margin: 4px 0;
  }
  .admin-main {
    padding: 14px !important;
    overflow: hidden;
  }
  .admin-main .grid,
  #content .grid {
    grid-template-columns: 1fr !important;
  }
  .admin-main .search {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .admin-main .search input,
  .admin-main .search select,
  .admin-main .search button {
    width: 100%;
    flex: auto;
  }
  .admin-main .table,
  .client-main .table,
  .modal-box .table {
    min-width: 680px;
    font-size: 13px;
  }
  .admin-main .table th,
  .admin-main .table td,
  .client-main .table th,
  .client-main .table td,
  .modal-box .table th,
  .modal-box .table td {
    padding: 10px 9px;
  }
  .modal.open {
    padding: 10px;
    align-items: flex-start;
  }
  .modal-box,
  .admin-modal-box,
  .client-modal-box {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 94dvh !important;
    border-radius: 18px !important;
    padding: 16px !important;
  }
  .admin-modal-head h2,
  .client-modal-box h2 {
    font-size: 20px;
  }
  .modal-box .form {
    grid-template-columns: 1fr !important;
  }
  .modal-box .btn,
  .modal-box button {
    max-width: 100%;
  }
  .qa-admin-tabs {
    margin-top: -4px;
  }
  .qa-admin-tab-panel .card {
    padding: 14px;
  }
  .qa-panel .form,
  .qa-admin-actions-grid,
  .client-main .qa-panel .form {
    grid-template-columns: 1fr !important;
  }
  .client-wrap {
    width: min(100% - 22px, 1180px);
  }
  .client-login-card {
    grid-template-columns: 1fr !important;
    margin: 26px auto;
  }
  .client-portal-shell {
    display: block;
  }
  .client-nav-panel {
    margin-bottom: 14px;
  }
  .client-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .client-main-panel {
    overflow: visible;
  }
  .client-section-title {
    padding: 16px !important;
  }
  .client-main .qa-tabs {
    overflow-x: auto;
  }
  .client-main .qa-tab {
    flex: 0 0 auto;
  }
  .qa-hero-card,
  .client-main .qa-hero-card {
    padding: 20px;
    border-radius: 20px;
  }
  .qa-hero-card h2,
  .client-main .qa-hero-card h2 {
    font-size: 24px;
  }
  .qa-stepper,
  .client-main .qa-stepper {
    grid-template-columns: repeat(6, 122px) !important;
  }
  .pay-summary,
  .info-grid,
  .doc-grid,
  .download-grid,
  .knowledge-grid,
  .quick-action-grid,
  .team-service-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .admin-main {
    padding: 10px !important;
  }
  .admin-login-card,
  .client-login-box {
    padding: 16px !important;
  }
  .admin-side-actions {
    grid-template-columns: 1fr;
  }
  .admin-top-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .admin-main .card,
  #content .card,
  .client-main .card {
    padding: 14px !important;
    border-radius: 16px !important;
  }
  .stat {
    font-size: 22px;
  }
  .badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .admin-main .table,
  .client-main .table,
  .modal-box .table {
    min-width: 620px;
  }
  .qa-admin-tabs button,
  .qa-tab {
    padding: 9px 12px;
    font-size: 13px;
  }
  .qa-stepper,
  .client-main .qa-stepper {
    grid-template-columns: repeat(6, 112px) !important;
  }
  .qa-progress-ring,
  .client-main .qa-progress-ring {
    width: 84px;
    height: 84px;
    border-width: 6px;
  }
  .client-section-title h2 {
    font-size: 22px;
  }
  .portal-timeline > div {
    padding-left: 44px !important;
  }
}
.seo-breadcrumb {
  max-width: 1180px;
  margin: 14px auto 0;
  padding: 0 20px;
  font-size: 14px;
  color: #5b6b7a;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.seo-breadcrumb a {
  color: #0f3b63;
  text-decoration: none;
  font-weight: 700;
}
.seo-faq-section details {
  background: #fff;
  border: 1px solid rgba(15, 59, 99, 0.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 59, 99, 0.06);
}
.seo-faq-section summary {
  cursor: pointer;
  font-weight: 800;
  color: #0f263f;
}
.seo-faq-section p {
  margin: 10px 0 0;
  color: #536170;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.seo-related-links {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f5f9fc;
  border: 1px solid rgba(15, 59, 99, 0.1);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.seo-related-links a {
  color: #0f3b63;
  font-weight: 700;
  text-decoration: none;
}
.seo-service-section .feature p {
  line-height: 1.65;
}
.growth-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 18px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin: 10px 0 22px;
}
.breadcrumb a {
  color: #0f4c81;
  text-decoration: none;
}
.growth-hero {
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  border: 1px solid #dcecff;
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 28px;
}
.growth-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
}
.growth-search {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.growth-search input,
.growth-search select,
.growth-two input,
.growth-two select,
.growth-two textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
}
.growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 22px 0;
}
.growth-card {
  background: #fff;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(15, 76, 129, 0.06);
}
.growth-card h3 {
  margin-top: 8px;
}
.growth-card a {
  text-decoration: none;
  color: #0f4c81;
}
.meta-line {
  color: #667085;
  font-size: 0.92rem;
  margin: 10px 0;
}
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag-row span {
  background: #f2f4f7;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.8rem;
}
.growth-article {
  max-width: 880px;
  margin: auto;
}
.growth-article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.growth-article .lead {
  font-size: 1.15rem;
  color: #344054;
}
.link-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.link-grid a {
  display: inline-block;
  border: 1px solid #d8e2ef;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fbfdff;
  color: #0f4c81;
  text-decoration: none;
}
.growth-two {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}
.cta-panel {
  background: #0f4c81;
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  margin: 28px 0;
}
.cta-panel .btn {
  background: #fff;
  color: #0f4c81;
}
.video-box {
  aspect-ratio: 16/9;
  background: #eef2f6;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  color: #667085;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 22px 0;
}
.dashboard-grid div {
  background: #fff;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.dashboard-grid b {
  font-size: 2rem;
  color: #0f4c81;
  display: block;
}
.dashboard-grid span {
  color: #667085;
}
.mini-note {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #edf0f5;
  padding: 8px 0;
}
.mini-note button {
  border: 0;
  background: #fee;
  color: #b42318;
  border-radius: 8px;
}
@media (max-width: 760px) {
  .growth-search,
  .growth-two {
    grid-template-columns: 1fr;
  }
  .site-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
  background: #12213a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.site-header .logo {
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.site-header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.94;
}
.site-header nav a:hover {
  text-decoration: underline;
}
.site-footer {
  background: #12213a;
  color: #fff;
  padding: 28px;
  text-align: center;
  margin-top: 48px;
}
.site-footer a {
  color: #fff;
}
.growth-shell {
  padding-top: 28px;
}
.city-service-block {
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 20px;
  padding: 20px;
  margin: 18px 0;
  box-shadow: 0 10px 24px rgba(18, 33, 58, 0.04);
}
.city-service-block h2 {
  margin-top: 0;
}
.city-service-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.city-service-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 12px 14px;
  color: #0f4c81;
  text-decoration: none;
  font-weight: 700;
}
.city-service-links a:after {
  content: "→";
  opacity: 0.6;
}
.city-service-links a:hover {
  background: #eef7ff;
  border-color: #9cc8ff;
}
.seo-admin-pro {
  display: block;
}
.seo-admin-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f3f8ff, #fff);
  border: 1px solid #dcecff;
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 18px;
}
.seo-admin-head h1 {
  margin: 0.1rem 0 0.4rem;
}
.seo-admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.seo-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.seo-stat-grid div {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.05);
}
.seo-stat-grid b {
  display: block;
  font-size: 1.8rem;
  color: #0f4c81;
}
.seo-stat-grid span {
  color: #667085;
}
.seo-admin-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.seo-admin-tabs button {
  border: 1px solid #d8e2ef;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: #12213a;
  cursor: pointer;
}
.seo-admin-tabs button.active {
  background: #0f4c81;
  color: #fff;
  border-color: #0f4c81;
}
.seo-tab-panel {
  display: none;
}
.seo-tab-panel.active {
  display: block;
}
.seo-split {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}
.seo-form-card,
.seo-list-card {
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(18, 33, 58, 0.04);
}
.seo-form-card label {
  display: block;
  margin: 12px 0;
  font-weight: 700;
  color: #1d2939;
}
.seo-form-card input,
.seo-form-card select,
.seo-form-card textarea,
.seo-list-head input {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  padding: 12px;
  margin-top: 6px;
  font: inherit;
}
.seo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.seo-preview-box {
  background: #f8fbff;
  border: 1px dashed #9cc8ff;
  border-radius: 16px;
  padding: 14px;
  margin: 14px 0;
  color: #344054;
}
.seo-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.seo-list-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.seo-list-head input {
  max-width: 260px;
}
.seo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  background: #fbfdff;
}
.seo-row small {
  display: block;
  color: #667085;
  margin-top: 4px;
}
.seo-row a,
.seo-row button {
  border: 0;
  background: #eef7ff;
  color: #0f4c81;
  border-radius: 10px;
  padding: 8px 10px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.seo-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-chip-grid a {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 10px 12px;
  text-decoration: none;
  color: #0f4c81;
  font-weight: 700;
}
.seo-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.muted {
  color: #667085;
}
.btn.light {
  background: #f3f4f6;
  color: #111827;
}
.btn.danger {
  background: #dc2626;
  color: #fff;
}
@media (max-width: 900px) {
  .seo-admin-head,
  .seo-split,
  .seo-form-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .seo-admin-actions {
    justify-content: flex-start;
  }
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header nav {
    gap: 10px;
  }
  .seo-list-head {
    display: block;
  }
  .seo-list-head input {
    max-width: none;
  }
  .seo-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
.vkn-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.vkn-footer-social span {
  font-weight: 800;
  color: #dbeafe;
  font-size: 0.92rem;
  width: 100%;
}
.vkn-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.vkn-footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}
.vkn-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.vkn-footer-social span {
  font-weight: 800;
  color: #dbeafe;
  font-size: 0.92rem;
  width: 100%;
  letter-spacing: 0.01em;
}
.vkn-footer-social .vkn-social-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}
.vkn-footer-social .vkn-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
.vkn-footer-social .vkn-social-icon:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}
.vkn-footer-social .vkn-social-icon.instagram:hover {
  color: #f9a8d4;
}
.vkn-footer-social .vkn-social-icon.facebook:hover {
  color: #93c5fd;
}
.vkn-footer-social .vkn-social-icon.youtube:hover {
  color: #fca5a5;
}
.vkn-footer-social {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 14px !important;
  max-width: 220px !important;
}
.vkn-footer-social span {
  flex: 0 0 100% !important;
  width: 100% !important;
  font-weight: 800 !important;
  color: #dbeafe !important;
  font-size: 0.92rem !important;
  line-height: 1.2 !important;
  margin-bottom: 2px !important;
}
.vkn-footer-social .vkn-social-icon,
.vkn-footer-social a.vkn-social-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease !important;
  line-height: 0 !important;
  flex: 0 0 34px !important;
}
.vkn-footer-social .vkn-social-icon svg,
.vkn-footer-social a.vkn-social-icon svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  display: block !important;
  fill: #fff !important;
  color: #fff !important;
  flex: 0 0 18px !important;
}
.vkn-footer-social .vkn-social-icon.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  ) !important;
}
.vkn-footer-social .vkn-social-icon.facebook {
  background: #1877f2 !important;
}
.vkn-footer-social .vkn-social-icon.youtube {
  background: #ff0000 !important;
}
.vkn-footer-social .vkn-social-icon.linkedin {
  background: #0a66c2 !important;
}
.vkn-footer-social .vkn-social-icon:hover {
  transform: translateY(-2px) scale(1.06) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25) !important;
  filter: saturate(1.1) brightness(1.05) !important;
}
@media (max-width: 640px) {
  .vkn-footer-social {
    max-width: 100% !important;
    gap: 8px !important;
  }
  .vkn-footer-social .vkn-social-icon,
  .vkn-footer-social a.vkn-social-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    flex-basis: 32px !important;
  }
  .vkn-footer-social .vkn-social-icon svg,
  .vkn-footer-social a.vkn-social-icon svg {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
    flex-basis: 17px !important;
  }
}
.vkn-shared-header {
  min-height: 72px;
}
.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.brand-text {
  line-height: 1.25;
}
.vkn-shared-breadcrumb {
  width: min(1180px, 92vw);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: #5e6f8f;
  font-size: 14px;
}
.vkn-shared-breadcrumb a {
  color: #0f6bff;
  font-weight: 900;
}
.vkn-shared-breadcrumb span:last-child {
  font-weight: 800;
  color: #0b1736;
}
.vkn-shared-cta {
  margin-top: 36px;
  margin-bottom: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f6bff, #16c7d9);
  color: #fff;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}
.vkn-shared-cta b {
  display: block;
  font-size: 24px;
}
.vkn-shared-cta span {
  display: block;
  color: #eaf6ff;
  margin-top: 4px;
}
.vkn-footer {
  display: block;
  padding: 0;
  background: #07152e;
  color: #fff;
}
.vkn-footer-wrap {
  width: min(1180px, 92vw);
  margin: auto;
  padding: 42px 0 22px;
}
.vkn-footer-brand {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vkn-footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 20px;
}
.vkn-footer-brand h2 {
  margin: 0 0 6px;
}
.vkn-footer-brand p {
  margin: 0;
  color: #c9d8ef;
  max-width: 850px;
}
.vkn-footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.vkn-footer-badges span {
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: #e8f1ff;
}
.vkn-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  padding: 28px 0;
}
.vkn-footer-col h3 {
  margin: 0 0 12px;
  color: #fff;
}
.vkn-footer-col a {
  display: block;
  color: #c9d8ef;
  margin: 8px 0;
}
.vkn-footer-col a:hover {
  color: #fff;
}
.vkn-footer-contact p {
  margin: 8px 0;
  color: #c9d8ef;
}
.vkn-footer-wa {
  display: inline-block !important;
  background: #25d366 !important;
  color: #092313 !important;
  border-radius: 999px;
  padding: 9px 13px !important;
  font-weight: 900;
  margin-top: 10px !important;
}
.vkn-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.vkn-footer-social a {
  width: 28px;
  height: 28px;
  display: inline-grid !important;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  color: #fff !important;
  margin: 0 !important;
}
.vkn-footer-social .fb {
  background: #1877f2;
}
.vkn-footer-social .ig {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0,
    #fdf497 12%,
    #fd5949 42%,
    #d6249f 65%,
    #285aeb 100%
  );
}
.vkn-footer-social .li {
  background: #0a66c2;
}
.vkn-footer-social .yt {
  background: #ff0000;
}
.vkn-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #aebfda;
  font-size: 13px;
}
.site-nav a.active {
  background: #173d7c;
  color: #fff !important;
}
.seo-public-body .vkn-shared-header {
  position: sticky;
  top: 0;
}
.seo-public-body .seo-public-main {
  width: min(1180px, 92vw);
  margin: auto;
  padding: 36px 0 70px;
}
@media (max-width: 880px) {
  .vkn-shared-cta {
    display: block;
  }
  .vkn-shared-cta a {
    margin-top: 16px;
  }
  .vkn-footer-brand {
    grid-template-columns: 1fr;
  }
  .vkn-footer-bottom {
    display: block;
  }
  .brand-logo-img {
    width: 42px;
    height: 42px;
  }
}
.vkn-shared-footer .vkn-footer-grid {
  grid-template-columns: repeat(5, minmax(150px, 1fr)) !important;
  gap: 28px !important;
  align-items: start !important;
}
.vkn-shared-footer .vkn-footer-col h3 {
  text-align: left !important;
  margin-bottom: 14px !important;
}
.vkn-shared-footer .vkn-footer-col a,
.vkn-shared-footer .vkn-footer-contact p {
  text-align: left !important;
  line-height: 1.55 !important;
}
.vkn-shared-footer .vkn-footer-contact {
  text-align: left !important;
}
.vkn-shared-footer .vkn-footer-social {
  display: grid !important;
  grid-template-columns: repeat(4, 36px) !important;
  grid-auto-rows: 36px !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: start !important;
  margin-top: 16px !important;
  max-width: 184px !important;
}
.vkn-shared-footer .vkn-footer-social span {
  grid-column: 1 / -1 !important;
  width: auto !important;
  height: auto !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  color: #eaf3ff !important;
  line-height: 1.2 !important;
  margin: 0 0 2px !important;
  text-align: left !important;
}
.vkn-shared-footer .vkn-footer-social .vkn-social-icon {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-align: center !important;
  transform: none !important;
}
.vkn-shared-footer .vkn-footer-social .facebook {
  background: #1877f2 !important;
}
.vkn-shared-footer .vkn-footer-social .instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 6%,
    #fd5949 45%,
    #d6249f 62%,
    #285aeb 100%
  ) !important;
}
.vkn-shared-footer .vkn-footer-social .linkedin {
  background: #0a66c2 !important;
  font-size: 12px !important;
}
.vkn-shared-footer .vkn-footer-social .youtube {
  background: #ff0000 !important;
  font-size: 13px !important;
}
.vkn-shared-footer .vkn-footer-bottom a {
  display: inline !important;
  color: #c9d8ef !important;
  margin: 0 !important;
}
.vkn-shared-footer .vkn-footer-bottom a:hover {
  color: #fff !important;
  transform: none !important;
}
@media (max-width: 1100px) {
  .vkn-shared-footer .vkn-footer-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .vkn-shared-footer .vkn-footer-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr)) !important;
  }
}
@media (max-width: 520px) {
  .vkn-shared-footer .vkn-footer-grid {
    grid-template-columns: 1fr !important;
  }
  .vkn-shared-footer .vkn-footer-social {
    grid-template-columns: repeat(4, 36px) !important;
  }
}
.seo-growth-page .breadcrumb {
  display: none !important;
}
.home-resource-section {
  background: linear-gradient(135deg, #f7fbff, #eef6ff);
  border: 1px solid #dbeafe;
  border-radius: 30px;
  margin-top: 38px;
  margin-bottom: 38px;
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(7, 21, 46, 0.07);
}
.section-head.centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 22px;
}
.section-head.centered h2 {
  margin: 0.35rem 0 0.55rem;
  color: #07152e;
}
.section-head.centered p {
  margin: 0 auto;
  color: #52647d;
  line-height: 1.65;
}
.home-resource-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.home-resource-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfeaf7;
  text-decoration: none;
  color: #07152e;
  box-shadow: 0 10px 28px rgba(7, 21, 46, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.home-resource-card strong {
  font-size: 17px;
  line-height: 1.25;
}
.home-resource-card span {
  margin-top: 12px;
  color: #52647d;
  line-height: 1.5;
  font-size: 14px;
}
.home-resource-card:after {
  content: "Open →";
  margin-top: 16px;
  color: #0f6bff;
  font-weight: 900;
}
.home-resource-card:hover {
  transform: translateY(-3px);
  border-color: #9cc8ff;
  box-shadow: 0 18px 42px rgba(15, 107, 255, 0.13);
}
@media (max-width: 1100px) {
  .home-resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .home-resource-section {
    padding: 26px 18px;
    border-radius: 24px;
  }
  .home-resource-grid {
    grid-template-columns: 1fr;
  }
  .home-resource-card {
    min-height: auto;
  }
}
.admin-setup-card {
  width: min(540px, 92vw);
  margin: 5vh auto;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}
.admin-setup-card input {
  width: 100%;
  padding: 14px 16px;
  margin: 8px 0 14px;
  border: 1px solid #dbe5f1;
  border-radius: 16px;
  background: #f8fbff;
  font-size: 15px;
  outline: none;
}
.admin-setup-card input:focus {
  border-color: #0f6bff;
  box-shadow: 0 0 0 4px rgba(15, 107, 255, 0.1);
  background: #fff;
}
.setup-form label {
  display: block;
  font-weight: 850;
  color: #334155;
  font-size: 14px;
  margin-bottom: 2px;
}
.setup-note {
  background: #eef6ff;
  border: 1px solid #dbeafe;
  color: #0b2c63;
  border-radius: 14px;
  padding: 12px;
  margin: 2px 0 10px;
  font-weight: 750;
  font-size: 13px;
}
.setup-message {
  margin-top: 10px;
}
.error-inline {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  border-radius: 14px;
  padding: 12px;
  margin-top: 10px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .admin-setup-card {
    padding: 16px !important;
    border-radius: 20px !important;
  }
}
@media (max-width: 880px) {
  .site-header {
    display: grid !important;
    grid-template-columns: 1fr 48px !important;
    align-items: center !important;
    padding: 10px 14px !important;
    min-height: 66px !important;
    background: #07152e !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
  }
  .brand-block {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
  }
  .brand-block b {
    font-size: 15px !important;
    line-height: 1.15 !important;
  }
  .brand-block small {
    font-size: 10px !important;
    line-height: 1.2 !important;
  }
  .brand-logo-img,
  .brand-block img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
  }
  .mobile-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 12px !important;
    background: #173d7c !important;
    color: white !important;
  }
  .mobile-menu::before {
    content: "☰";
    font-size: 26px;
    line-height: 1;
  }
  .site-nav {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 12px !important;
    right: 12px !important;
    background: #07152e !important;
    padding: 12px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35) !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    z-index: 10000 !important;
  }
  body.menu-open .site-nav,
  .menu-open .site-nav {
    display: grid !important;
  }
  .site-nav a {
    display: block !important;
    width: 100% !important;
    padding: 13px 14px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    text-align: left !important;
  }
  .site-nav a.active,
  .site-nav a:hover,
  .site-nav .nav-pill {
    background: #173d7c !important;
    color: white !important;
  }
  .vkn-mobile-qa-cta,
  .vkn-global-wa,
  .qa20-whatsapp,
  .qa20-mobile-enquiry {
    display: none !important;
  }
  .hero-premium {
    padding: 46px 6vw !important;
  }
}
.about-page {
  background: radial-gradient(
      circle at 8% 15%,
      rgba(75, 104, 255, 0.06),
      transparent 26rem
    ),
    radial-gradient(
      circle at 92% 34%,
      rgba(28, 206, 216, 0.05),
      transparent 24rem
    ),
    #f7f9fd;
  color: #16213d;
}
.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
}
.about-page main {
  overflow: hidden;
}
.about-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.about-section {
  position: relative;
  padding: 96px 0;
}
.about-section-heading {
  max-width: 680px;
}
.about-heading-center {
  margin-inline: auto;
  text-align: center;
}
.about-section-heading h2,
.about-audience-copy h2,
.about-transparency-box h2 {
  margin: 13px 0 17px;
  color: #111d40;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.about-section-heading > p,
.about-audience-copy > p {
  margin: 0;
  color: #64708a;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #176b8d;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.about-eyebrow::before {
  width: 27px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6a55ff, #1cced8);
  content: "";
}
.about-hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 125px 0 100px;
  overflow: hidden;
  background: linear-gradient(
      128deg,
      rgba(5, 14, 61, 0.98),
      rgba(15, 34, 103, 0.96)
    ),
    #081447;
}
.about-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.33;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
}
.about-hero::after {
  position: absolute;
  right: -170px;
  bottom: -310px;
  z-index: -2;
  width: 710px;
  height: 710px;
  border: 1px solid rgba(106, 125, 255, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(84, 113, 255, 0.04),
    0 0 0 150px rgba(84, 113, 255, 0.025);
  content: "";
}
.about-hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(15px);
  pointer-events: none;
}
.about-hero-glow-one {
  top: -140px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: rgba(98, 69, 255, 0.19);
}
.about-hero-glow-two {
  top: 90px;
  right: 5%;
  width: 390px;
  height: 390px;
  background: rgba(23, 218, 222, 0.13);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(340px, 0.68fr);
  gap: 78px;
  align-items: center;
}
.about-hero-content {
  max-width: 745px;
}
.about-hero .about-eyebrow {
  color: #7de6ef;
}
.about-hero-content h1 {
  max-width: 790px;
  margin: 20px 0 25px;
  color: #ffffff;
  font-size: clamp(3.1rem, 6.3vw, 5.8rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.058em;
}
.about-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #8d7cff, #38d7ea 70%, #8bf0cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero-intro {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.07rem, 2vw, 1.22rem);
  line-height: 1.78;
}
.about-hero-note {
  max-width: 680px;
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(72, 218, 231, 0.68);
  color: rgba(225, 232, 255, 0.7);
  font-size: 0.98rem;
  line-height: 1.73;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.about-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    background-color 0.22s ease, border-color 0.22s ease;
}
.about-btn:hover {
  transform: translateY(-2px);
}
.about-btn-primary {
  background: linear-gradient(135deg, #6d56ff, #25cddd);
  box-shadow: 0 14px 35px rgba(45, 150, 224, 0.27);
  color: #ffffff;
}
.about-btn-primary:hover {
  box-shadow: 0 18px 43px rgba(45, 150, 224, 0.37);
  color: #ffffff;
}
.about-btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  backdrop-filter: blur(10px);
}
.about-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.about-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 35px;
}
.about-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 650;
}
.about-trust-icon {
  display: inline-grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border: 1px solid rgba(82, 226, 219, 0.42);
  border-radius: 50%;
  background: rgba(55, 207, 204, 0.1);
  color: #6de4dc;
  font-size: 0.72rem;
}
.about-hero-card {
  position: relative;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: 0 35px 90px rgba(0, 4, 37, 0.38);
  backdrop-filter: blur(18px);
}
.about-hero-card::before {
  position: absolute;
  top: -80px;
  right: -75px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(36, 220, 222, 0.11);
  content: "";
}
.about-brand-mark {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 22px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(7, 18, 69, 0.85);
}
.about-brand-mark img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}
.about-card-label {
  color: #68dce7;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-hero-card h2 {
  margin: 11px 0 25px;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.about-mini-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-mini-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-mini-list li > span {
  color: #7bdeea;
  font-size: 0.72rem;
  font-weight: 800;
}
.about-mini-list strong,
.about-mini-list small {
  display: block;
}
.about-mini-list strong {
  color: #ffffff;
  font-size: 0.91rem;
}
.about-mini-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}
.about-intro-section {
  background: #ffffff;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 85px;
  align-items: start;
}
.about-sticky-heading {
  position: sticky;
  top: 115px;
}
.about-reading-content {
  max-width: 730px;
}
.about-reading-content p {
  margin: 0 0 23px;
  color: #59657d;
  font-size: 1.04rem;
  line-height: 1.91;
}
.about-reading-content .about-lead {
  color: #273450;
  font-size: 1.21rem;
  line-height: 1.82;
}
.about-principle-box {
  margin-top: 38px;
  padding: 28px 31px;
  border: 1px solid #dfe7f5;
  border-left: 4px solid #6157ec;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(
    135deg,
    rgba(96, 83, 236, 0.06),
    rgba(34, 202, 213, 0.045)
  );
}
.about-principle-box > span {
  color: #5c60d6;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.about-principle-box blockquote {
  margin: 13px 0 0;
  color: #172342;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.66;
}
.about-purpose-section {
  background: #f6f8fc;
}
.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 50px;
}
.about-purpose-card {
  position: relative;
  min-height: 330px;
  padding: 35px 31px;
  overflow: hidden;
  border: 1px solid #e0e7f2;
  border-radius: 21px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(25, 40, 87, 0.055);
}
.about-purpose-card-featured {
  border-color: transparent;
  background: linear-gradient(145deg, #111e5b, #132c74);
  box-shadow: 0 22px 65px rgba(18, 34, 105, 0.2);
}
.about-purpose-number {
  position: absolute;
  top: 21px;
  right: 25px;
  color: #dfe6f2;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}
.about-purpose-card-featured .about-purpose-number {
  color: rgba(255, 255, 255, 0.08);
}
.about-purpose-icon {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(104, 82, 247, 0.11),
    rgba(31, 205, 215, 0.12)
  );
  color: #5960d9;
  font-size: 1.35rem;
  font-weight: 800;
}
.about-purpose-card-featured .about-purpose-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #6ee0e8;
}
.about-purpose-card h3 {
  margin: 28px 0 14px;
  color: #172241;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}
.about-purpose-card p {
  margin: 0;
  color: #66728a;
  font-size: 0.96rem;
  line-height: 1.77;
}
.about-purpose-card-featured h3 {
  color: #ffffff;
}
.about-purpose-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}
.about-services-section {
  background: #ffffff;
}
.about-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
  margin-top: 51px;
}
.about-service-card {
  position: relative;
  padding: 34px;
  border: 1px solid #e0e7f1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 17px 52px rgba(27, 45, 91, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.about-service-card:hover {
  transform: translateY(-5px);
  border-color: #bbc9ee;
  box-shadow: 0 25px 65px rgba(27, 45, 91, 0.1);
}
.about-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-service-code {
  color: #9ca8bf;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.about-service-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #eef0ff, #e9fbfc);
  color: #4d59d2;
  font-size: 1.3rem;
  font-weight: 900;
}
.about-service-card h3 {
  margin: 24px 0 11px;
  color: #14203e;
  font-size: 1.52rem;
  letter-spacing: -0.025em;
}
.about-service-card > p {
  margin: 0;
  color: #69758c;
  font-size: 0.96rem;
  line-height: 1.72;
}
.about-service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 25px 0;
  padding: 23px 0;
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
  list-style: none;
}
.about-service-card li {
  position: relative;
  padding-left: 17px;
  color: #45516a;
  font-size: 0.86rem;
  line-height: 1.5;
}
.about-service-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6654ed, #25cbd6);
  content: "";
}
.about-service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #324da6;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}
.about-service-card > a:hover {
  color: #2a899a;
}
.about-process-section {
  background: linear-gradient(140deg, #0b1649, #102765);
  color: #ffffff;
}
.about-process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 85px;
  align-items: start;
}
.about-process-section .about-eyebrow {
  color: #64dce7;
}
.about-process-section .about-section-heading h2 {
  color: #ffffff;
}
.about-process-section .about-section-heading p {
  color: rgba(255, 255, 255, 0.66);
}
.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: #79e3ea;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}
.about-process-list {
  position: relative;
}
.about-process-list::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(90, 218, 229, 0.7),
    rgba(106, 91, 240, 0.2)
  );
  content: "";
}
.about-process-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 0 0 34px;
}
.about-process-item:last-child {
  padding-bottom: 0;
}
.about-process-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(105, 219, 229, 0.38);
  border-radius: 16px;
  background: #12255f;
  color: #71dce6;
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.17);
}
.about-process-item h3 {
  margin: 1px 0 8px;
  color: #ffffff;
  font-size: 1.2rem;
}
.about-process-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  line-height: 1.75;
}
.about-trust-section {
  background: #f7f9fd;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.about-value-card {
  padding: 28px;
  border: 1px solid #e2e8f2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 13px 40px rgba(25, 40, 87, 0.04);
}
.about-value-icon {
  display: inline-flex;
  min-width: 42px;
  height: 31px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 999px;
  background: #eef1ff;
  color: #5860d8;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.about-value-card h3 {
  margin: 20px 0 10px;
  color: #172340;
  font-size: 1.12rem;
}
.about-value-card p {
  margin: 0;
  color: #68748c;
  font-size: 0.91rem;
  line-height: 1.72;
}
.about-audience-section {
  background: #ffffff;
}
.about-audience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: center;
}
.about-audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-audience-tags span {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid #dce4f1;
  border-radius: 999px;
  background: #f8faff;
  color: #43506b;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 7px 20px rgba(23, 42, 91, 0.035);
}
.about-transparency-section {
  padding-top: 20px;
  background: #ffffff;
}
.about-transparency-box {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 27px;
  padding: 42px;
  border: 1px solid #dce5f4;
  border-radius: 23px;
  background: linear-gradient(
    135deg,
    rgba(99, 85, 235, 0.055),
    rgba(36, 204, 214, 0.045)
  );
}
.about-transparency-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #6255ec, #22c8d3);
  box-shadow: 0 14px 30px rgba(67, 103, 212, 0.2);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}
.about-transparency-box h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.about-transparency-box p {
  max-width: 930px;
  margin: 0 0 13px;
  color: #5c6880;
  font-size: 0.96rem;
  line-height: 1.78;
}
.about-transparency-box p:last-child {
  margin-bottom: 0;
}
.about-faq-section {
  background: #f7f9fd;
}
.about-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 48px;
  align-items: start;
}
.about-faq-item {
  overflow: hidden;
  border: 1px solid #dfe6f1;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(23, 40, 83, 0.04);
}
.about-faq-item summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  padding: 20px 22px;
  color: #1a2745;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}
.about-faq-item summary::-webkit-details-marker {
  display: none;
}
.about-faq-item summary span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border-radius: 50%;
  background: #edf1ff;
  color: #5661d5;
  font-size: 1.17rem;
  transition: transform 0.2s ease;
}
.about-faq-item[open] {
  border-color: #bbc9ee;
}
.about-faq-item[open] summary span {
  transform: rotate(45deg);
}
.about-faq-answer {
  padding: 0 22px 21px;
}
.about-faq-answer p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #edf1f6;
  color: #657187;
  font-size: 0.91rem;
  line-height: 1.73;
}
.about-final-section {
  padding: 95px 0 70px;
  background: #ffffff;
}
.about-final-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 53px;
  overflow: hidden;
  border-radius: 27px;
  background: linear-gradient(135deg, #0b174d, #163786);
  box-shadow: 0 30px 80px rgba(13, 34, 101, 0.22);
}
.about-final-card::after {
  position: absolute;
  top: -120px;
  right: -85px;
  width: 370px;
  height: 370px;
  border: 65px solid rgba(78, 222, 225, 0.07);
  border-radius: 50%;
  content: "";
}
.about-final-card > * {
  position: relative;
  z-index: 1;
}
.about-eyebrow-light {
  color: #72e0e7;
}
.about-final-card h2 {
  max-width: 680px;
  margin: 14px 0 13px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.about-final-card p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1rem;
  line-height: 1.73;
}
.about-final-actions {
  display: grid;
  min-width: 205px;
  gap: 12px;
}
.about-btn-light {
  background: #ffffff;
  color: #122358;
}
.about-btn-light:hover {
  color: #122358;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.about-btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.about-btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}
.about-contact-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.25fr;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid #e0e7f1;
  border-radius: 16px;
  background: #ffffff;
}
.about-contact-strip > * {
  min-width: 0;
  padding: 21px 24px;
  border-right: 1px solid #e7ecf4;
  text-decoration: none;
}
.about-contact-strip > *:last-child {
  border-right: 0;
}
.about-contact-strip small,
.about-contact-strip strong {
  display: block;
}
.about-contact-strip small {
  margin-bottom: 7px;
  color: #8994aa;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.about-contact-strip strong {
  overflow-wrap: anywhere;
  color: #26334f;
  font-size: 0.89rem;
}
.about-page a:focus-visible,
.about-page summary:focus-visible {
  outline: 3px solid rgba(42, 194, 211, 0.55);
  outline-offset: 4px;
}
@media (max-width: 980px) {
  .about-section {
    padding: 78px 0;
  }
  .about-hero {
    padding-top: 105px;
  }
  .about-hero-grid,
  .about-intro-grid,
  .about-process-layout,
  .about-audience-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-hero-card {
    max-width: 610px;
  }
  .about-sticky-heading {
    position: static;
  }
  .about-purpose-grid,
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-purpose-card-featured {
    order: -1;
  }
  .about-final-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-final-actions {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
  }
  .about-contact-strip {
    grid-template-columns: 1fr;
  }
  .about-contact-strip > * {
    border-right: 0;
    border-bottom: 1px solid #e7ecf4;
  }
  .about-contact-strip > *:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 700px) {
  .about-container {
    width: min(100% - 26px, 1180px);
  }
  .about-section {
    padding: 65px 0;
  }
  .about-hero {
    min-height: auto;
    padding: 92px 0 68px;
  }
  .about-hero-content h1 {
    font-size: clamp(2.65rem, 12vw, 4.25rem);
  }
  .about-hero-intro {
    font-size: 1rem;
  }
  .about-hero-actions,
  .about-final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .about-btn {
    width: 100%;
  }
  .about-hero-trust {
    display: grid;
    gap: 11px;
  }
  .about-hero-card,
  .about-service-card,
  .about-purpose-card {
    padding: 25px;
    border-radius: 18px;
  }
  .about-purpose-grid,
  .about-service-grid,
  .about-values-grid,
  .about-faq-grid {
    grid-template-columns: 1fr;
  }
  .about-service-card ul {
    grid-template-columns: 1fr;
  }
  .about-transparency-box {
    grid-template-columns: 1fr;
    padding: 27px;
  }
  .about-final-card {
    padding: 31px 24px;
    border-radius: 21px;
  }
  .about-contact-strip > * {
    padding: 18px;
  }
}
@media (max-width: 420px) {
  .about-hero-content h1 {
    font-size: 2.55rem;
  }
  .about-hero-card {
    padding: 21px;
  }
  .about-brand-mark {
    width: 80px;
    height: 80px;
  }
  .about-section-heading h2,
  .about-audience-copy h2,
  .about-transparency-box h2 {
    font-size: 1.85rem;
  }
  .about-principle-box {
    padding: 23px;
  }
  .about-faq-item summary {
    padding: 18px;
  }
  .about-faq-answer {
    padding: 0 18px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-page *,
  .about-page *::before,
  .about-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

