/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

:root {
  --hnpro-ink: #163047;
  --hnpro-muted: #62748a;
  --hnpro-accent: #00a7e1;
  --hnpro-accent-dark: #0079b4;
  --hnpro-line: rgba(22, 48, 71, 0.1);
  --hnpro-shadow: 0 24px 60px rgba(15, 42, 64, 0.12);
}

body.hnpro-template {
  background:
    radial-gradient(circle at top left, rgba(0, 167, 225, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(35, 184, 140, 0.08), transparent 18%),
    linear-gradient(180deg, #f8fbfe 0%, #eef5fb 100%);
  color: var(--hnpro-ink);
}

.hnpro-kicker,
.hnpro-auth-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 167, 225, 0.09);
  color: var(--hnpro-accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hnpro-auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 167, 225, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.15), transparent 24%),
    linear-gradient(135deg, #e9f4fb 0%, #f8fbfe 52%, #eef7f3 100%);
}

.hnpro-auth-panel {
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--hnpro-shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hnpro-auth-aside {
  padding: 48px;
  background: linear-gradient(160deg, rgba(22, 48, 71, 0.95), rgba(8, 28, 43, 0.94));
  color: #fff;
}

.hnpro-auth-aside h1 {
  margin: 18px 0 14px;
  font-size: 48px;
  line-height: .94;
  color: #fff;
}

.hnpro-auth-aside p,
.hnpro-auth-points li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.hnpro-auth-points {
  margin: 24px 0;
  padding-left: 18px;
}

.hnpro-auth-points li + li {
  margin-top: 10px;
}

.hnpro-auth-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hnpro-auth-badge-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hnpro-auth-card,
.hnpro-register-stage {
  padding: 44px;
  background: rgba(255, 255, 255, 0.85);
}

.hnpro-auth-logo img,
#registration .logo {
  width: 180px;
  height: auto;
}

.hnpro-auth-card h2 {
  margin: 30px 0 8px;
  font-size: 34px;
}

.hnpro-auth-subtitle {
  color: var(--hnpro-muted);
  margin-bottom: 24px;
}

.hnpro-auth-form .form-group label,
.hnpro-register-stage .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--hnpro-ink);
  font-weight: 700;
}

.hnpro-auth-form input,
.hnpro-register-stage .field,
.hnpro-register-stage select,
.hnpro-register-stage input.form-control {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(22, 48, 71, 0.14);
  background: #fff;
  box-shadow: none;
  padding: 14px 16px;
}

.hnpro-password-wrap {
  position: relative;
}

.hnpro-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(0, 167, 225, 0.08);
  color: var(--hnpro-accent-dark);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.hnpro-auth-row,
.hnpro-auth-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hnpro-auth-row {
  margin: 14px 0 22px;
}

.hnpro-auth-submit {
  min-height: 54px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
}

.hnpro-auth-divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.hnpro-auth-divider:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid var(--hnpro-line);
}

.hnpro-auth-divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: #fff;
  color: var(--hnpro-muted);
}

.hnpro-auth-footer {
  margin-top: 22px;
  color: var(--hnpro-muted);
}

.hnpro-register-stage #registration,
.hnpro-register-stage .signin-signup-form {
  background: transparent;
  box-shadow: none;
  width: 100%;
  max-width: none;
  padding: 0;
}

.hnpro-register-stage .form-title {
  color: var(--hnpro-ink);
  font-size: 34px;
  margin: 20px 0 28px;
}

.hnpro-register-stage .sub-heading span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 167, 225, 0.09);
  color: var(--hnpro-accent-dark);
}

.hnpro-dashboard {
  display: grid;
  gap: 28px;
}

.hnpro-radar,
.hnpro-control-card,
.hnpro-addon-slot,
.hnpro-dns-lab,
.hnpro-panel-grid .panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--hnpro-line);
  border-radius: 28px;
  box-shadow: var(--hnpro-shadow);
}

.hnpro-radar {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 20px;
}

.hnpro-radar h1 {
  margin: 18px 0 12px;
  font-size: 42px;
  line-height: .96;
}

.hnpro-radar p,
.hnpro-dns-hero p {
  max-width: 60ch;
  color: var(--hnpro-muted);
}

.hnpro-radar-grid,
.hnpro-quickgrid,
.hnpro-control-grid {
  display: grid;
  gap: 18px;
}

.hnpro-radar-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hnpro-radar-grid article,
.hnpro-quickcard {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-radar-grid strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
}

.hnpro-radar-grid span,
.hnpro-radar-grid small,
.hnpro-quickcard span,
.hnpro-dns-muted {
  color: var(--hnpro-muted);
}

.hnpro-quickgrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hnpro-quickcard strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hnpro-ink);
}

.hnpro-control-grid {
  grid-template-columns: 1.2fr .8fr;
}

.hnpro-control-card {
  padding: 28px;
}

.hnpro-kb-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 16px;
}

.hnpro-kb-search input {
  min-height: 54px;
  border-radius: 16px;
}

.hnpro-action-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hnpro-action-list a {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f7fbff;
  border: 1px solid rgba(22, 48, 71, 0.08);
  color: var(--hnpro-ink);
}

.hnpro-panel-grid .panel {
  overflow: hidden;
}

.hnpro-panel-grid .panel-heading {
  background: #fff;
  border-bottom: 1px solid var(--hnpro-line);
  padding: 18px 22px;
}

.hnpro-panel-grid .panel-body,
.hnpro-panel-grid .list-group-item,
.hnpro-panel-grid .panel-footer {
  background: transparent;
}

.hnpro-dns-lab {
  padding: 30px;
}

.hnpro-dns-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.hnpro-dns-hero h1 {
  margin: 14px 0 10px;
}

.hnpro-dns-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hnpro-dns-metrics article {
  padding: 18px;
  border-radius: 20px;
  background: #f7fbff;
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-dns-metrics strong {
  display: block;
  font-size: 24px;
}

.hnpro-dns-table {
  display: grid;
  gap: 12px;
}

.hnpro-dns-header,
.hnpro-dns-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1.4fr .7fr;
  gap: 12px;
  align-items: center;
}

.hnpro-dns-header {
  padding: 0 10px 8px;
  color: var(--hnpro-muted);
  font-weight: 700;
}

.hnpro-dns-row {
  padding: 14px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-dns-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.hnpro-dns-footer p {
  margin: 0;
  color: var(--hnpro-muted);
}

.hnpro-dns-actions {
  display: flex;
  gap: 12px;
}

.hnpro-dns-row select,
.hnpro-dns-row input {
  min-height: 48px;
  border-radius: 14px;
}

@media (max-width: 1100px) {
  .hnpro-auth-panel,
  .hnpro-radar,
  .hnpro-control-grid,
  .hnpro-dns-hero,
  .hnpro-dns-header,
  .hnpro-dns-row {
    grid-template-columns: 1fr;
  }

  .hnpro-radar-grid,
  .hnpro-quickgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hnpro-auth-aside,
  .hnpro-auth-card,
  .hnpro-register-stage,
  .hnpro-radar,
  .hnpro-control-card,
  .hnpro-dns-lab {
    padding: 24px;
  }

  .hnpro-radar-grid,
  .hnpro-quickgrid,
  .hnpro-dns-metrics {
    grid-template-columns: 1fr;
  }

  .hnpro-auth-row,
  .hnpro-auth-footer,
  .hnpro-kb-search,
  .hnpro-dns-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hnpro-dns-actions {
    flex-direction: column;
  }
}

#header,
#main-menu {
  background: #ffffff;
}

