/* Global consistency patch: homepage-style header, footer, buttons, cards, and containers */
:root {
  --z-blue: #0b63f6;
  --z-blue-dark: #0755dd;
  --z-ink: #071632;
  --z-muted: #536581;
  --z-line: #dbe8fb;
}
body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--z-ink);
  background: #fff;
}
.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(217, 229, 247, 0.72);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--z-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 38px;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
}
.main-nav a {
  color: #111b30;
  text-decoration: none;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--z-blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.login {
  font-size: 14px;
  font-weight: 700;
  color: #111b30;
  text-decoration: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #0b67ff, #0755dd);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 96, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(0, 96, 255, 0.22);
}
.btn-secondary {
  background: #fff;
  color: #075ee7;
  border-color: #d7e3f4;
}
.btn-white {
  background: #fff;
  color: #075ee7;
  border-color: #fff;
}
.nav-actions .btn {
  padding: 14px 22px;
}
.btn-lg {
  height: 58px;
  padding: 0 34px;
  font-size: 16px;
}
.site-footer {
  padding: 64px 0 30px;
  background: #fff;
  border-top: 1px solid #edf3fb;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 56px;
}
.site-footer h2 {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.site-footer h3 {
  font-size: 14px;
  margin: 0 0 16px;
  font-weight: 800;
  color: var(--z-ink);
}
.site-footer p {
  color: #60708a;
  line-height: 1.7;
  margin: 0 0 22px;
}
.site-footer a {
  display: block;
  margin-bottom: 12px;
  color: #233c62;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.social {
  display: flex;
  gap: 14px;
}
.social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #0b63f6;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #e2ebf7;
  display: flex;
  justify-content: space-between;
  color: #71819a;
  font-size: 13px;
}
.footer-bottom nav {
  display: flex;
  gap: 34px;
}
.footer-bottom a {
  margin: 0;
  color: #61738e;
}
.bottom-area {
  padding: 30px 0 68px;
}
.cta-banner {
  border-radius: 24px;
  background: linear-gradient(135deg, #0b67ff, #6e32ea);
  color: #fff;
  padding: 42px 54px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 26px;
  box-shadow: 0 30px 80px rgba(55, 91, 220, 0.22);
  margin-bottom: 38px;
}
.cta-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}
.cta-icon svg {
  width: 50px;
  height: 50px;
  fill: white;
  opacity: 0.9;
}
.cta-banner h2 {
  font-size: 38px;
  line-height: 1;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.cta-banner p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-banner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  font-weight: 900;
}
.cta-banner li:before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #20c976;
  margin-right: 10px;
  color: #fff;
}
.long-content-card {
  border: 1px solid #dbe8fb;
  border-radius: 24px;
  background: #fff;
  padding: 44px 58px;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 34px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.05);
}
.long-content-card h2 {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.long-content-card p {
  font-size: 18px;
  line-height: 1.75;
  color: #17345d;
  margin: 0 0 16px;
}
.long-content-card a {
  color: #0b63f6;
  font-weight: 900;
  text-decoration: none;
}
.content-visual {
  justify-self: end;
  width: 150px;
  height: 120px;
  border: 1px solid #e4eef9;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(42, 86, 150, 0.12);
  display: grid;
  place-items: center;
  position: relative;
}
.content-visual:before {
  content: '';
  width: 72px;
  height: 10px;
  border-radius: 99px;
  background: #cfdbeb;
  position: absolute;
  top: 38px;
}
.content-visual:after {
  content: '✓';
  position: absolute;
  right: -18px;
  bottom: 10px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #29c579;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 500;
}
.smile {
  width: 92px;
  height: 42px;
  border-bottom: 9px solid #0b67ff;
  border-radius: 0 0 100px 100px;
  margin-top: 20px;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner {
    grid-template-columns: 1fr;
  }
  .long-content-card {
    grid-template-columns: 1fr;
  }
  .content-visual {
    justify-self: start;
  }
}
@media (max-width: 760px) {
  .site-footer {
    padding: 30px 0;
  }
  .footer-grid {
    gap: 20px;
  }
  .container {
    width: min(100% - 32px, 1180px);
  }
  .main-nav {
    display: none;
  }
  .nav-actions .login {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 18px;
  }
  .footer-bottom nav {
    flex-wrap: wrap;
  }
  .cta-banner,
  .long-content-card {
    padding: 30px;
  }
  .cta-banner ul {
    gap: 14px;
    display: grid;
  }
}

/* Template dropdown and industry page system */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-item-dropdown > a:after {
  content: '';
  display: inline-block;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: 0.55;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(32, 78, 141, 0.16);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
  z-index: 200;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: grid !important;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  margin: 0 !important;
  color: #071632 !important;
}
.dropdown-menu a:hover {
  background: #f4f8ff;
  color: #0b63f6 !important;
}
.dropdown-menu .drop-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef5ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.dropdown-menu b {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}
.dropdown-menu small {
  display: block;
  color: #6b7c95;
  font-size: 11px;
  margin-top: 3px;
}
.industry-page {
  background: #fff;
}
.industry-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 54px;
  background: radial-gradient(circle at 78% 20%, #eef3ff 0, #fff 38%, #fff 100%);
}
.industry-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40, 107, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 107, 215, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}
.industry-hero .container {
  position: relative;
  z-index: 2;
}
.industry-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.industry-hero h1 {
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.075em;
  margin: 0 0 20px;
  font-weight: 800;
  color: #071632;
}
.gradient-text {
  background: linear-gradient(90deg, #0b67ff 0%, #315df5 52%, #7b3ff2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-sub {
  font-size: 19px;
  line-height: 1.7;
  color: #4b5d7a;
  margin: 0 0 28px;
  max-width: 610px;
}
.industry-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.industry-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.industry-pills span {
  height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe8fb;
  border-radius: 999px;
  background: #fff;
  color: #536581;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(22, 75, 150, 0.05);
}
.industry-visual {
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(19, 74, 153, 0.12);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.industry-visual:before {
  content: '';
  position: absolute;
  right: -160px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 99, 246, 0.12), transparent 68%);
}
.industry-window {
  position: relative;
  z-index: 2;
  border: 1px solid #e5eef9;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}
.industry-window-head {
  height: 66px;
  background: #f8fbff;
  border-bottom: 1px solid #e5eef9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}
.industry-dots {
  display: flex;
  gap: 7px;
}
.industry-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d6e8;
}
.industry-window-title {
  font-size: 13px;
  font-weight: 900;
  color: #536581;
}
.industry-preview {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 360px;
}
.industry-sidebar {
  background: #0a1428;
  padding: 24px;
}
.industry-sidebar b {
  display: block;
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}
.industry-sidebar span {
  display: block;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  margin-bottom: 10px;
}
.industry-main {
  padding: 26px;
}
.industry-main h3 {
  font-size: 28px;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}
.industry-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.industry-stat {
  border: 1px solid #e5eef9;
  border-radius: 14px;
  padding: 14px;
}
.industry-stat small {
  display: block;
  color: #6b7c95;
  font-weight: 800;
}
.industry-stat b {
  font-size: 22px;
}
.industry-line {
  height: 12px;
  background: #e5eef9;
  border-radius: 99px;
  margin: 14px 0;
}
.industry-line.blue {
  background: #0b63f6;
  width: 70%;
}
.industry-line.green {
  background: #10a862;
  width: 52%;
}
.industry-line.purple {
  background: #7538ff;
  width: 62%;
}
.industry-section {
  padding: 58px 0;
}
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.section-title h2 {
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.08;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.section-title p {
  font-size: 17px;
  line-height: 1.65;
  color: #5c6d87;
  margin: 0;
}
.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  background: #fff;
  border: 1px solid #e3edf9;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.07);
}
.industry-card h3 {
  font-size: 17px;
  margin: 18px 0 10px;
}
.industry-card p {
  color: #52627d;
  line-height: 1.65;
  font-size: 14px;
  margin: 0;
}
.industry-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 14px 30px rgba(20, 70, 150, 0.1);
  background: linear-gradient(135deg, #e5efff, #fff);
  color: #075ee7;
}
.industry-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-template-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-template-card {
  background: #fff;
  border: 1px solid #e3edf9;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.07);
}
.industry-template-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
}
.industry-template-card p {
  color: #536581;
  line-height: 1.65;
  margin: 0 0 18px;
}
.industry-template-card a {
  color: #0b63f6;
  font-weight: 900;
  text-decoration: none;
}
.industry-seo-card {
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 24px;
  padding: 42px 50px;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.05);
}
.industry-seo-card h2 {
  font-size: 38px;
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.055em;
}
.industry-seo-card p {
  color: #344762;
  line-height: 1.8;
  font-size: 16px;
  margin: 0 0 16px;
}
.industry-seo-card a {
  color: #0b63f6;
  font-weight: 800;
}
.industry-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.industry-link-grid a {
  display: block;
  border: 1px solid #e2ebf7;
  background: #f8fbff;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  color: #0b63f6;
  text-decoration: none;
}
.industry-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.industry-index-grid a {
  display: block;
  border: 1px solid #e2ebf7;
  background: #fff;
  border-radius: 14px;
  padding: 13px 14px;
  font-weight: 800;
  color: #0b63f6;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(32, 78, 141, 0.04);
}
@media (max-width: 1050px) {
  .industry-hero-grid {
    grid-template-columns: 1fr;
  }
  .industry-card-grid,
  .industry-template-strip {
    grid-template-columns: 1fr;
  }
  .industry-link-grid,
  .industry-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-preview {
    grid-template-columns: 1fr;
  }
  .industry-sidebar {
    display: none;
  }
}
@media (max-width: 760px) {
  .industry-actions {
    flex-direction: column;
  }
  .industry-stat-row,
  .industry-link-grid,
  .industry-index-grid {
    grid-template-columns: 1fr;
  }
  .industry-seo-card {
    padding: 30px;
  }
}