#header {
  border-bottom: 1px solid rgba(22, 48, 71, 0.08);
}

#header .top-nav a,
#main-menu .navbar-nav > li > a {
  color: var(--hnpro-ink);
  font-weight: 600;
}

#main-menu .navbar {
  margin-bottom: 0;
  border: 0;
  background: transparent;
}

#main-menu .navbar-nav > li > a {
  padding: 18px 14px;
}

.hnpro-home-hero,
.hnpro-inner-hero {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(0, 167, 225, 0.14), transparent 20%),
    linear-gradient(135deg, #eff7fc 0%, #ffffff 54%, #f4fbf8 100%);
  border-bottom: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.hnpro-home-copy h1,
.hnpro-inner-hero h1 {
  margin: 18px 0 12px;
  font-size: 54px;
  line-height: .94;
  color: var(--hnpro-ink);
}

.hnpro-home-copy p,
.hnpro-inner-hero p {
  color: var(--hnpro-muted);
  font-size: 18px;
  max-width: 60ch;
}

.hnpro-home-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hnpro-domain-search,
.hnpro-home-highlight-card,
.hnpro-home-trust,
.hnpro-plan-card,
.hnpro-feature-grid article,
.hnpro-news-card,
.hnpro-footer {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(22, 48, 71, 0.08);
  box-shadow: var(--hnpro-shadow);
}

.hnpro-domain-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  max-width: 680px;
}

.hnpro-domain-search input {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(22, 48, 71, 0.12);
  padding: 14px 16px;
}

.hnpro-home-highlight-card {
  height: 100%;
  padding: 28px;
  border-radius: 26px;
}

.hnpro-home-highlight-card strong {
  display: block;
  margin: 14px 0;
  font-size: 34px;
}

.hnpro-home-highlight-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--hnpro-muted);
}

.hnpro-home-section {
  padding: 32px 0;
}

.hnpro-inner-hero + #main-body-holder .page-header {
  display: none;
}

#main-body-holder,
#main-body {
  background: transparent;
}

.hnpro-home-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
}

.hnpro-home-trust span {
  text-align: center;
  font-weight: 700;
  color: var(--hnpro-ink);
}

.hnpro-home-heading {
  margin-bottom: 22px;
}

.hnpro-home-heading h2 {
  margin: 14px 0 10px;
  font-size: 40px;
}

.hnpro-home-heading p {
  color: var(--hnpro-muted);
  max-width: 62ch;
}

.hnpro-plan-grid,
.hnpro-feature-grid,
.hnpro-news-grid,
.hnpro-footer-grid {
  display: grid;
  gap: 18px;
}

.hnpro-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnpro-plan-card {
  border-radius: 24px;
  padding: 26px;
}

.hnpro-plan-card.featured {
  border: 1px solid rgba(0, 167, 225, 0.28);
  transform: translateY(-6px);
}

.hnpro-plan-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 167, 225, 0.09);
  color: var(--hnpro-accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.hnpro-plan-card h3 {
  margin: 16px 0 8px;
  font-size: 30px;
}

.hnpro-plan-card p,
.hnpro-news-card p {
  color: var(--hnpro-muted);
}

.hnpro-plan-card strong {
  display: block;
  margin: 18px 0;
  font-size: 38px;
  color: var(--hnpro-ink);
}

.hnpro-plan-card small {
  font-size: 15px;
  color: var(--hnpro-muted);
}

.hnpro-plan-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--hnpro-muted);
}

.hnpro-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnpro-feature-grid article,
.hnpro-news-card {
  padding: 24px;
  border-radius: 22px;
}

.hnpro-feature-grid h3,
.hnpro-news-card h3 {
  margin: 0 0 10px;
}

.hnpro-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnpro-news-card span {
  color: var(--hnpro-accent-dark);
  font-weight: 700;
}

.hnpro-footer {
  margin-top: 32px;
  padding: 34px 0 20px;
  border-radius: 28px 28px 0 0;
}

.hnpro-footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.hnpro-footer-logo {
  width: 160px;
  margin-bottom: 12px;
}

.hnpro-footer p,
.hnpro-footer a,
.hnpro-footer-bottom {
  color: var(--hnpro-muted);
}

.hnpro-footer h5 {
  color: var(--hnpro-ink);
  margin-bottom: 12px;
}

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

.hnpro-footer li + li {
  margin-top: 8px;
}

.hnpro-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(22, 48, 71, 0.08);
}

@media (max-width: 1100px) {
  .hnpro-home-hero-grid,
  .hnpro-plan-grid,
  .hnpro-feature-grid,
  .hnpro-news-grid,
  .hnpro-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hnpro-home-copy h1,
  .hnpro-inner-hero h1 {
    font-size: 40px;
  }

  .hnpro-home-trust {
    grid-template-columns: 1fr 1fr;
  }

  .hnpro-domain-search,
  .hnpro-footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}

.hnpro-list-shell,
.hnpro-domain-shell {
  display: grid;
  gap: 22px;
}

.hnpro-list-hero {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 48, 71, 0.08);
  box-shadow: var(--hnpro-shadow);
}

.hnpro-list-hero h2 {
  margin: 12px 0 8px;
  font-size: 36px;
}

.hnpro-list-hero p {
  margin: 0;
  color: var(--hnpro-muted);
}

.hnpro-card-grid,
.hnpro-service-meta {
  display: grid;
  gap: 18px;
}

.hnpro-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnpro-service-card,
.hnpro-table-card,
.hnpro-domain-tabs .tab-pane,
.hnpro-invoice-card,
.hnpro-invoice-head {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  box-shadow: var(--hnpro-shadow);
}

.hnpro-service-card {
  padding: 24px;
}

.hnpro-service-top,
.hnpro-table-header,
.hnpro-table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.hnpro-service-top h3 {
  margin: 0 0 6px;
}

.hnpro-service-top p,
.hnpro-service-top a {
  color: var(--hnpro-muted);
  margin: 0;
}

.hnpro-service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hnpro-services-hero-grid,
.hnpro-services-grid {
  display: grid;
  gap: 18px;
}

.hnpro-services-hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.hnpro-services-highlight,
.hnpro-services-overview,
.hnpro-service-card-premium {
  background: #fff;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(21, 44, 77, 0.06);
}

.hnpro-services-highlight,
.hnpro-services-overview {
  padding: 24px;
}

.hnpro-services-highlight h2 {
  margin: 14px 0 10px;
  font-size: 34px;
}

.hnpro-services-highlight p {
  color: var(--hnpro-muted);
  max-width: 56ch;
}

.hnpro-services-highlight-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hnpro-services-overview {
  display: grid;
  gap: 14px;
}

.hnpro-services-overview div {
  padding: 18px;
  border-radius: 18px;
  background: #f7f9fc;
}

.hnpro-services-overview span,
.hnpro-service-statuslabel {
  color: var(--hnpro-muted);
}

.hnpro-services-overview strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  color: var(--hnpro-ink);
}

.hnpro-service-card-premium {
  position: relative;
  overflow: hidden;
}

.hnpro-service-card-premium:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2d98ff, #5c63ff);
}

.hnpro-service-statusbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f9fc;
  margin-bottom: 16px;
}

.hnpro-service-statusvalue {
  font-weight: 800;
  color: var(--hnpro-ink);
}

.hnpro-service-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.hnpro-service-meta span,
.hnpro-invoice-shell .small-text,
.hnpro-table-row span {
  color: var(--hnpro-muted);
}

.hnpro-service-meta strong {
  display: block;
  margin-top: 6px;
}

.hnpro-services-page {
  padding-bottom: 8px;
}

.hnpro-services-stage {
  display: grid;
  gap: 22px;
}

.hnpro-services-banner,
.hnpro-services-kpi,
.hnpro-services-spotlight,
.hnpro-service-card-advanced {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(21, 44, 77, 0.06);
}

.hnpro-services-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 20px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(45, 152, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff, #f3f8ff);
}

.hnpro-services-banner h1 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.hnpro-services-banner p {
  max-width: 64ch;
  color: var(--hnpro-muted);
  margin: 0;
}

.hnpro-services-banner-actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

.hnpro-services-kpi-grid,
.hnpro-services-grid-advanced,
.hnpro-services-spotlight-meta,
.hnpro-service-quickline {
  display: grid;
  gap: 18px;
}

.hnpro-services-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hnpro-services-kpi {
  padding: 22px;
}

.hnpro-services-kpi span,
.hnpro-services-spotlight-meta span,
.hnpro-service-index,
.hnpro-service-quickline span,
.hnpro-service-meta-advanced small {
  color: var(--hnpro-muted);
}

.hnpro-services-kpi strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 36px;
  color: var(--hnpro-ink);
}

.hnpro-services-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 320px;
  gap: 24px;
  padding: 28px;
}

.hnpro-services-spotlight h2 {
  margin: 12px 0 6px;
  font-size: clamp(28px, 3vw, 42px);
}

.hnpro-services-spotlight-copy > p {
  margin: 0;
  color: var(--hnpro-muted);
}

.hnpro-services-spotlight-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.hnpro-services-spotlight-meta div {
  padding: 16px 18px;
  border-radius: 20px;
  background: #f7fbff;
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-services-spotlight-meta strong {
  display: block;
  margin-top: 8px;
  color: var(--hnpro-ink);
}

.hnpro-services-spotlight-actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

.hnpro-services-grid-advanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hnpro-service-card-advanced {
  padding: 24px;
}

.hnpro-service-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.hnpro-service-card-head h3 {
  margin: 6px 0 4px;
}

.hnpro-service-card-head p,
.hnpro-service-card-head a {
  margin: 0;
  color: var(--hnpro-muted);
}

.hnpro-service-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hnpro-service-quickline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.hnpro-service-quickline span {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f9fc;
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-service-quickline strong {
  color: var(--hnpro-ink);
}

.hnpro-service-meta-advanced {
  margin: 0 0 18px;
}

.hnpro-service-meta-advanced small {
  display: block;
  margin-top: 6px;
}

.hnpro-service-actions-advanced .btn {
  min-width: 132px;
}

.hnpro-table-card {
  overflow: hidden;
}

.hnpro-table-header,
.hnpro-table-row {
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr auto;
  padding: 18px 22px;
}

.hnpro-table-header {
  background: #f7fbff;
  font-weight: 700;
  color: var(--hnpro-muted);
}

.hnpro-table-row + .hnpro-table-row {
  border-top: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-table-row strong {
  color: var(--hnpro-ink);
}

.hnpro-domain-tabs .tab-pane {
  padding: 24px;
  margin-bottom: 18px;
}

.hnpro-domain-tabs h3,
.hnpro-domain-tabs h4 {
  color: var(--hnpro-ink);
}

.hnpro-domain-tabs .row {
  margin-bottom: 12px;
}

.hnpro-domain-tabs .form-control,
.hnpro-domain-tabs select {
  min-height: 46px;
  border-radius: 14px;
}

.hnpro-invoice-shell {
  padding: 28px;
}

.hnpro-invoice-head,
.hnpro-invoice-card {
  padding: 24px;
}

.hnpro-invoice-head {
  margin-bottom: 20px;
}

.hnpro-invoice-meta {
  margin-bottom: 16px;
}

.hnpro-invoice-shell hr {
  display: none;
}

.invoice-status span {
  border-radius: 999px;
  padding: 8px 14px;
}

@media (max-width: 1100px) {
  .hnpro-card-grid,
  .hnpro-service-meta,
  .hnpro-table-header,
  .hnpro-table-row {
    grid-template-columns: 1fr;
  }

  .hnpro-services-banner,
  .hnpro-services-spotlight,
  .hnpro-services-kpi-grid,
  .hnpro-services-grid-advanced,
  .hnpro-services-spotlight-meta,
  .hnpro-service-quickline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hnpro-list-shell,
  .hnpro-service-shell,
  .hnpro-form-page,
  .hnpro-ticket-thread,
  .hnpro-invoice-shell {
    padding: 0;
  }

  .hnpro-list-hero,
  .hnpro-service-hero,
  .hnpro-services-banner,
  .hnpro-services-spotlight,
  .hnpro-content-hero,
  .hnpro-service-card,
  .hnpro-table-card,
  .hnpro-invoice-card,
  .hnpro-invoice-head {
    border-radius: 20px;
  }

  .hnpro-services-banner,
  .hnpro-services-spotlight,
  .hnpro-content-hero,
  .hnpro-domain-ns-grid,
  .hnpro-service-card-advanced,
  .hnpro-services-kpi,
  .hnpro-services-highlight,
  .hnpro-services-overview,
  .hnpro-content-card,
  .hnpro-confirm-card {
    padding: 20px;
  }

  .hnpro-list-hero h1,
  .hnpro-service-hero h1,
  .hnpro-services-banner h1,
  .hnpro-services-spotlight h2,
  .hnpro-content-hero h1,
  .hnpro-confirm-card h1 {
    font-size: 28px;
    line-height: 1.05;
  }

  .hnpro-services-banner-actions,
  .hnpro-services-spotlight-actions,
  .hnpro-confirm-actions,
  .hnpro-service-actions,
  .hnpro-service-actions-advanced,
  .hnpro-services-highlight-actions {
    grid-template-columns: 1fr;
  }

  .hnpro-services-banner-actions .btn,
  .hnpro-services-spotlight-actions .btn,
  .hnpro-confirm-actions .btn,
  .hnpro-service-actions .btn,
  .hnpro-service-actions-advanced .btn,
  .hnpro-services-highlight-actions .btn {
    width: 100%;
  }

  .hnpro-service-card-head,
  .hnpro-service-top,
  .hnpro-table-header,
  .hnpro-table-row {
    grid-template-columns: 1fr;
  }

  .hnpro-services-kpi strong {
    font-size: 30px;
  }

  .hnpro-service-quickline span,
  .hnpro-services-spotlight-meta div,
  .hnpro-service-meta div,
  .hnpro-content-hero-side,
  .hnpro-confirm-ticket {
    padding: 14px 15px;
  }

  .hnpro-domain-ns-card,
  .hnpro-domain-contact-card {
    padding: 18px;
  }
}

.hnpro-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 116, 222, 0.1);
  color: #0b74de;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hnpro-list-hero,
.hnpro-service-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.hnpro-list-hero h1,
.hnpro-service-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.hnpro-service-shell,
.hnpro-form-page,
.hnpro-ticket-thread {
  display: grid;
  gap: 22px;
}

.hnpro-service-grid,
.hnpro-download-grid,
.hnpro-addon-grid,
.hnpro-department-grid {
  display: grid;
  gap: 22px;
}

.hnpro-service-grid {
  grid-template-columns: 1.4fr 1fr;
}

.hnpro-service-card-wide,
.hnpro-service-grid > .hnpro-service-card-wide {
  grid-column: 1 / -1;
}

.hnpro-service-card-primary {
  background:
    radial-gradient(circle at top right, rgba(11, 116, 222, 0.18), transparent 36%),
    linear-gradient(145deg, #ffffff, #f2f8ff);
}

.hnpro-service-status {
  min-width: 180px;
  padding: 18px 24px;
  border-radius: 20px;
  font-weight: 800;
  text-align: center;
  background: #0f172a;
  color: #fff;
}

.hnpro-status-active,
.hnpro-status-completed {
  background: linear-gradient(135deg, #0ca678, #0b8d66);
}

.hnpro-status-suspended,
.hnpro-status-overdue {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.hnpro-service-kpis,
.hnpro-detail-grid,
.hnpro-list-grid,
.hnpro-permission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hnpro-service-kpis div,
.hnpro-detail-grid div,
.hnpro-list-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247, 251, 255, 0.9);
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-service-kpis span,
.hnpro-detail-grid span,
.hnpro-list-grid span,
.hnpro-usage-dual span,
.hnpro-ticket-reply header span {
  display: block;
  color: var(--hnpro-muted);
  font-size: 13px;
}

.hnpro-service-kpis strong,
.hnpro-detail-grid strong,
.hnpro-list-grid strong,
.hnpro-usage-dual strong {
  display: block;
  margin-top: 6px;
  color: var(--hnpro-ink);
}

.hnpro-action-stack,
.hnpro-checkbox-stack {
  display: grid;
  gap: 12px;
}

.hnpro-section-head {
  margin-bottom: 18px;
}

.hnpro-section-head h3 {
  margin: 0 0 8px;
}

.hnpro-section-head p,
.hnpro-muted {
  color: var(--hnpro-muted);
}

.hnpro-module-stage {
  overflow: hidden;
  border-radius: 20px;
}

.hnpro-module-stage .panel,
.hnpro-module-stage .card,
.hnpro-module-stage .well {
  border-radius: 20px !important;
  border-color: rgba(22, 48, 71, 0.08) !important;
  box-shadow: none !important;
}

.hnpro-module-stage #cPanelQuickShortcutsPanel .cpanel-feature-row > div a,
.hnpro-module-stage #cPanelQuickShortcutsPanel .cpanel-feature-row > div {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hnpro-module-stage #cPanelQuickShortcutsPanel .cpanel-feature-row > div:hover {
  transform: translateY(-2px);
}

.hnpro-usage-dual {
  display: grid;
  gap: 14px;
}

.hnpro-usage-dual > div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(247, 251, 255, 0.9);
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-download-grid,
.hnpro-addon-grid,
.hnpro-department-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnpro-download-grid article,
.hnpro-addon-grid article,
.hnpro-department-card,
.hnpro-ticket-reply {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 48, 71, 0.08);
  box-shadow: var(--hnpro-shadow);
}

.hnpro-addon-grid article header,
.hnpro-inline-form {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.hnpro-addon-actions {
  margin-top: 14px;
}

.hnpro-table-shell {
  overflow: auto;
}

.hnpro-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hnpro-muted);
}

.hnpro-table tbody tr {
  cursor: pointer;
}

.hnpro-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hnpro-pill-success {
  background: rgba(12, 166, 120, 0.12);
  color: #0b8d66;
}

.hnpro-pill-muted {
  background: rgba(22, 48, 71, 0.08);
  color: var(--hnpro-muted);
}

.hnpro-department-card {
  display: grid;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.hnpro-department-card strong {
  font-size: 20px;
  color: var(--hnpro-ink);
}

.hnpro-marketing-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(247, 251, 255, 0.9);
}

.hnpro-inline-form {
  flex-wrap: wrap;
}

.hnpro-inline-form label {
  min-width: 180px;
  margin: 0;
}

.hnpro-inline-form .form-control {
  flex: 1 1 280px;
}

.hnpro-domain-action-form,
.hnpro-domain-contact-form,
.hnpro-domain-ns-card {
  display: grid;
  gap: 18px;
}

.hnpro-domain-contact-card {
  padding: 22px;
  border-radius: 22px;
  background: #f7fbff;
  border: 1px solid rgba(22, 48, 71, 0.08);
  height: 100%;
}

.hnpro-domain-contact-card h4,
.hnpro-domain-ns-card h4 {
  margin: 0 0 16px;
  color: var(--hnpro-ink);
}

.hnpro-domain-contact-card .radio {
  margin-bottom: 14px;
}

.hnpro-domain-ns-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnpro-domain-ns-card {
  padding: 24px;
}

.hnpro-domain-ns-card .form-group:last-of-type {
  margin-bottom: 0;
}

.hnpro-content-shell {
  display: grid;
  gap: 22px;
}

.hnpro-content-hero,
.hnpro-content-card,
.hnpro-confirm-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(21, 44, 77, 0.06);
}