/* Invoice template final main + industry invoice template pages */
.invoice-template-final {
  background: #fff;
}
.invoice-template-final .gradient-text,
.industry-invoice-page .gradient-text {
  background: linear-gradient(90deg, #0b67ff 0%, #315df5 52%, #7b3ff2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.invoice-template-final .template-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 42px;
  background: radial-gradient(circle at 78% 20%, #eef3ff 0, #fff 38%, #fff 100%);
}
.invoice-template-final .template-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40, 107, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 107, 215, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.invoice-template-final .template-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.invoice-template-final .template-hero h1 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.075em;
  margin: 0 0 22px;
  font-weight: 800;
  color: #071632;
}
.invoice-template-final .template-hero p {
  font-size: 19px;
  line-height: 1.7;
  color: #4b5d7a;
  margin: 0 0 28px;
  max-width: 610px;
}
.invoice-template-final .template-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.invoice-template-final .trust-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.invoice-template-final .trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  color: #071632;
  font-weight: 800;
  font-size: 14px;
}
.invoice-template-final .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eaf3ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
}
.invoice-template-final .trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.invoice-template-final .template-stack {
  position: relative;
  min-height: 520px;
}
.invoice-template-final .invoice-sheet {
  position: absolute;
  width: 360px;
  height: 470px;
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(32, 78, 141, 0.16);
  padding: 30px;
  transform-origin: center;
}
.invoice-template-final .invoice-sheet:nth-child(1) {
  left: 0;
  top: 76px;
  transform: rotate(-8deg);
  border-bottom: 18px solid #16864f;
}
.invoice-template-final .invoice-sheet:nth-child(2) {
  left: 190px;
  top: 0;
  z-index: 3;
}
.invoice-template-final .invoice-sheet:nth-child(3) {
  right: 0;
  top: 80px;
  transform: rotate(8deg);
  border-bottom: 18px solid #071632;
}
.invoice-template-final .invoice-sheet h3 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.invoice-template-final .sheet-line {
  height: 8px;
  border-radius: 99px;
  background: #dce8f8;
  margin: 13px 0;
}
.invoice-template-final .sheet-line.blue {
  background: #0b63f6;
  width: 80%;
}
.invoice-template-final .sheet-line.green {
  background: #16864f;
  width: 76%;
}
.invoice-template-final .sheet-total {
  margin-top: 24px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #0b63f6;
  font-weight: 900;
  text-align: right;
  padding: 12px;
}
.template-tabs-wrap {
  position: relative;
  z-index: 4;
  margin-top: -10px;
}
.template-tabs {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(32, 78, 141, 0.08);
  overflow: hidden;
}
.template-tabs a {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #071632;
  font-weight: 900;
  text-decoration: none;
  border-left: 1px solid #e2ebf7;
}
.template-tabs a:first-child {
  border-left: 0;
}
.template-tabs a.active {
  color: #0b63f6;
  box-shadow: inset 0 -3px 0 #0b63f6;
  background: #fbfdff;
}
.template-gallery {
  padding: 44px 0 28px;
}
.template-gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.template-gallery-card {
  background: #fff;
  border: 1px solid #e3edf9;
  border-radius: 18px;
  padding: 12px 12px 16px;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.07);
}
.template-gallery-card .thumb {
  height: 210px;
  border-radius: 13px;
  border: 1px solid #e5eef9;
  background: #fff;
  overflow: hidden;
}
.template-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.template-gallery-card h3 {
  font-size: 14px;
  margin: 13px 0 10px;
}
.template-gallery-card a {
  height: 40px;
  border: 1px solid #dbe8fb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b63f6;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}
.template-gallery .center-link {
  text-align: center;
  margin-top: 20px;
}
.industry-prominent {
  padding: 42px 0 58px;
}
.industry-prominent-shell {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 0;
  border: 1px solid #cfe0fa;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 78, 141, 0.08);
}
.industry-feature-panel {
  background: linear-gradient(180deg, #f4f8ff, #fff);
  padding: 34px;
  border-right: 1px solid #dbe8fb;
}
.industry-feature-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b67ff, #0755dd);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 18px 40px rgba(11, 99, 246, 0.2);
}
.industry-feature-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.industry-feature-panel h2 {
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.06em;
  margin: 0 0 14px;
  color: #071632;
}
.industry-feature-panel h2 span {
  display: block;
  color: #0b63f6;
  font-size: 52px;
}
.industry-feature-panel p {
  color: #536581;
  line-height: 1.7;
  margin: 0 0 22px;
}
.industry-feature-panel .btn {
  width: 100%;
  height: 54px;
}
.industry-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.industry-mini-stat {
  border: 1px solid #dbe8fb;
  border-radius: 14px;
  background: #fff;
  padding: 13px;
}
.industry-mini-stat b {
  display: block;
  color: #0b63f6;
}
.industry-mini-stat small {
  color: #536581;
  font-weight: 800;
}
.industry-directory {
  padding: 30px;
}
.industry-directory-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.industry-directory-head h3 {
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.04em;
}
.industry-search {
  height: 46px;
  width: 330px;
  border: 1px solid #dbe8fb;
  border-radius: 12px;
  padding: 0 14px;
  color: #536581;
  background: #fff;
}
.industry-az {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.industry-az a {
  width: 28px;
  height: 28px;
  border: 1px solid #dbe8fb;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #0b63f6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  background: #f8fbff;
}
.industry-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.industry-col h4 {
  color: #0b63f6;
  margin: 0 0 10px;
}
.industry-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #071632;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0;
  border-bottom: 1px solid #edf3fb;
}
.industry-col a span {
  color: #0b63f6;
}
.industry-directory-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 13px;
  color: #536581;
}
.industry-directory-foot a {
  color: #0b63f6;
  font-weight: 900;
  text-decoration: none;
}
.invoice-template-page-final .why-row {
  padding: 42px 0 28px;
}
.why-mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.why-mini {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}
.why-mini .industry-icon {
  width: 44px;
  height: 44px;
}
.why-mini h3 {
  font-size: 14px;
  margin: 0 0 4px;
}
.why-mini p {
  font-size: 12px;
  color: #536581;
  line-height: 1.4;
  margin: 0;
}
.industry-invoice-page .template-use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.industry-invoice-page .template-use-card {
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.06);
}
.industry-invoice-page .template-use-card h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.industry-invoice-page .template-use-card p {
  color: #536581;
  line-height: 1.75;
  margin: 0 0 18px;
}
.industry-invoice-page .template-use-card a {
  color: #0b63f6;
  font-weight: 900;
  text-decoration: none;
}
@media (max-width: 1180px) {
  .template-gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .invoice-template-final .invoice-sheet {
    width: 320px;
  }
}
@media (max-width: 1050px) {
  .invoice-template-final .template-hero-grid,
  .industry-prominent-shell {
    grid-template-columns: 1fr;
  }
  .invoice-template-final .template-stack {
    min-height: 520px;
  }
  .industry-feature-panel {
    border-right: 0;
    border-bottom: 1px solid #dbe8fb;
  }
  .why-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-invoice-page .template-use-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .template-tabs {
    grid-template-columns: 1fr;
  }
  .template-gallery-row,
  .industry-cols {
    grid-template-columns: 1fr;
  }
  .industry-directory-head {
    display: block;
  }
  .industry-search {
    width: 100%;
    margin-top: 12px;
  }
  .invoice-template-final .invoice-sheet {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 16px auto;
    transform: none !important;
  }
  .invoice-template-final .template-stack {
    min-height: auto;
  }
  .industry-mini-stats {
    grid-template-columns: 1fr;
  }
  .why-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* Real 1000 industry invoice template directory */
.real-industry-list-section {
  padding: 52px 0 70px;
  background: #fff;
}
.real-industry-shell {
  border: 1px solid #cfe0fa;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 78, 141, 0.08);
}
.real-industry-head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border-bottom: 1px solid #dbe8fb;
}
.real-industry-feature {
  background: linear-gradient(180deg, #f4f8ff, #fff);
  padding: 34px;
  border-right: 1px solid #dbe8fb;
}
.real-industry-feature h2 {
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.06em;
  margin: 0 0 14px;
  color: #071632;
}
.real-industry-feature h2 span {
  display: block;
  color: #0b63f6;
  font-size: 52px;
}
.real-industry-feature p {
  color: #536581;
  line-height: 1.7;
  margin: 0 0 20px;
}
.real-industry-controls {
  padding: 34px;
}
.real-industry-controls h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.real-industry-controls p {
  color: #536581;
  line-height: 1.65;
  margin: 0 0 18px;
}
.real-industry-search {
  height: 50px;
  width: 100%;
  border: 1px solid #dbe8fb;
  border-radius: 14px;
  padding: 0 16px;
  color: #536581;
  background: #fff;
  margin-bottom: 18px;
}
.real-industry-az {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.real-industry-az a {
  width: 30px;
  height: 30px;
  border: 1px solid #dbe8fb;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #0b63f6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  background: #f8fbff;
}
.real-industry-list {
  padding: 28px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.real-industry-letter h4 {
  font-size: 18px;
  color: #0b63f6;
  margin: 0 0 12px;
  border-bottom: 1px solid #e2ebf7;
  padding-bottom: 10px;
}
.real-industry-letter a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #071632;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4fb;
}
.real-industry-letter a span {
  color: #0b63f6;
}
@media (max-width: 1050px) {
  .real-industry-head {
    grid-template-columns: 1fr;
  }
  .real-industry-feature {
    border-right: 0;
    border-bottom: 1px solid #dbe8fb;
  }
  .real-industry-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .real-industry-list {
    grid-template-columns: 1fr;
  }
  .real-industry-feature,
  .real-industry-controls,
  .real-industry-list {
    padding: 24px;
  }
}

/* Final polished invoice-template main page */
.invoice-template-final-page {
  background: #fff;
}
.invoice-template-final-page .gradient-text {
  background: linear-gradient(90deg, #0b67ff 0%, #315df5 52%, #7b3ff2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.invoice-template-final-page .template-final-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 42px;
  background: radial-gradient(circle at 78% 20%, #eef3ff 0, #fff 38%, #fff 100%);
}
.invoice-template-final-page .template-final-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40, 107, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 107, 215, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.invoice-template-final-page .template-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}
.invoice-template-final-page .template-hero-copy h1 {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.075em;
  margin: 0 0 22px;
  font-weight: 800;
  color: #071632;
}
.invoice-template-final-page .template-hero-copy p {
  font-size: 19px;
  line-height: 1.7;
  color: #4b5d7a;
  margin: 0 0 28px;
  max-width: 610px;
}
.invoice-template-final-page .template-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.invoice-template-final-page .template-trust-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.invoice-template-final-page .template-trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  color: #071632;
  font-weight: 800;
  font-size: 14px;
}
.invoice-template-final-page .template-trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eaf3ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
}
.invoice-template-final-page .template-trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.invoice-template-final-page .template-stack {
  position: relative;
  min-height: 520px;
}
.invoice-template-final-page .invoice-sheet {
  position: absolute;
  width: 360px;
  height: 470px;
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(32, 78, 141, 0.16);
  padding: 30px;
  transform-origin: center;
}
.invoice-template-final-page .invoice-sheet:nth-child(1) {
  left: 0;
  top: 76px;
  transform: rotate(-8deg);
  border-bottom: 18px solid #16864f;
}
.invoice-template-final-page .invoice-sheet:nth-child(2) {
  left: 190px;
  top: 0;
  z-index: 3;
}
.invoice-template-final-page .invoice-sheet:nth-child(3) {
  right: 0;
  top: 80px;
  transform: rotate(8deg);
  border-bottom: 18px solid #071632;
}
.invoice-template-final-page .invoice-sheet h3 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.invoice-template-final-page .sheet-meta {
  display: flex;
  justify-content: space-between;
  color: #536581;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 18px;
}
.invoice-template-final-page .sheet-line {
  height: 8px;
  border-radius: 99px;
  background: #dce8f8;
  margin: 13px 0;
}
.invoice-template-final-page .sheet-line.blue {
  background: #0b63f6;
  width: 80%;
}
.invoice-template-final-page .sheet-line.green {
  background: #16864f;
  width: 76%;
}
.invoice-template-final-page .sheet-total {
  margin-top: 24px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #0b63f6;
  font-weight: 900;
  text-align: right;
  padding: 12px;
}
.invoice-template-final-page .template-tabs-wrap {
  position: relative;
  z-index: 4;
  margin-top: -10px;
}
.invoice-template-final-page .template-tabs {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(32, 78, 141, 0.08);
  overflow: hidden;
}
.invoice-template-final-page .template-tabs a {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #071632;
  font-weight: 900;
  text-decoration: none;
  border-left: 1px solid #e2ebf7;
}
.invoice-template-final-page .template-tabs a:first-child {
  border-left: 0;
}
.invoice-template-final-page .template-tabs a.active {
  color: #0b63f6;
  box-shadow: inset 0 -3px 0 #0b63f6;
  background: #fbfdff;
}
.invoice-template-final-page .template-gallery {
  padding: 44px 0 28px;
}
.invoice-template-final-page .template-gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.invoice-template-final-page .template-card {
  background: #fff;
  border: 1px solid #e3edf9;
  border-radius: 18px;
  padding: 12px 12px 16px;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.07);
}
.invoice-template-final-page .template-card .thumb {
  height: 210px;
  border-radius: 13px;
  border: 1px solid #e5eef9;
  background: #fff;
  overflow: hidden;
}
.invoice-template-final-page .template-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.invoice-template-final-page .template-card h3 {
  font-size: 14px;
  margin: 13px 0 10px;
}
.invoice-template-final-page .template-card a {
  height: 40px;
  border: 1px solid #dbe8fb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b63f6;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}
.invoice-template-final-page .gallery-action {
  text-align: center;
  margin-top: 20px;
}
.invoice-template-final-page .real-industry-section {
  padding: 52px 0 70px;
  background: #fff;
}
.invoice-template-final-page .real-industry-shell {
  border: 1px solid #cfe0fa;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 78, 141, 0.08);
}
.invoice-template-final-page .real-industry-head {
  display: grid;
  grid-template-columns: 310px 1fr;
  border-bottom: 1px solid #dbe8fb;
}
.invoice-template-final-page .real-industry-feature {
  background: linear-gradient(180deg, #f4f8ff, #fff);
  padding: 34px;
  border-right: 1px solid #dbe8fb;
}
.invoice-template-final-page .industry-feature-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b67ff, #0755dd);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 18px 40px rgba(11, 99, 246, 0.2);
}
.invoice-template-final-page .industry-feature-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.invoice-template-final-page .real-industry-feature h2 {
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.06em;
  margin: 0 0 14px;
  color: #071632;
}
.invoice-template-final-page .real-industry-feature h2 span {
  display: block;
  color: #0b63f6;
  font-size: 54px;
}
.invoice-template-final-page .real-industry-feature p {
  color: #536581;
  line-height: 1.7;
  margin: 0 0 20px;
}
.invoice-template-final-page .industry-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.invoice-template-final-page .industry-mini-stat {
  border: 1px solid #dbe8fb;
  border-radius: 14px;
  background: #fff;
  padding: 13px;
}
.invoice-template-final-page .industry-mini-stat b {
  display: block;
  color: #0b63f6;
}
.invoice-template-final-page .industry-mini-stat small {
  color: #536581;
  font-weight: 800;
}
.invoice-template-final-page .real-industry-controls {
  padding: 34px;
}
.invoice-template-final-page .real-industry-controls h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.invoice-template-final-page .real-industry-controls p {
  color: #536581;
  line-height: 1.65;
  margin: 0 0 18px;
}
.invoice-template-final-page .real-industry-search {
  height: 50px;
  width: 100%;
  border: 1px solid #dbe8fb;
  border-radius: 14px;
  padding: 0 16px;
  color: #536581;
  background: #fff;
  margin-bottom: 18px;
}
.invoice-template-final-page .real-industry-az {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.invoice-template-final-page .real-industry-az a {
  width: 30px;
  height: 30px;
  border: 1px solid #dbe8fb;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #0b63f6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  background: #f8fbff;
}
.invoice-template-final-page .real-industry-list {
  padding: 28px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.invoice-template-final-page .industry-letter h4 {
  font-size: 18px;
  color: #0b63f6;
  margin: 0 0 12px;
  border-bottom: 1px solid #e2ebf7;
  padding-bottom: 10px;
}
.invoice-template-final-page .industry-letter a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #071632;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4fb;
}
.invoice-template-final-page .industry-letter a span {
  color: #0b63f6;
}
.invoice-template-final-page .why-strip {
  padding: 38px 0 34px;
}
.invoice-template-final-page .why-strip h2 {
  text-align: center;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
}
.invoice-template-final-page .why-mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.invoice-template-final-page .why-mini {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}
.invoice-template-final-page .why-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eaf3ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
}
.invoice-template-final-page .why-mini-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.invoice-template-final-page .why-mini h3 {
  font-size: 14px;
  margin: 0 0 4px;
}
.invoice-template-final-page .why-mini p {
  font-size: 12px;
  color: #536581;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 1180px) {
  .invoice-template-final-page .template-gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .invoice-template-final-page .real-industry-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .invoice-template-final-page .template-stack .invoice-sheet {
    width: 320px;
  }
}
@media (max-width: 1050px) {
  .invoice-template-final-page .template-hero-grid,
  .invoice-template-final-page .real-industry-head {
    grid-template-columns: 1fr;
  }
  .invoice-template-final-page .template-stack {
    min-height: 520px;
  }
  .invoice-template-final-page .real-industry-feature {
    border-right: 0;
    border-bottom: 1px solid #dbe8fb;
  }
  .invoice-template-final-page .why-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .invoice-template-final-page .template-tabs {
    grid-template-columns: 1fr;
  }
  .invoice-template-final-page .template-gallery-row,
  .invoice-template-final-page .real-industry-list {
    grid-template-columns: 1fr;
  }
  .invoice-template-final-page .template-stack {
    min-height: auto;
  }
  .invoice-template-final-page .invoice-sheet {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 16px auto;
  }
  .invoice-template-final-page .template-hero-actions {
    flex-direction: column;
  }
  .invoice-template-final-page .industry-mini-stats {
    grid-template-columns: 1fr;
  }
  .invoice-template-final-page .why-mini-grid {
    grid-template-columns: 1fr;
  }
  .invoice-template-final-page .real-industry-feature,
  .invoice-template-final-page .real-industry-controls,
  .invoice-template-final-page .real-industry-list {
    padding: 24px;
  }
}

/* Final generated high-resolution hero image system */
.generated-hero-section {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #e3edf9;
  overflow: hidden;
}
.generated-hero-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.generated-hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
}
.generated-hero-utility .generated-hero-image {
  min-height: 430px;
}
.generated-hero-blog .generated-hero-image {
  min-height: 440px;
}
@media (max-width: 900px) {
  .generated-hero-image {
    min-height: 420px;
    object-fit: cover;
    object-position: center top;
  }
}