.hnpro-content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 320px;
  gap: 20px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(45, 152, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff, #f3f8ff);
}

.hnpro-content-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.hnpro-content-hero p,
.hnpro-content-hero-side span {
  margin: 0;
  color: var(--hnpro-muted);
}

.hnpro-content-hero-side {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-content-card,
.hnpro-confirm-card {
  padding: 26px;
}

.hnpro-pricing-shell .featured-tld,
.hnpro-pricing-shell .currency-selector,
.hnpro-pricing-shell .label.label-default,
.hnpro-pricing-shell .label.label-success {
  border-radius: 16px;
}

.hnpro-pricing-shell .label.label-default,
.hnpro-pricing-shell .label.label-success {
  display: inline-flex;
  padding: 10px 14px;
  margin: 0 10px 10px 0;
  background: #eef5ff;
  color: #0b74de;
  border: 1px solid rgba(11, 116, 222, 0.1);
}

.hnpro-pricing-shell .label.label-success {
  background: #0b74de;
  color: #fff;
}

.hnpro-pricing-shell #tableDomainPricing {
  margin-top: 16px;
}

.hnpro-pricing-shell #tableDomainPricing thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hnpro-muted);
}

.hnpro-pricing-shell #tableDomainPricing tbody tr {
  background: #fff;
}

.hnpro-pricing-shell #tableDomainPricing tbody td {
  vertical-align: middle;
}

.hnpro-content-card .table {
  margin-bottom: 0;
}

.hnpro-content-card .table > thead > tr > th {
  border-top: 0;
  color: var(--hnpro-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hnpro-whois-shell pre,
.hnpro-whois-shell code,
.hnpro-whois-shell textarea {
  max-width: 100%;
  white-space: pre-wrap;
  word-break: break-word;
}

.hnpro-confirm-card {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hnpro-confirm-card h1 {
  margin: 4px 0 0;
  font-size: clamp(30px, 3vw, 46px);
}

.hnpro-confirm-ticket {
  display: grid;
  gap: 8px;
  padding: 20px;
  min-width: min(100%, 420px);
  border-radius: 20px;
  background: #f7fbff;
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-confirm-ticket a {
  font-size: 30px;
  font-weight: 800;
  color: #0b74de;
  text-decoration: none;
}

.hnpro-confirm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hnpro-mail-popup {
  max-width: 960px;
  margin: 24px auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(22, 48, 71, 0.08);
  box-shadow: 0 20px 40px rgba(21, 44, 77, 0.08);
}

.hnpro-mail-popup .panel-heading,
.hnpro-mail-popup .panel-footer {
  background: #fff;
  border-color: rgba(22, 48, 71, 0.08);
}

.hnpro-mail-popup .panel-body {
  padding: 0;
  background: #f7fbff;
}

.hnpro-mail-attachments {
  color: var(--hnpro-muted);
}

.hnpro-permission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.hnpro-permission-grid label,
.hnpro-checkbox-stack label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.9);
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-ticket-thread {
  gap: 18px;
}

.hnpro-ticket-reply {
  display: grid;
  gap: 18px;
}

.hnpro-ticket-reply.is-staff {
  background: linear-gradient(145deg, #ffffff, #f4f9ff);
  border-color: rgba(11, 116, 222, 0.16);
}

.hnpro-ticket-reply header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hnpro-ticket-message {
  color: var(--hnpro-ink);
}

.hnpro-ticket-attachments ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.hnpro-form-actions {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .hnpro-list-hero,
  .hnpro-service-hero,
  .hnpro-service-grid,
  .hnpro-download-grid,
  .hnpro-addon-grid,
  .hnpro-department-grid,
  .hnpro-service-kpis,
  .hnpro-detail-grid,
  .hnpro-list-grid,
  .hnpro-permission-grid {
    grid-template-columns: 1fr;
  }
}

.hnpro-client-shell {
  display: block;
}

.hnpro-client-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  background: #f4f6fb;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 28px;
  padding: 24px 18px;
}

.hnpro-client-brand {
  display: grid;
  gap: 4px;
  padding: 6px 10px 18px;
}

.hnpro-client-brand strong {
  font-size: 24px;
  color: var(--hnpro-ink);
}

.hnpro-client-brand span,
.hnpro-client-nav a span {
  color: var(--hnpro-muted);
}

.hnpro-client-nav {
  display: grid;
  gap: 8px;
}

.hnpro-client-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: #516073;
  text-decoration: none;
  font-weight: 700;
}

.hnpro-client-nav a:hover,
.hnpro-client-nav a.is-active {
  background: #fff;
  color: #2374e1;
  box-shadow: 0 14px 28px rgba(21, 44, 77, 0.08);
}

.hnpro-client-main {
  display: grid;
  gap: 18px;
}

body.hnpro-page-clientareahome #main-body .sidebar,
body.hnpro-page-clientareahome #main-body .page-header,
body.hnpro-page-clientareahome #main-body .breadcrumb {
  display: none !important;
}

body.hnpro-page-clientareahome #main-body .main-content {
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;
}

body.hnpro-page-clientareahome #main-body-holder .container,
body.hnpro-page-clientareahome #main-body .container {
  width: 100%;
  max-width: 1480px;
}

body.hnpro-client-layout #main-body .sidebar,
body.hnpro-client-layout #main-body .page-header,
body.hnpro-client-layout #main-body .breadcrumb,
body.hnpro-client-layout #main-body .sidebar-secondary {
  display: none !important;
}

body.hnpro-client-layout #header,
body.hnpro-client-layout #main-menu,
body.hnpro-client-layout .hnpro-inner-hero,
body.hnpro-client-layout .hnpro-footer {
  display: none !important;
}

body.hnpro-client-layout #main-body .main-content {
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;
}

body.hnpro-client-layout #main-body-holder .container,
body.hnpro-client-layout #main-body .container {
  width: 100%;
  max-width: 1520px;
}

.hnpro-app-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.hnpro-app-mobilebar {
  display: none;
}

.hnpro-app-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.hnpro-app-sidebar .hnpro-client-sidebar,
.hnpro-app-sidebar-card {
  background: #f4f6fb;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(21, 44, 77, 0.05);
}

.hnpro-app-sidebar .hnpro-client-brand,
.hnpro-app-sidebar .hnpro-client-nav {
  background: transparent;
}

.hnpro-app-sidebar-card {
  display: grid;
  gap: 10px;
  padding: 20px 18px;
}

.hnpro-app-sidebar-card strong {
  color: var(--hnpro-ink);
}

.hnpro-app-sidebar-card a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
  color: #516073;
  font-weight: 700;
}

.hnpro-app-menu-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: #13233d;
  padding: 12px;
  display: inline-grid;
  align-content: center;
  gap: 5px;
}

.hnpro-app-menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hnpro-app-mobilebrand,
.hnpro-app-mobilelink {
  text-decoration: none;
  font-weight: 700;
}

.hnpro-app-mobilebrand {
  color: #13233d;
  font-size: 18px;
}

.hnpro-app-mobilelink {
  color: #0a67ea;
}

.hnpro-app-content {
  min-width: 0;
}

.hnpro-client-topbar,
.hnpro-client-command,
.hnpro-client-promo,
.hnpro-client-stats,
.hnpro-client-shortcuts a,
.hnpro-home-panel {
  background: #fff;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(21, 44, 77, 0.06);
}

.hnpro-client-topbar,
.hnpro-client-command,
.hnpro-client-promo,
.hnpro-client-stats,
.hnpro-home-panel {
  padding: 24px;
}

.hnpro-client-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.hnpro-client-topbar h1 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 42px);
}

.hnpro-client-top-actions {
  display: flex;
  gap: 10px;
}

.hnpro-client-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(35, 116, 225, 0.1);
  color: #2374e1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hnpro-client-pill-blue {
  background: linear-gradient(90deg, #2d98ff, #5c63ff);
  color: #fff;
}

.hnpro-client-command {
  background: linear-gradient(90deg, #2d98ff, #5c63ff);
  color: #fff;
}

.hnpro-client-command-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hnpro-client-command-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 22px;
  padding: 22px;
}

.hnpro-client-command-box input {
  width: 100%;
  min-height: 76px;
  border: 2px solid rgba(45, 152, 255, 0.35);
  border-radius: 18px;
  padding: 18px 20px;
  color: #415063;
}

.hnpro-client-command-actions,
.hnpro-client-shortcuts,
.hnpro-client-overview {
  display: grid;
  gap: 16px;
}

.hnpro-client-command-actions {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 16px;
}

.hnpro-client-command-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #516073;
  text-decoration: none;
  font-weight: 700;
}

.hnpro-client-overview {
  grid-template-columns: 1.2fr 0.8fr;
}

.hnpro-client-promo {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.hnpro-client-promo h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.hnpro-client-promo p {
  color: var(--hnpro-muted);
  max-width: 56ch;
}

.hnpro-client-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hnpro-client-stats div {
  padding: 18px;
  border-radius: 18px;
  background: #f7f9fc;
}

.hnpro-client-stats span {
  display: block;
  color: var(--hnpro-muted);
}

.hnpro-client-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  color: var(--hnpro-ink);
}

.hnpro-client-shortcuts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hnpro-client-shortcuts a {
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.hnpro-client-shortcuts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hnpro-ink);
}

.hnpro-client-shortcuts span {
  color: var(--hnpro-muted);
}