/* Final organized invoice template page */
.invoice-template-final-organized {
  background: #fff;
  color: #071632;
}
.invoice-template-final-organized .template-tabs-wrap {
  padding: 24px 0 12px;
  background: #fff;
}
.invoice-template-final-organized .template-tabs {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(32, 78, 141, 0.08);
  overflow: hidden;
}
.invoice-template-final-organized .template-tabs a {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #071632;
  font-weight: 900;
  text-decoration: none;
  border-left: 1px solid #e2ebf7;
}
.invoice-template-final-organized .template-tabs a:first-child {
  border-left: 0;
}
.invoice-template-final-organized .template-tabs a.active {
  color: #0b63f6;
  box-shadow: inset 0 -3px 0 #0b63f6;
  background: #fbfdff;
}
.invoice-template-final-organized .page-section {
  padding: 34px 0;
}
.invoice-template-final-organized .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.invoice-template-final-organized .section-head h2 {
  font-size: 32px;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 0;
}
.invoice-template-final-organized .section-head p {
  margin: 7px 0 0;
  color: #536581;
  line-height: 1.55;
}
.invoice-template-final-organized .section-head a {
  color: #0b63f6;
  text-decoration: none;
  font-weight: 900;
}
.invoice-template-final-organized .featured-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.invoice-template-final-organized .featured-invoice-card {
  border: 1px solid #e2ebf7;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(32, 78, 141, 0.07);
}
.invoice-template-final-organized .invoice-thumb {
  display: block;
  height: 210px;
  border: 1px solid #e5eef9;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fbff;
}
.invoice-template-final-organized .invoice-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.invoice-template-final-organized .featured-invoice-card h3 {
  font-size: 15px;
  margin: 13px 0 6px;
}
.invoice-template-final-organized .featured-invoice-card p {
  font-size: 13px;
  color: #536581;
  line-height: 1.45;
  margin: 0 0 12px;
}
.invoice-template-final-organized .preview-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border: 1px solid #dbe8fb;
  border-radius: 10px;
  color: #0b63f6;
  font-weight: 900;
  text-decoration: none;
  font-size: 13px;
}
.invoice-template-final-organized .compact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.invoice-template-final-organized .business-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.invoice-template-final-organized .use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.invoice-template-final-organized .related-template-strip,
.invoice-template-final-organized .online-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.invoice-template-final-organized .mini-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid #e2ebf7;
  border-radius: 16px;
  background: #fff;
  padding: 15px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(32, 78, 141, 0.05);
  min-height: 82px;
}
.invoice-template-final-organized .mini-card strong {
  display: block;
  color: #071632;
  font-size: 14px;
}
.invoice-template-final-organized .mini-card small {
  display: block;
  color: #6b7c95;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 3px;
}
.invoice-template-final-organized .template-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #edf5ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
}
.invoice-template-final-organized .template-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.invoice-template-final-organized .industry-section {
  padding: 34px 0;
}
.invoice-template-final-organized .industry-shell {
  border: 1px solid #cfe0fa;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 78, 141, 0.08);
  padding: 28px;
}
.invoice-template-final-organized .industry-search {
  height: 48px;
  width: 100%;
  border: 1px solid #dbe8fb;
  border-radius: 14px;
  padding: 0 16px;
  margin: 0 0 18px;
  color: #536581;
}
.invoice-template-final-organized .industry-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.invoice-template-final-organized .industry-group-card {
  border: 1px solid #e2ebf7;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.invoice-template-final-organized .industry-group-card summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 54px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 18px;
}
.invoice-template-final-organized .industry-group-card summary::-webkit-details-marker {
  display: none;
}
.invoice-template-final-organized .industry-group-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #f0f6ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
}
.invoice-template-final-organized .industry-group-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.invoice-template-final-organized .industry-group-card strong {
  display: block;
  color: #071632;
  font-size: 15px;
}
.invoice-template-final-organized .industry-group-card small {
  display: block;
  color: #6b7c95;
  margin-top: 3px;
}
.invoice-template-final-organized .industry-group-card em {
  font-style: normal;
  color: #0b63f6;
  font-size: 22px;
}
.invoice-template-final-organized .industry-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 18px 18px;
}
.invoice-template-final-organized .industry-chip-row a,
.invoice-template-final-organized .industry-chip-row span {
  border: 1px solid #dbe8fb;
  border-radius: 999px;
  background: #f8fbff;
  padding: 7px 10px;
  color: #0b63f6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.invoice-template-final-organized .industry-expanded-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
  padding: 0 18px 18px;
}
.invoice-template-final-organized .industry-expanded-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #071632;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f4fb;
}
.invoice-template-final-organized .industry-expanded-list a span {
  color: #0b63f6;
}
.invoice-template-final-organized .gradient-cta {
  padding: 44px 0 56px;
}
.invoice-template-final-organized .gradient-cta .cta-banner {
  background: linear-gradient(90deg, #075ee7, #7538ff);
}
.mini-page-hero {
  padding: 70px 0;
  background: radial-gradient(circle at 75% 15%, #eef3ff 0, #fff 45%);
}
.mini-page-card {
  border: 1px solid #dbe8fb;
  border-radius: 24px;
  background: #fff;
  padding: 44px;
  box-shadow: 0 22px 60px rgba(32, 78, 141, 0.08);
  max-width: 860px;
}
.mini-page-card h1 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 10px 0 14px;
}
.mini-page-card p {
  font-size: 18px;
  color: #536581;
  line-height: 1.65;
}
.mini-badge {
  display: inline-flex;
  border: 1px solid #dbe8fb;
  border-radius: 999px;
  background: #f4f8ff;
  color: #0b63f6;
  font-weight: 900;
  padding: 8px 13px;
}
.mini-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 1180px) {
  .invoice-template-final-organized .featured-grid,
  .invoice-template-final-organized .compact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .invoice-template-final-organized .business-grid,
  .invoice-template-final-organized .industry-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .invoice-template-final-organized .template-tabs,
  .invoice-template-final-organized .featured-grid,
  .invoice-template-final-organized .compact-grid,
  .invoice-template-final-organized .business-grid,
  .invoice-template-final-organized .use-case-grid,
  .invoice-template-final-organized .industry-category-grid,
  .invoice-template-final-organized .related-template-strip,
  .invoice-template-final-organized .online-tool-grid,
  .invoice-template-final-organized .industry-expanded-list {
    grid-template-columns: 1fr;
  }
  .invoice-template-final-organized .section-head {
    display: block;
  }
}

/* Final simplified industry invoice template page */
.industry-template-simple {
  background: #fff;
  color: #071632;
}
.industry-template-simple svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.industry-template-simple .industry-breadcrumb {
  padding: 20px 0;
  color: #536581;
  font-size: 13px;
}
.industry-template-simple .industry-breadcrumb a {
  color: #536581;
  text-decoration: none;
}
.industry-template-simple .industry-hero-simple {
  position: relative;
  overflow: hidden;
  padding: 42px 0 60px;
  background: radial-gradient(circle at 75% 30%, #eef4ff 0, #fff 48%);
}
.industry-template-simple .industry-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.industry-template-simple .badge {
  display: inline-flex;
  border: 1px solid #dbe8fb;
  border-radius: 999px;
  background: #f4f8ff;
  color: #0b63f6;
  font-weight: 900;
  padding: 9px 14px;
  margin-bottom: 22px;
}
.industry-template-simple h1 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  margin: 0 0 20px;
}
.industry-template-simple .gradient-text {
  background: linear-gradient(90deg, #0b67ff, #6b35f4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-template-simple .hero-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: #536581;
  max-width: 610px;
  margin: 0 0 28px;
}
.industry-template-simple .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.industry-template-simple .hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.industry-template-simple .chip {
  border: 1px solid #dbe8fb;
  border-radius: 12px;
  background: #fff;
  padding: 13px 16px;
  color: #071632;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 9px;
}
.industry-template-simple .chip svg {
  width: 20px;
  height: 20px;
  color: #0b63f6;
}
.industry-template-simple .invoice-visual {
  position: relative;
  min-height: 520px;
}
.industry-template-simple .invoice-sheet-large {
  position: absolute;
  right: 140px;
  top: 0;
  width: 390px;
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(32, 78, 141, 0.15);
  padding: 34px;
}
.industry-template-simple .invoice-sheet-large h2 {
  font-size: 28px;
  margin: 0 0 20px;
}
.industry-template-simple .line {
  height: 9px;
  border-radius: 99px;
  background: #dfe9f7;
  margin: 12px 0;
}
.industry-template-simple .line.blue {
  background: #0b63f6;
  width: 78%;
}
.industry-template-simple .invoice-table {
  margin-top: 24px;
  border-top: 1px solid #e7eef9;
}
.industry-template-simple .row {
  display: grid;
  grid-template-columns: 1fr 50px 80px;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #edf3fb;
  color: #536581;
  font-size: 13px;
}
.industry-template-simple .total {
  margin-top: 18px;
  text-align: right;
  font-weight: 900;
  color: #071632;
}
.industry-template-simple .floating-card {
  position: absolute;
  right: 0;
  width: 170px;
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(32, 78, 141, 0.12);
  padding: 18px;
}
.industry-template-simple .floating-card.sent {
  top: 90px;
}
.industry-template-simple .floating-card.paid {
  top: 230px;
}
.industry-template-simple .floating-card b {
  display: block;
  margin: 8px 0 4px;
}
.industry-template-simple .floating-card small {
  color: #536581;
}
.industry-template-simple .circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  color: #0b63f6;
}
.industry-template-simple .circle.green {
  background: #e8fbf3;
  color: #17a56f;
}
.industry-template-simple .simple-card-section {
  padding: 44px 0;
}
.industry-template-simple .section-box {
  border: 1px solid #dbe8fb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(32, 78, 141, 0.07);
  padding: 28px;
}
.industry-template-simple .section-title {
  text-align: center;
  margin-bottom: 24px;
}
.industry-template-simple .section-title h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.industry-template-simple .feature-grid,
.industry-template-simple .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.industry-template-simple .feature-card,
.industry-template-simple .step-card {
  border: 1px solid #e3edf9;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}
.industry-template-simple .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #edf5ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
}
.industry-template-simple .feature-icon svg {
  width: 30px;
  height: 30px;
}
.industry-template-simple .feature-card h3,
.industry-template-simple .step-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}
.industry-template-simple .feature-card p,
.industry-template-simple .step-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #536581;
  margin: 0;
}
.industry-template-simple .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0b63f6;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin: 0 auto 12px;
}
.industry-template-simple .step-card svg {
  width: 42px;
  height: 42px;
  color: #0b63f6;
  margin-bottom: 12px;
}
.industry-template-simple .link-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.industry-template-simple .link-panel {
  border: 1px solid #e3edf9;
  border-radius: 18px;
  padding: 24px;
}
.industry-template-simple .link-panel h2 {
  font-size: 20px;
  margin: 0 0 16px;
}
.industry-template-simple .link-list {
  display: grid;
  gap: 10px;
}
.industry-template-simple .link-list a {
  display: flex;
  justify-content: space-between;
  color: #071632;
  text-decoration: none;
  border-bottom: 1px solid #edf3fb;
  padding: 9px 0;
  font-weight: 800;
}
.industry-template-simple .link-list a span {
  color: #0b63f6;
}
.industry-template-simple .seo-block {
  padding: 18px 0 44px;
}
.industry-template-simple .seo-card {
  border: 1px solid #dbe8fb;
  border-radius: 24px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(32, 78, 141, 0.07);
}
.industry-template-simple .seo-card h2 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
}
.industry-template-simple .seo-card p {
  color: #2d4365;
  line-height: 1.78;
  margin: 0 0 18px;
}
.industry-template-simple .seo-card a {
  color: #0b63f6;
  font-weight: 800;
  text-decoration: none;
}
.industry-template-simple details.seo-read-more summary {
  display: inline-flex;
  border: 1px solid #bfd4f8;
  border-radius: 12px;
  background: #fff;
  color: #0b63f6;
  font-weight: 900;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}