.hnpro-client-panels .panel-heading {
  background: transparent;
  border-bottom: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-client-panels .panel-title,
.hnpro-client-panels .list-group-item {
  color: var(--hnpro-ink);
}

.hnpro-client-dashboard-grid,
.hnpro-client-resource-row {
  display: grid;
  gap: 16px;
}

.hnpro-client-dashboard-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.hnpro-client-domain-board,
.hnpro-client-ops-card,
.hnpro-client-resource-row a {
  background: #fff;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(21, 44, 77, 0.06);
}

.hnpro-client-domain-board,
.hnpro-client-ops-card {
  padding: 24px;
}

.hnpro-client-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.hnpro-client-section-head h2 {
  margin: 10px 0 0;
  font-size: 28px;
}

.hnpro-client-domain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hnpro-client-domain-list div {
  padding: 18px;
  border-radius: 18px;
  background: #f7f9fc;
}

.hnpro-client-domain-list strong {
  display: block;
  font-size: 28px;
  color: var(--hnpro-ink);
}

.hnpro-client-domain-list span,
.hnpro-client-ops-list a span {
  color: var(--hnpro-muted);
}

.hnpro-client-domain-actions,
.hnpro-client-ops-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hnpro-client-domain-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hnpro-client-domain-actions a,
.hnpro-client-ops-list a,
.hnpro-client-resource-row a {
  text-decoration: none;
  color: inherit;
}

.hnpro-domain-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hnpro-domain-card .hnpro-service-card-head h3 a {
  color: var(--hnpro-ink);
  text-decoration: none;
}

.hnpro-domain-actions .btn {
  min-width: 118px;
}

/* Final containment layer against legacy WHMCS/theme CSS bleed */
body.hnpro-template .panel,
body.hnpro-template .well,
body.hnpro-template .dropdown-menu,
body.hnpro-template .modal-content,
body.hnpro-template .alert,
body.hnpro-template .table-container,
body.hnpro-template .dataTables_wrapper .dataTables_filter label .form-control,
body.hnpro-template .dataTables_wrapper .dataTables_length label .form-control {
  box-shadow: none;
}

body.hnpro-template .dropdown-menu {
  border-radius: 16px;
  border: 1px solid rgba(22, 48, 71, 0.08);
  overflow: hidden;
}

body.hnpro-template .dropdown-menu > li > a {
  white-space: normal;
}

body.hnpro-template .btn,
body.hnpro-template .form-control,
body.hnpro-template select,
body.hnpro-template textarea {
  max-width: 100%;
}

body.hnpro-template img {
  max-width: 100%;
  height: auto;
}

body.hnpro-template .table-responsive,
body.hnpro-template .hnpro-table-shell,
body.hnpro-template .table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.hnpro-template .hnpro-content-card,
body.hnpro-template .hnpro-service-card,
body.hnpro-template .hnpro-services-banner,
body.hnpro-template .hnpro-services-spotlight,
body.hnpro-template .hnpro-services-kpi,
body.hnpro-template .hnpro-client-topbar,
body.hnpro-template .hnpro-client-command,
body.hnpro-template .hnpro-client-promo,
body.hnpro-template .hnpro-client-stats,
body.hnpro-template .hnpro-client-shortcuts a,
body.hnpro-template .hnpro-client-domain-board,
body.hnpro-template .hnpro-client-ops-card,
body.hnpro-template .hnpro-client-resource-row a,
body.hnpro-template .hnpro-client-email-panel,
body.hnpro-template .hnpro-client-email-service,
body.hnpro-template .hnpro-app-sidebar .hnpro-client-sidebar,
body.hnpro-template .hnpro-app-sidebar-card,
body.hnpro-template .hnpro-dns-lab,
body.hnpro-template .hnpro-radar,
body.hnpro-template .hnpro-control-card {
  box-shadow: 0 18px 40px rgba(21, 44, 77, 0.06);
}

@media (max-width: 991px) {
  body.hnpro-template #header .container,
  body.hnpro-template #main-menu .container,
  body.hnpro-template #main-body .container,
  body.hnpro-template #main-body-holder .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  body.hnpro-template .hnpro-app-shell,
  body.hnpro-template .hnpro-client-overview,
  body.hnpro-template .hnpro-client-shortcuts,
  body.hnpro-template .hnpro-client-command-actions,
  body.hnpro-template .hnpro-client-dashboard-grid,
  body.hnpro-template .hnpro-client-resource-row,
  body.hnpro-template .hnpro-domain-card-grid,
  body.hnpro-template .hnpro-services-kpi-grid,
  body.hnpro-template .hnpro-services-grid-advanced,
  body.hnpro-template .hnpro-services-spotlight-meta,
  body.hnpro-template .hnpro-service-quickline,
  body.hnpro-template .hnpro-domain-ns-grid {
    grid-template-columns: 1fr;
  }

  body.hnpro-template .hnpro-app-shell {
    position: relative;
  }

  body.hnpro-template .hnpro-app-mobilebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(19, 35, 61, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(13, 31, 61, 0.06);
  }

  body.hnpro-template .hnpro-app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 320px);
    padding: 16px;
    margin: 0;
    background: #eef3fb;
    z-index: 1200;
    overflow-y: auto;
    transform: translateX(-110%);
    transition: transform 0.22s ease;
  }

  body.hnpro-template.hnpro-client-menu-open .hnpro-app-sidebar {
    transform: translateX(0);
  }

  body.hnpro-template .hnpro-domain-actions,
  body.hnpro-template .hnpro-service-actions,
  body.hnpro-template .hnpro-service-actions-advanced,
  body.hnpro-template .hnpro-services-banner-actions,
  body.hnpro-template .hnpro-services-spotlight-actions,
  body.hnpro-template .hnpro-client-top-actions,
  body.hnpro-template .hnpro-form-actions,
  body.hnpro-template .hnpro-confirm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  body.hnpro-template #header,
  body.hnpro-template #main-menu {
    overflow-x: clip;
  }

  body.hnpro-template #main-menu .navbar-main {
    margin-bottom: 0;
  }

  body.hnpro-template .top-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  body.hnpro-template .logo,
  body.hnpro-template .logo img {
    max-width: 180px;
  }

  body.hnpro-template .hnpro-list-shell,
  body.hnpro-template .hnpro-service-shell,
  body.hnpro-template .hnpro-form-page,
  body.hnpro-template .hnpro-ticket-thread,
  body.hnpro-template .hnpro-invoice-shell,
  body.hnpro-template .hnpro-client-main {
    gap: 16px;
  }

  body.hnpro-template .hnpro-content-hero,
  body.hnpro-template .hnpro-services-banner,
  body.hnpro-template .hnpro-services-spotlight,
  body.hnpro-template .hnpro-client-topbar,
  body.hnpro-template .hnpro-client-command,
  body.hnpro-template .hnpro-client-promo,
  body.hnpro-template .hnpro-client-stats,
  body.hnpro-template .hnpro-service-card,
  body.hnpro-template .hnpro-content-card,
  body.hnpro-template .hnpro-dns-lab,
  body.hnpro-template .hnpro-app-sidebar .hnpro-client-sidebar,
  body.hnpro-template .hnpro-app-sidebar-card {
    padding: 18px;
    border-radius: 18px;
  }

  body.hnpro-template .hnpro-content-hero,
  body.hnpro-template .hnpro-list-hero,
  body.hnpro-template .hnpro-service-card-head,
  body.hnpro-template .hnpro-client-section-head,
  body.hnpro-template .hnpro-client-email-service header,
  body.hnpro-template .hnpro-client-email-item,
  body.hnpro-template .hnpro-client-usage-top {
    grid-template-columns: 1fr;
    display: grid;
  }

  body.hnpro-template .hnpro-list-hero,
  body.hnpro-template .hnpro-service-hero {
    display: grid;
    gap: 14px;
  }

  body.hnpro-template .hnpro-list-hero h1,
  body.hnpro-template .hnpro-service-hero h1,
  body.hnpro-template .hnpro-content-hero h1,
  body.hnpro-template .hnpro-services-banner h1,
  body.hnpro-template .hnpro-services-spotlight h2,
  body.hnpro-template .hnpro-client-topbar h1 {
    font-size: 26px;
    line-height: 1.08;
  }

  body.hnpro-template .hnpro-eyebrow,
  body.hnpro-template .hnpro-client-pill,
  body.hnpro-template .hnpro-service-index {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  body.hnpro-template .hnpro-domain-actions,
  body.hnpro-template .hnpro-service-actions,
  body.hnpro-template .hnpro-service-actions-advanced,
  body.hnpro-template .hnpro-services-banner-actions,
  body.hnpro-template .hnpro-services-spotlight-actions,
  body.hnpro-template .hnpro-client-top-actions,
  body.hnpro-template .hnpro-form-actions,
  body.hnpro-template .hnpro-confirm-actions,
  body.hnpro-template .hnpro-services-highlight-actions {
    grid-template-columns: 1fr;
  }

  body.hnpro-template .hnpro-domain-actions .btn,
  body.hnpro-template .hnpro-service-actions .btn,
  body.hnpro-template .hnpro-service-actions-advanced .btn,
  body.hnpro-template .hnpro-services-banner-actions .btn,
  body.hnpro-template .hnpro-services-spotlight-actions .btn,
  body.hnpro-template .hnpro-client-top-actions .btn,
  body.hnpro-template .hnpro-form-actions .btn,
  body.hnpro-template .hnpro-confirm-actions .btn,
  body.hnpro-template .hnpro-services-highlight-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body.hnpro-template .hnpro-client-command-box {
    padding: 16px;
    border-radius: 16px;
  }

  body.hnpro-template .hnpro-client-command-box input {
    min-height: 62px;
    padding: 14px 16px;
  }

  body.hnpro-template .hnpro-client-command-actions {
    grid-template-columns: 1fr;
  }

  body.hnpro-template .hnpro-services-kpi strong,
  body.hnpro-template .hnpro-client-stats strong,
  body.hnpro-template .hnpro-client-domain-list strong {
    font-size: 24px;
  }

  body.hnpro-template .hnpro-service-quickline,
  body.hnpro-template .hnpro-service-meta,
  body.hnpro-template .hnpro-services-spotlight-meta,
  body.hnpro-template .hnpro-client-domain-actions,
  body.hnpro-template .hnpro-client-ops-list {
    grid-template-columns: 1fr;
  }

  body.hnpro-template .hnpro-service-quickline span,
  body.hnpro-template .hnpro-service-meta div,
  body.hnpro-template .hnpro-services-spotlight-meta div,
  body.hnpro-template .hnpro-client-domain-actions a,
  body.hnpro-template .hnpro-client-ops-list a,
  body.hnpro-template .hnpro-client-email-item,
  body.hnpro-template .hnpro-client-domain-list div {
    padding: 12px 14px;
    border-radius: 14px;
  }

  body.hnpro-template .hnpro-app-sidebar .hnpro-client-sidebar,
  body.hnpro-template .hnpro-app-sidebar-card {
    position: static;
  }

  body.hnpro-template .hnpro-client-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  body.hnpro-template .hnpro-table,
  body.hnpro-template .table.table-list,
  body.hnpro-template .dataTable {
    min-width: 560px;
  }

  body.hnpro-template .hnpro-domain-card-grid {
    gap: 14px;
  }

  body.hnpro-template .hnpro-domain-actions .btn {
    min-width: 0;
  }

  body.hnpro-template .hnpro-content-card .form-group,
  body.hnpro-template .hnpro-domain-ns-card .form-group,
  body.hnpro-template .hnpro-domain-contact-card .form-group {
    margin-bottom: 12px;
  }

  body.hnpro-template .hnpro-domain-ns-card .control-label,
  body.hnpro-template .hnpro-content-card .control-label {
    float: none;
    width: 100%;
    text-align: left;
    margin-bottom: 6px;
  }

  body.hnpro-template .hnpro-domain-ns-card .col-xs-3,
  body.hnpro-template .hnpro-domain-ns-card .col-xs-4,
  body.hnpro-template .hnpro-domain-ns-card .col-xs-5,
  body.hnpro-template .hnpro-domain-ns-card .col-xs-6,
  body.hnpro-template .hnpro-domain-ns-card .col-sm-5,
  body.hnpro-template .hnpro-content-card .col-sm-4,
  body.hnpro-template .hnpro-content-card .col-sm-6,
  body.hnpro-template .hnpro-content-card .col-sm-8 {
    width: 100%;
  }

  body.hnpro-template .hnpro-mail-popup {
    margin: 12px;
    border-radius: 18px;
  }

  body.hnpro-template .hnpro-mail-popup iframe {
    height: 65vh;
  }

  body.hnpro-template .hnpro-client-shortcuts,
  body.hnpro-template .hnpro-client-email-grid,
  body.hnpro-template .hnpro-client-domain-list,
  body.hnpro-template .hnpro-client-domain-actions,
  body.hnpro-template .hnpro-client-resource-row,
  body.hnpro-template .hnpro-dns-metrics {
    grid-template-columns: 1fr;
  }

  body.hnpro-template .hnpro-dns-header {
    display: none;
  }

  body.hnpro-template .hnpro-dns-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  body.hnpro-template .hnpro-table,
  body.hnpro-template .table.table-list,
  body.hnpro-template .dataTable {
    min-width: 640px;
  }

  body.hnpro-template .dropdown-menu {
    left: 0 !important;
    right: auto !important;
    min-width: 220px;
  }
}