.industry-template-simple details.seo-read-more summary::-webkit-details-marker {
  display: none;
}
.industry-template-simple .seo-hidden {
  margin-top: 22px;
}
.industry-template-simple .seo-meta {
  font-size: 12px;
  color: #6b7c95;
  margin-top: 12px;
}
@media (max-width: 1100px) {
  .industry-template-simple .industry-hero-grid,
  .industry-template-simple .link-panels {
    grid-template-columns: 1fr;
  }
  .industry-template-simple .feature-grid,
  .industry-template-simple .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .industry-template-simple .feature-grid,
  .industry-template-simple .steps {
    grid-template-columns: 1fr;
  }
  .industry-template-simple .invoice-sheet-large,
  .industry-template-simple .floating-card {
    position: relative;
    right: auto;
    top: auto !important;
    margin: 16px auto;
  }
  .industry-template-simple .invoice-visual {
    min-height: auto;
  }
  .industry-template-simple .hero-actions {
    flex-direction: column;
  }
}

/* Final feature, pricing, blog and article page updates */
.final-asset-hero {
  background: #fff;
  border-bottom: 1px solid #e3edf9;
  overflow: hidden;
}
.final-asset-hero .hero-image-wrap {
  max-width: 1920px;
  margin: 0 auto;
}
.final-asset-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}
.final-asset-hero.features img,
.final-asset-hero.pricing img {
  min-height: 520px;
}
.final-asset-hero.blog-compact img {
  min-height: 330px;
}
.final-page-section {
  padding: 54px 0;
  background: #fff;
}
.final-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.final-section-head h2 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0;
  color: #071632;
}
.final-section-head p {
  margin: 8px 0 0;
  color: #536581;
  line-height: 1.6;
  max-width: 720px;
}
.feature-grid-final,
.pricing-grid-final {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card-final,
.pricing-card-final {
  border: 1px solid #e3edf9;
  border-radius: 22px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(32, 78, 141, 0.07);
}
.feature-card-final h3,
.pricing-card-final h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
  color: #071632;
}
.feature-card-final p,
.pricing-card-final p {
  color: #536581;
  line-height: 1.65;
  margin: 0;
}
.feature-icon-final {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: #edf5ff;
  color: #0b63f6;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-icon-final svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.pricing-card-final strong {
  display: block;
  font-size: 40px;
  letter-spacing: -0.045em;
  margin: 16px 0;
  color: #071632;
}
.pricing-card-final ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 10px;
  color: #536581;
}
.pricing-card-final li:before {
  content: '✓';
  color: #17a56f;
  font-weight: 900;
  margin-right: 8px;
}
.blog-layout-final {
  background: #fff;
}
.blog-topic-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 0 12px;
}
.blog-topic-row a {
  border: 1px solid #dbe8fb;
  border-radius: 999px;
  background: #f8fbff;
  color: #0b63f6;
  text-decoration: none;
  font-weight: 900;
  padding: 10px 18px;
}
.blog-card-grid-final {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.blog-card-classic {
  border: 1px solid #dfdfdf;
  background: #f7f7f7;
  overflow: hidden;
}
.blog-card-classic img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.blog-card-classic .blog-card-body {
  padding: 24px 28px 28px;
}
.blog-card-classic h2 {
  font-size: 28px;
  line-height: 1.17;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: #000;
}
.blog-card-classic p {
  font-size: 18px;
  line-height: 1.65;
  color: #5d5d5d;
  margin: 0;
}
.blog-card-classic .blog-card-footer {
  border-top: 1px solid #dfdfdf;
  padding: 22px 28px;
  background: #f7f7f7;
}
.blog-card-classic a {
  color: #000;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.blog-pagination a {
  width: 44px;
  height: 44px;
  border: 1px solid #dbe8fb;
  border-radius: 8px;
  background: #fff;
  color: #0b63f6;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.blog-pagination a.active {
  background: #0b63f6;
  color: #fff;
}
.article-page-final {
  background: #fff;
}
.article-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 0;
}
.article-breadcrumb {
  font-size: 13px;
  color: #536581;
  margin: 14px 0 22px;
}
.article-breadcrumb a {
  color: #536581;
  text-decoration: none;
}
.article-hero-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(32, 78, 141, 0.12);
  display: block;
  aspect-ratio: 2.95/1;
  object-fit: cover;
}
.article-kicker {
  text-align: center;
  margin: 18px 0 10px;
  color: #0b63f6;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.article-title {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: #071632;
}
.article-title span {
  background: linear-gradient(90deg, #0b67ff, #5d39f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.article-subtitle {
  max-width: 760px;
  text-align: center;
  margin: 16px auto 22px;
  color: #536581;
  font-size: 17px;
  line-height: 1.55;
}
.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: #536581;
  font-size: 14px;
  margin-bottom: 30px;
}
.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #071632;
  font-weight: 800;
}
.article-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b63f6, #6b35f4);
  display: grid;
  place-items: center;
  color: #fff;
}
.article-content-one-column {
  max-width: 820px;
  margin: 0 auto;
  color: #071632;
}
.article-content-one-column h2 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 28px 0 12px;
}
.article-content-one-column p {
  font-size: 16px;
  line-height: 1.78;
  color: #2d4365;
  margin: 0 0 18px;
}
.article-quote {
  border: 1px solid #dbe8fb;
  border-radius: 16px;
  background: #f7fbff;
  padding: 22px 26px;
  color: #071632;
  font-weight: 800;
  margin: 22px 0;
}
.article-step-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
}
.article-step-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.article-step-list span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0b63f6;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
}
.article-tool-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
}
.article-tool-row span {
  border: 1px solid #dbe8fb;
  border-radius: 999px;
  background: #f8fbff;
  color: #0b63f6;
  padding: 8px 13px;
  font-weight: 900;
  font-size: 13px;
}
.related-articles-final {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 0 20px;
}
.related-article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.related-article-card {
  border: 1px solid #e3edf9;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: #071632;
}
.related-article-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.related-article-card div {
  padding: 14px;
}
.related-article-card h3 {
  font-size: 14px;
  line-height: 1.25;
  margin: 0 0 8px;
}
.related-article-card p {
  font-size: 12px;
  line-height: 1.4;
  color: #536581;
  margin: 0 0 8px;
}
.article-cta {
  max-width: 1180px;
  margin: 30px auto 46px;
  padding: 0 20px;
}
.article-cta .cta-banner {
  background: linear-gradient(90deg, #075ee7, #7538ff);
}
@media (max-width: 1100px) {
  .feature-grid-final,
  .pricing-grid-final,
  .blog-card-grid-final {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .feature-grid-final,
  .pricing-grid-final,
  .blog-card-grid-final,
  .related-article-grid {
    grid-template-columns: 1fr;
  }
  .article-title {
    font-size: 38px;
  }
  .article-meta {
    flex-direction: column;
    gap: 12px;
  }
  .final-section-head {
    display: block;
  }
  .final-asset-hero.blog-compact img {
    min-height: 260px;
  }
}

/* Final homepage: live HTML hero with reduced height */
.home-final-page {
  background: #fff;
  color: #071632;
}
.home-final-page .home-hero-final {
  position: relative;
  overflow: hidden;
  padding: 38px 0 44px;
  background: radial-gradient(circle at 75% 22%, #eef4ff 0, #fff 42%, #fff 100%);
  border-bottom: 1px solid #e3edf9;
}
.home-final-page .home-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: center;
  min-height: 560px;
}
.home-final-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #dbe8fb;
  color: #0b63f6;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}
.home-final-page .hero-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.home-final-page .home-hero-copy h1 {
  font-size: clamp(44px, 4.3vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.07em;
  margin: 0 0 18px;
  color: #071632;
  font-weight: 800;
}
.home-final-page .gradient-text {
  background: linear-gradient(90deg, #0b67ff 0%, #2467ff 45%, #6b35f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-final-page .home-hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: #536581;
  margin: 0 0 24px;
  max-width: 540px;
}
.home-final-page .hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.home-final-page .hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid #dbe8fb;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(32, 78, 141, 0.05);
  color: #071632;
  font-size: 13px;
  font-weight: 800;
}
.home-final-page .hero-chip svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #0b63f6;
  stroke-width: 2;
}
.home-final-page .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.home-final-page .hero-actions .btn {
  height: 54px;
  padding: 0 26px;
}
.home-final-page .trust-row {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #536581;
  font-size: 14px;
}
.home-final-page .stars {
  color: #ffb300;
  letter-spacing: 2px;
  font-size: 20px;
  line-height: 1;
}
.home-final-page .home-hero-visual {
  position: relative;
  min-height: 520px;
}
.home-final-page .hero-dashboard-img {
  position: absolute;
  right: -52px;
  top: -10px;
  width: min(840px, 106%);
  max-width: none;
  filter: drop-shadow(0 34px 70px rgba(16, 73, 150, 0.18));
}
.home-final-page .feature-section-final,
.home-final-page .template-section-final,
.home-final-page .steps-section-final,
.home-final-page .testimonials-section-final {
  padding: 54px 0 12px;
}
.home-final-page .section-title-final {
  text-align: center;
  margin-bottom: 30px;
}
.home-final-page .section-title-final h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 0;
}
.home-final-page .feature-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-final-page .home-card {
  border: 1px solid #e3edf9;
  border-radius: 20px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(32, 78, 141, 0.07);
}
.home-final-page .home-icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f3f7ff, #fff);
  border: 1px solid #dbe8fb;
  color: #0b63f6;
  margin-bottom: 16px;
}
.home-final-page .zi-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.home-final-page .home-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
}
.home-final-page .home-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #536581;
  margin: 0;
}
.home-final-page .template-grid-home {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.home-final-page .template-card-home {
  border: 1px solid #e3edf9;
  border-radius: 18px;
  background: #fff;
  padding: 12px 12px 16px;
  box-shadow: 0 18px 48px rgba(32, 78, 141, 0.07);
  text-align: center;
}
.home-final-page .template-card-home img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top;
  border: 1px solid #e5eef9;
  border-radius: 13px;
  background: #f8fbff;
  display: block;
  margin-bottom: 12px;
}
.home-final-page .template-card-home h3 {
  font-size: 15px;
  margin: 0 0 10px;
}
.home-final-page .template-card-home a {
  color: #0b63f6;
  font-weight: 900;
  text-decoration: none;
  font-size: 13px;
}
.home-final-page .workflow-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.home-final-page .workflow-card {
  position: relative;
  text-align: center;
  border: 1px solid #e3edf9;
  border-radius: 20px;
  background: #fff;
  padding: 30px 22px;
  box-shadow: 0 18px 48px rgba(32, 78, 141, 0.07);
}
.home-final-page .workflow-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0b63f6;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.home-final-page .workflow-card .home-icon-bubble {
  margin: 14px auto 16px;
}
.home-final-page .testimonials-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-final-page .testimonial-card {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 18px;
  border: 1px solid #e3edf9;
  border-radius: 20px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(32, 78, 141, 0.07);
}
.home-final-page .testimonial-card img {
  width: 124px;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
}
.home-final-page .testimonial-card h3 {
  font-size: 16px;
  margin: 4px 0 3px;
}
.home-final-page .testimonial-card small {
  color: #536581;
  font-weight: 700;
}
.home-final-page .testimonial-card .stars {
  font-size: 15px;
  margin: 10px 0;
}
.home-final-page .testimonial-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #536581;
  margin: 0;
}
.home-final-page .home-bottom-cta {
  padding: 48px 0 64px;
}
.home-final-page .home-bottom-cta .cta-banner {
  background: linear-gradient(90deg, #075ee7, #7538ff);
}
.home-final-page .home-bottom-cta .cta-banner img {
  width: 190px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.nav-actions .btn-primary {
  height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b67ff 0%, #0755dd 58%, #5b35f4 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow:
    0 12px 28px rgba(11, 99, 246, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav-actions .btn-primary span {
  display: inline-block;
  transition: transform 0.2s ease;
}
.nav-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(11, 99, 246, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
/* .nav-actions .btn-primary:hover span{transform:translateX(3px)} */
@media (max-width: 1180px) {
  .home-final-page .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-final-page .home-hero-visual {
    min-height: 480px;
  }
  .home-final-page .hero-dashboard-img {
    right: 0;
    width: 100%;
    position: relative;
  }
  .home-final-page .template-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .home-final-page .feature-grid-home,
  .home-final-page .workflow-grid-home,
  .home-final-page .testimonials-grid-home {
    grid-template-columns: 1fr;
  }
  .home-final-page .template-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-final-page .testimonial-card {
    grid-template-columns: 1fr;
  }
  .home-final-page .testimonial-card img {
    width: 100%;
    height: 260px;
  }
}
@media (max-width: 640px) {
  .home-final-page .template-grid-home {
    grid-template-columns: 1fr;
  }
  .home-final-page .home-hero-final {
    padding-top: 28px;
  }
  .home-final-page .home-hero-copy h1 {
    font-size: 42px;
  }
}

/* Step 1 homepage inline icon reliability fix */
.home-final-page .zi-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-final-page .cta-icon .zi-icon {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

/* Remaining homepage fixes: tighter hero, fixed CTA grid, stronger icon rendering */
.home-final-page .home-hero-final {
  padding: 24px 0 30px !important;
}
.home-final-page .home-hero-grid {
  grid-template-columns: 0.86fr 1.14fr !important;
  gap: 30px !important;
  align-items: center !important;
  min-height: 470px !important;
}
.home-final-page .home-hero-copy h1 {
  font-size: clamp(42px, 3.85vw, 58px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.065em !important;
  margin: 0 0 16px !important;
}
.home-final-page .home-hero-copy p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  margin: 0 0 20px !important;
  max-width: 520px !important;
}
.home-final-page .hero-badge {
  margin-bottom: 18px !important;
}
.home-final-page .hero-chips {
  gap: 10px !important;
  margin-bottom: 20px !important;
}
.home-final-page .hero-chip {
  min-height: 36px !important;
  padding: 0 12px !important;
  font-size: 12px !important;
}
.home-final-page .hero-actions {
  margin-bottom: 18px !important;
}
.home-final-page .hero-actions .btn {
  height: 50px !important;
  padding: 0 23px !important;
}
.home-final-page .home-hero-visual {
  min-height: 445px !important;
  overflow: visible !important;
}
.home-final-page .hero-dashboard-img {
  position: absolute !important;
  right: -30px !important;
  top: -4px !important;
  width: min(780px, 104%) !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 26px 54px rgba(16, 73, 150, 0.14)) !important;
}
.home-final-page .home-card {
  padding: 24px !important;
}
.home-final-page .home-icon-bubble {
  width: 54px !important;
  height: 54px !important;
  margin-bottom: 14px !important;
  color: #0b63f6 !important;
}
.home-final-page .zi-icon {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.home-final-page .home-bottom-cta .cta-banner {
  display: grid !important;
  grid-template-columns: 90px 1fr auto !important;
  align-items: center !important;
  gap: 34px !important;
  min-height: 230px !important;
  padding: 42px 56px !important;
}
.home-final-page .home-bottom-cta .cta-icon {
  width: 92px !important;
  height: 92px !important;
  margin: 0 !important;
}
.home-final-page .home-bottom-cta .cta-icon .zi-icon,
.home-final-page .home-bottom-cta .cta-icon svg {
  width: 42px !important;
  height: 42px !important;
}
.home-final-page .home-bottom-cta .cta-right {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  justify-content: flex-end !important;
}
.home-final-page .home-bottom-cta .cta-right img {
  width: 190px !important;
  max-width: 190px !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12) !important;
}
.home-final-page .home-bottom-cta .cta-right .btn {
  white-space: nowrap !important;
}
@media (max-width: 1180px) {
  .home-final-page .home-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .home-final-page .home-hero-visual {
    min-height: auto !important;
  }
  .home-final-page .hero-dashboard-img {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
  }
}
@media (max-width: 900px) {
  .home-final-page .home-bottom-cta .cta-banner {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    padding: 32px !important;
  }
  .home-final-page .home-bottom-cta .cta-right {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }
}

/* Step C: dedicated homepage bottom CTA component */
.home-final-page .home-bottom-cta {
  padding: 48px 0 70px !important;
}
.home-final-page .home-cta-banner {
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 34px !important;
  width: 100% !important;
  min-height: 230px !important;
  border-radius: 28px !important;
  padding: 44px 56px !important;
  background:
    radial-gradient(circle at 95% 15%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, #075ee7 0%, #315df5 52%, #7538ff 100%) !important;
  box-shadow: 0 32px 90px rgba(50, 88, 210, 0.22) !important;
  overflow: hidden !important;
  position: relative !important;
}
.home-final-page .home-cta-banner:before {
  content: '' !important;
  position: absolute !important;
  inset: auto 36px 18px auto !important;
  width: 260px !important;
  height: 140px !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%) !important;
  pointer-events: none !important;
}
.home-final-page .home-cta-icon {
  width: 96px !important;
  height: 96px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  position: relative !important;
  z-index: 1 !important;
}
.home-final-page .home-cta-icon .zi-icon {
  width: 42px !important;
  height: 42px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.home-final-page .home-cta-copy {
  position: relative !important;
  z-index: 1 !important;
}
.home-final-page .home-cta-copy h2 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.055em !important;
  font-weight: 800 !important;
}
.home-final-page .home-cta-copy p {
  margin: 0 0 20px !important;
  max-width: 620px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
}
.home-final-page .home-cta-checks {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
}
.home-final-page .home-cta-checks span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}
.home-final-page .home-cta-checks b {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #29d17f !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  font-size: 14px !important;
}
.home-final-page .home-cta-action {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  justify-content: flex-end !important;
  position: relative !important;
  z-index: 1 !important;
}
.home-final-page .home-cta-action img {
  width: 190px !important;
  height: auto !important;
  border-radius: 18px !important;
  display: block !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16) !important;
  background: #fff !important;
}
.home-final-page .home-cta-action .btn {
  min-width: 190px !important;
  height: 58px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  font-weight: 900 !important;
}
.home-final-page .home-cta-action .btn span {
  margin-left: 8px !important;
}
@media (max-width: 1100px) {
  .home-final-page .home-cta-banner {
    grid-template-columns: 80px 1fr !important;
  }
  .home-final-page .home-cta-action {
    grid-column: 1 / -1 !important;
    justify-content: flex-start !important;
  }
}
@media (max-width: 760px) {
  .home-final-page .home-cta-banner {
    grid-template-columns: 1fr !important;
    padding: 32px !important;
    gap: 24px !important;
  }
  .home-final-page .home-cta-icon {
    width: 78px !important;
    height: 78px !important;
  }
  .home-final-page .home-cta-action {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .home-final-page .home-cta-action img {
    width: 170px !important;
  }
}

/* Final fix: true transparent homepage hero and balanced CTA */
.home-final-page .home-hero-final {
  padding: 24px 0 28px !important;
}
.home-final-page .home-hero-grid {
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 24px !important;
  min-height: 470px !important;
  align-items: center !important;
}
.home-final-page .home-hero-copy h1 {
  font-size: clamp(40px, 3.65vw, 56px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.058em !important;
}
.home-final-page .home-hero-visual {
  min-height: 430px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
.home-final-page .hero-dashboard-img {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  width: min(820px, 108%) !important;
  height: auto !important;
  max-width: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 26px 54px rgba(16, 73, 150, 0.16)) !important;
}
.home-final-page .home-bottom-cta {
  padding: 48px 0 70px !important;
}
.home-final-page .home-cta-banner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 42px !important;
  min-height: 215px !important;
  border-radius: 28px !important;
  padding: 42px 52px !important;
  background: linear-gradient(90deg, #075ee7 0%, #315df5 52%, #7538ff 100%) !important;
  box-shadow: 0 32px 90px rgba(50, 88, 210, 0.22) !important;
  overflow: hidden !important;
  position: relative !important;
}
.home-final-page .home-cta-left {
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 30px !important;
  min-width: 0 !important;
}
.home-final-page .home-cta-icon {
  width: 92px !important;
  height: 92px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  margin: 0 !important;
}
.home-final-page .home-cta-icon .zi-icon {
  width: 42px !important;
  height: 42px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.home-final-page .home-cta-copy h2 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(32px, 3.1vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.055em !important;
  font-weight: 800 !important;
  max-width: 720px !important;
}
.home-final-page .home-cta-copy p {
  margin: 0 0 18px !important;
  max-width: 680px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
}
.home-final-page .home-cta-checks {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  flex-wrap: wrap !important;
}
.home-final-page .home-cta-checks span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}
.home-final-page .home-cta-checks b {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #29d17f !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  font-size: 14px !important;
}
.home-final-page .home-cta-action {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  justify-content: flex-end !important;
}
.home-final-page .home-cta-action img {
  width: 178px !important;
  max-width: 178px !important;
  height: auto !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16) !important;
}
.home-final-page .home-cta-action .btn {
  min-width: 196px !important;
  height: 58px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  font-weight: 900 !important;
}
@media (max-width: 1180px) {
  .home-final-page .home-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .home-final-page .home-hero-visual {
    min-height: auto !important;
    justify-content: center !important;
  }
  .home-final-page .hero-dashboard-img {
    width: 100% !important;
  }
  .home-final-page .home-cta-banner {
    grid-template-columns: 1fr !important;
  }
  .home-final-page .home-cta-action {
    justify-content: flex-start !important;
  }
}
@media (max-width: 760px) {
  .home-final-page .home-cta-banner {
    padding: 32px !important;
  }
  .home-final-page .home-cta-left {
    grid-template-columns: 1fr !important;
  }
  .home-final-page .home-cta-action {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

/* Final homepage template preview cards: real HTML invoices, no visible use-template links */
.home-template-preview-final .template-grid-home {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}
.home-template-preview-final .template-preview-card {
  border: 1px solid #dbe8fb !important;
  border-radius: 22px !important;
  background: #fff !important;
  padding: 18px !important;
  box-shadow: 0 18px 48px rgba(32, 78, 141, 0.08) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease !important;
  min-height: 430px !important;
}
.home-template-preview-final .template-preview-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 26px 68px rgba(32, 78, 141, 0.12) !important;
  border-color: #b9d1f7 !important;
}
.home-template-preview-final .invoice-preview-sheet {
  position: relative !important;
  min-height: 320px !important;
  border: 1px solid #e3edf9 !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 99, 246, 0.09), transparent 24%),
    radial-gradient(circle at 98% 4%, rgba(11, 99, 246, 0.08), transparent 22%), #fff !important;
  overflow: hidden !important;
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}
.home-template-preview-final .invoice-preview-accent {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 8px !important;
  background: #0b63f6 !important;
}
.home-template-preview-final .invoice-preview-head {
  display: flex !important;
  justify-content: space-between !important;
  gap: 12px !important;
  align-items: flex-start !important;
  padding-top: 8px !important;
}
.home-template-preview-final .invoice-preview-brand {
  display: block !important;
  font-size: 13px !important;
  color: #071632 !important;
  letter-spacing: -0.01em !important;
}
.home-template-preview-final .invoice-preview-head span {
  display: block !important;
  margin-top: 4px !important;
  color: #6b7c95 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}
.home-template-preview-final .invoice-preview-head b {
  color: #0b63f6 !important;
  font-size: 18px !important;
  letter-spacing: -0.03em !important;
}
.home-template-preview-final .invoice-preview-parties {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin: 18px 0 12px !important;
}
.home-template-preview-final .invoice-preview-parties div {
  border: 1px solid #e7eef9 !important;
  border-radius: 9px !important;
  background: #f8fbff !important;
  padding: 9px !important;
}
.home-template-preview-final .invoice-preview-parties small {
  display: block !important;
  color: #7b8aa3 !important;
  font-size: 8px !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  margin-bottom: 4px !important;
}
.home-template-preview-final .invoice-preview-parties strong {
  display: block !important;
  color: #071632 !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
}
.home-template-preview-final .invoice-preview-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 4px !important;
  font-size: 9px !important;
}
.home-template-preview-final .invoice-preview-table th {
  background: #0b63f6 !important;
  color: #fff !important;
  padding: 8px 7px !important;
  text-align: left !important;
  font-weight: 800 !important;
}
.home-template-preview-final .invoice-preview-table th:first-child {
  border-radius: 8px 0 0 8px !important;
}
.home-template-preview-final .invoice-preview-table th:last-child {
  border-radius: 0 8px 8px 0 !important;
  text-align: right !important;
}
.home-template-preview-final .invoice-preview-table td {
  padding: 8px 7px !important;
  border-bottom: 1px solid #edf3fb !important;
  color: #2d4365 !important;
}
.home-template-preview-final .invoice-preview-table td:nth-child(2) {
  text-align: center !important;
}
.home-template-preview-final .invoice-preview-table td:last-child {
  text-align: right !important;
  font-weight: 800 !important;
  color: #071632 !important;
}
.home-template-preview-final .invoice-preview-total {
  margin-top: 16px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-radius: 9px !important;
  background: #0b63f6 !important;
  color: #fff !important;
  padding: 10px 12px !important;
}
.home-template-preview-final .invoice-preview-total span {
  font-size: 9px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}
.home-template-preview-final .invoice-preview-total strong {
  font-size: 14px !important;
}
.home-template-preview-final .template-preview-meta {
  text-align: center !important;
  padding: 16px 4px 4px !important;
}
.home-template-preview-final .template-preview-meta h3 {
  margin: 0 0 7px !important;
  color: #071632 !important;
  font-size: 20px !important;
  letter-spacing: -0.035em !important;
}
.home-template-preview-final .template-preview-meta span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: #f3f7ff !important;
  color: #0b63f6 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}
.home-template-preview-final .template-preview-green .invoice-preview-accent,
.home-template-preview-final .template-preview-green .invoice-preview-table th,
.home-template-preview-final .template-preview-green .invoice-preview-total {
  background: #17a56f !important;
}
.home-template-preview-final .template-preview-green .invoice-preview-head b {
  color: #17a56f !important;
}
.home-template-preview-final .template-preview-dark .invoice-preview-sheet {
  background: #071632 !important;
  border-color: #1d3357 !important;
}
.home-template-preview-final .template-preview-dark .invoice-preview-brand,
.home-template-preview-final .template-preview-dark .invoice-preview-head b,
.home-template-preview-final .template-preview-dark .invoice-preview-parties strong,
.home-template-preview-final .template-preview-dark .invoice-preview-table td,
.home-template-preview-final .template-preview-dark .invoice-preview-table td:last-child {
  color: #fff !important;
}
.home-template-preview-final .template-preview-dark .invoice-preview-head span,
.home-template-preview-final .template-preview-dark .invoice-preview-table td {
  color: #b7c7e5 !important;
}
.home-template-preview-final .template-preview-dark .invoice-preview-parties div {
  background: #12284a !important;
  border-color: #263d61 !important;
}
.home-template-preview-final .template-preview-dark .invoice-preview-table td {
  border-color: #263d61 !important;
}
.home-template-preview-final .template-preview-dark .invoice-preview-accent,
.home-template-preview-final .template-preview-dark .invoice-preview-table th,
.home-template-preview-final .template-preview-dark .invoice-preview-total {
  background: #152d52 !important;
}
.home-template-preview-final .template-preview-purple .invoice-preview-accent,
.home-template-preview-final .template-preview-purple .invoice-preview-table th,
.home-template-preview-final .template-preview-purple .invoice-preview-total {
  background: #7439f3 !important;
}
.home-template-preview-final .template-preview-purple .invoice-preview-head b {
  color: #7439f3 !important;
}
.home-template-preview-final .template-preview-indigo .invoice-preview-accent,
.home-template-preview-final .template-preview-indigo .invoice-preview-table th,
.home-template-preview-final .template-preview-indigo .invoice-preview-total {
  background: #4f46e5 !important;
}
.home-template-preview-final .template-preview-indigo .invoice-preview-head b {
  color: #4f46e5 !important;
}
.home-template-preview-final .template-preview-orange .invoice-preview-accent,
.home-template-preview-final .template-preview-orange .invoice-preview-table th,
.home-template-preview-final .template-preview-orange .invoice-preview-total {
  background: #f28a12 !important;
}
.home-template-preview-final .template-preview-orange .invoice-preview-head b {
  color: #f28a12 !important;
}
@media (max-width: 1280px) {
  .home-template-preview-final .template-grid-home {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 780px) {
  .home-template-preview-final .template-grid-home {
    grid-template-columns: 1fr !important;
  }
}

/* Homepage template section one-row layout + footer social removal cleanup */
.home-template-preview-final .template-grid-home,
.home-final-page .template-grid-home {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(150px, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
.home-template-preview-final .template-preview-card {
  min-height: 390px !important;
  padding: 14px !important;
}
.home-template-preview-final .invoice-preview-sheet {
  min-height: 285px !important;
  padding: 14px !important;
}
.home-template-preview-final .template-preview-meta h3 {
  font-size: 18px !important;
}
.home-template-preview-final .invoice-preview-head b {
  font-size: 16px !important;
}
.home-template-preview-final .invoice-preview-parties {
  gap: 8px !important;
  margin: 14px 0 10px !important;
}
.home-template-preview-final .invoice-preview-table th,
.home-template-preview-final .invoice-preview-table td {
  padding: 7px 6px !important;
}
.site-footer .social,
.site-footer .footer-social,
.site-footer .social-links {
  display: none !important;
}
@media (max-width: 1280px) {
  .home-template-preview-final .template-grid-home,
  .home-final-page .template-grid-home {
    grid-template-columns: repeat(6, minmax(142px, 1fr)) !important;
    gap: 14px !important;
  }
}
@media (max-width: 1020px) {
  .home-template-preview-final .template-grid-home,
  .home-final-page .template-grid-home {
    display: flex !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding-bottom: 12px !important;
    scroll-snap-type: x proximity !important;
  }
  .home-template-preview-final .template-preview-card,
  .home-final-page .template-card-home {
    flex: 0 0 210px !important;
    scroll-snap-align: start !important;
  }
}

/* Homepage template section: show 3 invoice previews */
.home-template-preview-final .template-grid-home,
.home-final-page .template-grid-home {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}
.home-template-preview-final .template-preview-card {
  min-height: 430px !important;
}
.home-template-preview-final .invoice-preview-sheet {
  min-height: 320px !important;
}
@media (max-width: 900px) {
  .home-template-preview-final .template-grid-home,
  .home-final-page .template-grid-home {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
  }
}

/* V212G: non-blog interaction polish and keyboard focus safeguards */
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) a,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) button,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .btn,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) [role='button'] {
  -webkit-tap-highlight-color: rgba(11, 99, 246, 0.12);
}

body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) a:focus-visible,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  button:focus-visible,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) input:focus-visible,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  select:focus-visible,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  textarea:focus-visible,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  [tabindex]:focus-visible {
  outline: 3px solid rgba(11, 99, 246, 0.34);
  outline-offset: 4px;
  border-radius: 12px;
}

body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .site-header a,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .site-footer a,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .btn,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .resource-card,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .industry-card,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .tool-card,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .related-card,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .pricing-card,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  .zg-home-template-card,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  .zg-home-feature-card {
  transition-property: transform, box-shadow, border-color, background-color, color, opacity;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  .site-footer
  a:hover,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  .side-panel
  a:hover {
  color: var(--z-blue);
  transform: translateX(2px);
}

body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  .industry-card:hover,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .tool-card:hover,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .related-card:hover,
body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final)
  .pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 99, 246, 0.24);
  box-shadow: 0 24px 60px rgba(32, 78, 141, 0.1);
}

/* body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) .btn:hover{
  transform:translateY(-1px);
} */

@media (prefers-reduced-motion: reduce) {
  body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) *,
  body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) *::before,
  body:not(.blog-layout-final):not(.z-blog-article-page):not(.article-page-final) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* V212J: visible breadcrumb navigation for SEO and UX */