.hnpro-client-domain-actions a,
.hnpro-client-ops-list a {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f9fc;
  font-weight: 700;
}

.hnpro-client-resource-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnpro-client-resource-row a {
  padding: 22px;
}

.hnpro-client-resource-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hnpro-ink);
}

.hnpro-client-resource-row span {
  color: var(--hnpro-muted);
}

.hnpro-support-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.hnpro-support-search .form-control {
  min-height: 56px;
  border-radius: 16px;
}

.hnpro-client-email-panel,
.hnpro-client-email-service {
  background: #fff;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(21, 44, 77, 0.06);
}

.hnpro-client-email-panel {
  padding: 24px;
}

.hnpro-client-email-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hnpro-client-email-service {
  padding: 20px;
}

.hnpro-client-email-service header,
.hnpro-client-email-item,
.hnpro-client-usage-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.hnpro-client-email-service header {
  margin-bottom: 16px;
}

.hnpro-client-email-service header strong,
.hnpro-client-email-item strong {
  display: block;
  color: var(--hnpro-ink);
}

.hnpro-client-email-service header span,
.hnpro-client-email-item span,
.hnpro-client-email-empty,
.hnpro-client-usage-bar small {
  color: var(--hnpro-muted);
}

.hnpro-client-email-list {
  display: grid;
  gap: 10px;
}

.hnpro-client-email-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f9fc;
}

.hnpro-client-email-empty-block {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f7f9fc;
}

.hnpro-client-email-item a {
  color: #2374e1;
  font-weight: 700;
  text-decoration: none;
}

.hnpro-client-usage-bar {
  margin-bottom: 16px;
}

.hnpro-client-progress,
.hnpro-usage-progress {
  height: 10px;
  border-radius: 999px;
  background: #edf2f8;
  overflow: hidden;
  margin: 8px 0;
}

.hnpro-client-progress span,
.hnpro-usage-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2d98ff, #5c63ff);
}

.hnpro-email-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hnpro-email-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: #f7f9fc;
  border: 1px solid rgba(22, 48, 71, 0.08);
}

.hnpro-email-card h4 {
  margin: 0 0 6px;
}

.hnpro-email-card p {
  margin: 0;
  color: var(--hnpro-muted);
}

.hnpro-email-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hnpro-dns-help {
  display: block;
  margin-top: 8px;
  color: var(--hnpro-muted);
}

@media (max-width: 1100px) {
  .hnpro-client-shell,
  .hnpro-app-shell,
  .hnpro-client-overview,
  .hnpro-client-shortcuts,
  .hnpro-client-command-actions,
  .hnpro-client-dashboard-grid,
  .hnpro-client-resource-row,
  .hnpro-client-domain-list,
  .hnpro-client-domain-actions,
  .hnpro-services-hero-grid {
    grid-template-columns: 1fr;
  }

  .hnpro-client-sidebar {
    position: static;
  }

  .hnpro-app-sidebar {
    position: static;
  }

  .hnpro-support-search {
    grid-template-columns: 1fr;
  }

  .hnpro-client-email-grid,
  .hnpro-email-grid {
    grid-template-columns: 1fr;
  }
}

.hnpro-store-order {
  background: #fff;
  border: 1px solid rgba(18, 40, 76, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(13, 31, 61, 0.08);
}

.hnpro-store-order-copy {
  display: grid;
  gap: 12px;
}

.hnpro-store-order-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 103, 234, 0.08);
  color: #0a67ea;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hnpro-store-order-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
  color: #13233d;
}

.hnpro-store-product-description {
  color: #617087;
  font-size: 16px;
  line-height: 1.7;
  white-space: pre-line;
}

.hnpro-store-product-description p:last-child {
  margin-bottom: 0;
}

.hnpro-store-payment-term {
  padding: 20px;
  border-radius: 22px;
  background: #f7faff;
  border: 1px solid rgba(19, 35, 61, 0.08);
}

@media (max-width: 767px) {
  .hnpro-store-order {
    padding: 20px;
    border-radius: 22px;
  }

  .hnpro-store-order-copy h2 {
    font-size: 28px;
  }

  .hnpro-store-payment-term {
    margin-top: 18px;
  }
}

.hnpro-simple-sidebar {
  display: grid;
  gap: 18px;
}

.hnpro-simple-nav {
  display: grid;
  gap: 8px;
}

.hnpro-simple-nav a {
  display: grid;
  gap: 3px;
}

.hnpro-simple-nav a strong {
  font-size: 14px;
  color: #13233d;
}

.hnpro-simple-nav a span {
  font-size: 12px;
  color: #66758c;
}

.hnpro-simple-sidebar-card {
  display: grid;
  gap: 10px;
}

.hnpro-simple-sidebar-card a {
  display: block;
}

.hnpro-simple-dashboard,
.hnpro-simple-page {
  display: grid;
  gap: 22px;
}

.hnpro-simple-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(19, 35, 61, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(13, 31, 61, 0.06);
}

.hnpro-simple-header h1 {
  margin: 10px 0 8px;
  font-size: 38px;
  line-height: 1.05;
  color: #13233d;
}

.hnpro-simple-header p {
  margin: 0;
  color: #66758c;
  max-width: 640px;
}

.hnpro-simple-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hnpro-simple-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hnpro-simple-stat-card,
.hnpro-simple-action-card,
.hnpro-simple-panel,
.hnpro-simple-record-card,
.hnpro-simple-email-card {
  background: #fff;
  border: 1px solid rgba(19, 35, 61, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(13, 31, 61, 0.05);
}

.hnpro-simple-stat-card {
  padding: 20px 22px;
  display: grid;
  gap: 8px;
}

.hnpro-simple-stat-card span {
  color: #66758c;
  font-size: 13px;
}

.hnpro-simple-stat-card strong {
  font-size: 34px;
  line-height: 1;
  color: #13233d;
}

.hnpro-simple-action-grid,
.hnpro-simple-panel-grid,
.hnpro-simple-email-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hnpro-simple-action-card {
  padding: 22px;
  display: grid;
  gap: 8px;
  text-decoration: none;
}

.hnpro-simple-action-card strong,
.hnpro-simple-panel h2,
.hnpro-simple-record-card h3,
.hnpro-simple-email-card strong {
  color: #13233d;
}

.hnpro-simple-action-card span,
.hnpro-simple-panel span,
.hnpro-simple-record-card p,
.hnpro-simple-record-meta span,
.hnpro-simple-email-card span {
  color: #66758c;
}

.hnpro-simple-panel {
  padding: 22px;
  display: grid;
  gap: 18px;
}

.hnpro-simple-table-card {
  overflow: hidden;
}

.hnpro-simple-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.hnpro-simple-panel-head h2 {
  margin: 10px 0 0;
  font-size: 24px;
}

.hnpro-simple-list,
.hnpro-simple-shortcuts,
.hnpro-simple-email-list {
  display: grid;
  gap: 12px;
}

.hnpro-simple-list div,
.hnpro-simple-email-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7faff;
}

.hnpro-simple-shortcuts a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7faff;
  color: #13233d;
  text-decoration: none;
  font-weight: 600;
}

.hnpro-simple-card-list {
  display: grid;
  gap: 16px;
}

.hnpro-simple-record-card {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.hnpro-simple-record-main {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.hnpro-simple-record-main h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.hnpro-simple-record-main p {
  margin: 0;
}

.hnpro-simple-record-meta,
.hnpro-simple-record-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hnpro-simple-email-card {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.hnpro-simple-email-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

@media (max-width: 1100px) {
  .hnpro-simple-stat-grid,
  .hnpro-simple-action-grid,
  .hnpro-simple-panel-grid,
  .hnpro-simple-email-grid {
    grid-template-columns: 1fr;
  }

  .hnpro-simple-header {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .hnpro-simple-header {
    padding: 20px;
    border-radius: 22px;
  }

  .hnpro-simple-header h1 {
    font-size: 30px;
  }

  .hnpro-simple-header-actions,
  .hnpro-simple-record-meta,
  .hnpro-simple-record-actions,
  .hnpro-simple-email-card header,
  .hnpro-simple-email-row,
  .hnpro-simple-list div {
    flex-direction: column;
    align-items: stretch;
  }

  .hnpro-simple-header-actions .btn,
  .hnpro-simple-record-actions .btn,
  .hnpro-simple-email-row a {
    width: 100%;
  }

  .hnpro-app-mobilebar {
    padding: 14px 16px;
  }
}