.z-breadcrumbs {
  background: #fff;
  border-bottom: 1px solid rgba(204, 218, 238, 0.58);
}
.z-breadcrumbs__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}
.z-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.4;
  color: #63718a;
}
.z-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.z-breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: #a8b4c6;
}
.z-breadcrumbs a {
  color: #52637d;
  text-decoration: none;
  font-weight: 650;
  min-height: fit-content;
}
.z-breadcrumbs a:hover {
  color: #0b63f6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.z-breadcrumbs span[aria-current='page'] {
  color: #071632;
  font-weight: 750;
}
@media (max-width: 640px) {
  .z-breadcrumbs__inner {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .z-breadcrumbs ol {
    font-size: 12px;
    gap: 6px;
  }
  .z-breadcrumbs li {
    gap: 6px;
  }
}

/* =========================================================
   Mobile burger menu (viewport < 1200px)
   main-nav and nav-actions live inside the burger drawer.
   Built and toggled by assets/zintego-mobile-nav.js
   ========================================================= */
.zg-burger {
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid #dbe8fb;
  border-radius: 13px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(32, 78, 141, 0.05);
}
.zg-burger:hover {
  background: #f7fbff;
}
.zg-burger:focus-visible {
  outline: 2px solid rgba(11, 99, 246, 0.45);
  outline-offset: 2px;
}
.zg-burger-box {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.zg-burger-line {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: #071632;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
body.zg-nav-open .zg-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.zg-nav-open .zg-burger-line:nth-child(2) {
  opacity: 0;
}
body.zg-nav-open .zg-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.zg-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(7, 22, 50, 0.42);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
body.zg-nav-open .zg-mobile-overlay {
  opacity: 1;
  visibility: visible;
}
.zg-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1501;
  width: min(380px, 90vw);
  background: #fff;
  box-shadow: -24px 0 70px rgba(7, 22, 50, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition:
    transform 0.28s ease,
    visibility 0.28s ease;
  visibility: hidden;
}
body.zg-nav-open .zg-mobile-drawer {
  transform: translateX(0);
  visibility: visible;
}
body.zg-nav-open {
  overflow: hidden;
}
.zg-mobile-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 8px 22px;
  border-bottom: 1px solid #edf3fb;
}
.zg-mobile-brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #071632;
  text-decoration: none;
}
.zg-mobile-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid #e3edf9;
  border-radius: 12px;
  background: #f8fbff;
  color: #071632;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.zg-mobile-close:hover {
  background: #eef4ff;
  color: #0b63f6;
}
.zg-mobile-close:focus-visible {
  outline: 2px solid rgba(11, 99, 246, 0.45);
  outline-offset: 2px;
}
.zg-mobile-panel {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px 16px 30px;
}
.zg-mobile-nav {
  display: grid !important;
  gap: 2px;
  flex-direction: column;
}
.zg-mobile-nav > a,
.zg-mobile-nav > .nav-dropdown > .nav-dropdown__trigger,
.zg-mobile-nav > .nav-item-dropdown > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  color: #071632 !important;
  text-decoration: none;
  gap: 8px;
}
.zg-mobile-nav > a:hover,
.zg-mobile-nav > a.active,
.zg-mobile-nav > .nav-dropdown > .nav-dropdown__trigger:hover {
  color: #0b63f6 !important;
  background: #f4f8ff;
}
.zg-mobile-nav .nav-dropdown,
.zg-mobile-nav .nav-item-dropdown {
  position: relative;
  display: block;
}
.zg-mobile-nav .nav-dropdown__trigger {
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #071632 !important;
  text-decoration: none;
  padding: 13px 14px;
  border-radius: 12px;
}
.zg-mobile-nav .nav-dropdown__trigger:hover {
  color: #0b63f6 !important;
  background: #f4f8ff;
}
.zg-mobile-nav .nav-dropdown.zg-mobile-open > .nav-dropdown__trigger,
.zg-mobile-nav .nav-item-dropdown.zg-mobile-open > a {
  color: #0b63f6 !important;
  background: #f4f8ff;
}
.zg-mobile-nav .nav-dropdown.zg-mobile-open > .nav-dropdown__trigger::after {
  transform: rotate(225deg) translateY(2px);
}
.zg-mobile-nav .nav-dropdown__menu,
.zg-mobile-nav .dropdown-menu {
  /* position: static !important; */
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 2px 0 6px 8px;
  border: 0 !important;
  border-top: 1px solid #edf3fb;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 4px 0 10px !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease;
}
.zg-mobile-nav .nav-dropdown__menu::before,
.zg-mobile-nav .dropdown-menu::before {
  display: none !important;
}
.zg-mobile-nav .nav-dropdown.zg-mobile-open > .nav-dropdown__menu,
.zg-mobile-nav .nav-item-dropdown.zg-mobile-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.zg-mobile-nav .nav-dropdown__panel {
  background: #f8fbff !important;
  border: 1px solid #e3edf9 !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 14px 16px !important;
}
.zg-mobile-nav .dropdown-menu a {
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 11px 10px;
}
.zg-mobile-actions {
  display: grid !important;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #edf3fb;
}
.zg-mobile-actions .login {
  display: block !important;
  padding: 13px 14px;
  border-radius: 12px;
  background: #f4f8ff;
  color: #0b63f6;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}
.zg-mobile-actions .btn {
  display: flex !important;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
}
.zg-mobile-actions .btn-primary span {
  display: inline-block !important;
}
@media (max-width: 1199px) {
  .zg-burger {
    display: inline-flex;
  }
  .site-header .main-nav,
  .site-header .nav-actions {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .zg-burger,
  .zg-mobile-drawer,
  .zg-mobile-overlay {
    display: none !important;
  }
}
