:root {
  --bg: #050713;
  --text: #f5f7fb;
  --muted: #aab5c8;
  --muted-2: #7f8aa3;
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --success: #34d399;
  --danger: #fb7185;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% -10%, rgba(139, 92, 246, .18), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(34, 211, 238, .11), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 78%);
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.02; letter-spacing: -0.055em; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.15rem, 4vw, 4.25rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
ul { margin: 0; padding: 0; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.narrow-content { width: min(820px, calc(100% - 40px)); }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.skip-link:focus { clip: auto; clip-path: none; height: auto; width: auto; z-index: 10000; background: #fff; color: #000; padding: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 19, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 82px; }
.site-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.site-brand__logo-mark {
  width: 46px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(34, 211, 238, .16));
}
.site-brand__text { font-size: 1.42rem; font-weight: 700; letter-spacing: -0.045em; line-height: 1; }
.site-brand__text span { color: inherit; }
.custom-logo { max-width: 190px; max-height: 62px; width: auto; height: auto; object-fit: contain; }
.primary-menu { display: flex; align-items: center; gap: 26px; list-style: none; }
.primary-menu li { position: relative; }
.primary-menu a { color: var(--muted); font-weight: 650; font-size: .95rem; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.primary-menu a:hover { color: var(--text); }
.primary-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid #a78bfa;
  border-bottom: 2px solid #a78bfa;
  transform: translateY(-3px) rotate(45deg);
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
  opacity: .86;
}
.primary-menu .menu-item-has-children:hover > a::after,
.primary-menu .menu-item-has-children:focus-within > a::after {
  transform: translateY(1px) rotate(225deg);
  border-color: #c4b5fd;
  opacity: 1;
}
.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(7,12,28,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.primary-menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.primary-menu .sub-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu .current-menu-item > a {
  color: var(--text);
  background: rgba(255,255,255,.07);
}
.mobile-nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); border-radius: 12px; }
.mobile-nav-toggle span:not(.screen-reader-text) { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; cursor: pointer; text-align: center;
  border-radius: 15px; padding: 14px 20px;
  min-height: 50px; font-weight: 780; letter-spacing: -0.02em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #06101b; background: linear-gradient(90deg, #67e8f9, #a78bfa); box-shadow: 0 18px 52px rgba(139,92,246,.24); }
.btn-secondary { color: var(--text); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); backdrop-filter: blur(16px); }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.section { padding: 100px 0; position: relative; }
.section-dark { position: relative; background: #050713; overflow: hidden; }
.section-heading { text-align: center; max-width: 850px; }
.section-heading p { font-size: 1.1rem; }
.section-kicker { display: inline-flex; color: #99f6e4; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.section-action { margin-top: 32px; text-align: center; }

.hero-section { min-height: calc(100vh - 82px); display: grid; align-items: center; padding: 82px 0 90px; isolation: isolate; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 54px; }
.hero-copy h1 { font-size: clamp(2.55rem, 5.8vw, 5.15rem); }

.hero-copy h1 span, .page-hero h1 span { display: block; background: linear-gradient(90deg, #ffffff, #a78bfa 52%, #67e8f9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.typing-line {
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.45;
  color: #dce7ff;
}
.typing-line__prefix,
.typing-line__dynamic {
  display: inline;
}
.typing-line__dynamic {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.typing-line strong { color: var(--accent-2); }
.typing-cursor {
  display: inline-block;
  color: var(--accent-2);
  line-height: 1;
  vertical-align: baseline;
  animation: blink .9s infinite;
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.page-hero { padding: 110px 0 80px; }
.compact-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(139,92,246,.28), transparent 42%), radial-gradient(circle at 80% 20%, rgba(34,211,238,.11), transparent 32%); z-index: 0; }
.compact-hero > * { position: relative; z-index: 1; }
.card-grid,
.contact-grid { display: grid; gap: 22px; }
.card-grid--four { grid-template-columns: repeat(4, 1fr); }

.service-card, .values-grid > div, .sidebar-card, .contact-panel, .cta-panel{
  border: 1px solid rgba(255,255,255,.09); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); border-radius: var(--radius); box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.service-card { padding: 28px; min-height: 280px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { border-color: rgba(34,211,238,.28); }

.card-link { display: inline-flex; margin-top: 12px; color: #99f6e4; font-weight: 800; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.cta-panel { text-align: center; padding: clamp(34px, 6vw, 72px); background: radial-gradient(circle at 50% 0%, rgba(139,92,246,.22), transparent 42%), rgba(255,255,255,.055); }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.values-grid > div { padding: 24px; }
.brand-showcase {
  display: grid;
  place-items: center;
  text-align: center;
  grid-column: 1 / -1;
  background: radial-gradient(circle at 50% 10%, rgba(139,92,246,.16), rgba(255,255,255,.04));
}
.brand-showcase img {
  width: min(280px, 90%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.32));
}
.brand-showcase p { max-width: 520px; margin: 14px auto 0; }

.contact-grid { grid-template-columns: 1.2fr .8fr; align-items: start; }
.contact-panel, .sidebar-card { padding: 28px; }
.contact-sidebar { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 650; }
input, textarea, select { width: 100%; color: var(--text); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 13px 14px; outline: none; }
input:focus, textarea:focus, select:focus { border-color: rgba(34,211,238,.55); box-shadow: 0 0 0 4px rgba(34,211,238,.08); }
.contact-form { display: grid; gap: 18px; }
.form-notice { padding: 14px 16px; border-radius: 14px; margin: 18px 0; }

.content-section .narrow-content{ font-size: 1.08rem; }

.site-footer { border-top: 1px solid rgba(255,255,255,.08); background: rgba(3,5,14,.84); padding: 60px 0 28px; }
.site-brand--footer .site-brand__text { font-size: 1.42rem; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; font-size: 1rem; }

.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
.card-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .mobile-nav-toggle { display: inline-block; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: 72px; display: none; padding: 18px; border-radius: 18px; background: rgba(7,12,28,.96); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: block; }
  .primary-menu { display: grid; gap: 8px; align-items: stretch; }
  .primary-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
  }
  .primary-menu > li > a:hover,
  .primary-menu > li > a:focus-visible {
    background: rgba(255,255,255,.055);
  }
  .primary-menu .menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: center;
    column-gap: 8px;
    row-gap: 0;
  }
  .primary-menu .menu-item-has-children > a::after { display: none; }
  .primary-menu .menu-item-has-children.is-submenu-open > .submenu-toggle::before {
    transform: translateY(2px) rotate(225deg);
  }
  .primary-menu .sub-menu {
    grid-column: 1 / -1;
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    min-width: 0;
    max-height: 0;
    margin: 0 0 0 0;
    padding: 0;
    overflow: hidden;
    border-width: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    box-shadow: none;
    transition: max-height .24s ease, opacity .18s ease, visibility .18s ease, margin .18s ease, padding .18s ease, border-color .18s ease;
  }
  .primary-menu .menu-item-has-children:hover > .sub-menu,
  .primary-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }
  .primary-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 480px;
    margin: 8px 0 0 0;
    padding: 8px;
    border-width: 1px;
    border-color: rgba(167,139,250,.16);
  }
  .primary-menu .sub-menu::before { display: none; }
.card-grid--four, .form-grid, .values-grid{ grid-template-columns: 1fr; }
  
  .footer-bottom { flex-direction: column; }
  .section { padding: 74px 0; }
  .hero-section { padding-top: 42px; }
  .site-brand__logo-mark { width: 40px; height: 46px; }
  .site-brand__text { font-size: 1.32rem; font-weight: 700; letter-spacing: -0.04em; }
}

/* Contact page details imported from CipherNet contact brief */
.contact-hero .section-heading { max-width: 860px; }
.contact-grid--main { gap: 34px; align-items: stretch; }

.contact-grid--main .contact-sidebar { grid-template-rows: 1fr auto; }
.contact-grid--main .contact-info-card { height: 100%; }
.contact-intro { color: var(--muted); margin: -6px 0 8px; }
.contact-info-card > p { color: var(--muted); margin-bottom: 22px; }
.contact-info-list { display: grid; gap: 18px; margin-top: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #7df6ff;
    background:
        linear-gradient(145deg, rgba(125, 246, 255, .18), rgba(167, 139, 250, .12)),
        rgba(6, 15, 33, .82);
    border: 1px solid rgba(125, 246, 255, .26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        inset 0 0 22px rgba(125, 246, 255, .08),
        0 0 0 1px rgba(167, 139, 250, .08),
        0 16px 42px rgba(34, 211, 238, .10);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-info-icon::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from 180deg, rgba(125, 246, 255, .18), rgba(167, 139, 250, .5), rgba(34, 211, 238, .32), rgba(125, 246, 255, .18));
    opacity: .34;
    animation: ciphernet-icon-glow 7s linear infinite;
    z-index: -2;
}
.contact-info-icon::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(10, 23, 45, .95), rgba(18, 17, 42, .96));
    z-index: -1;
}
.contact-info-item:hover .contact-info-icon {
    transform: translateY(-2px);
    border-color: rgba(125, 246, 255, .45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .16),
        0 0 0 1px rgba(167, 139, 250, .18),
        0 20px 52px rgba(34, 211, 238, .16);
}
.contact-info-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 9px rgba(125, 246, 255, .38));
}
@keyframes ciphernet-icon-glow {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .contact-info-icon::before { animation: none; }
}
.contact-info-label { margin: 0 0 4px; color: var(--muted); font-size: .88rem; font-weight: 700; }
.contact-info-item a, .contact-info-value { color: var(--text); font-size: 1.05rem; font-weight: 800; margin: 0; }
.contact-info-item a:hover { color: #75efff; }
.office-hours-card h3 { margin-top: 0; }
.office-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--muted);
}
.office-hours-row strong { color: var(--text); text-align: right; }
.office-hours-card p { color: var(--muted); margin-bottom: 0; }
@media (max-width: 640px) {
    .office-hours-row { display: grid; gap: 4px; }
    .office-hours-row strong { text-align: left; }
}

/* Contact page spacing refinement: reduce gap between hero title and cards. */
.contact-hero {
  padding-bottom: 44px;
}
.contact-section {
  padding-top: 56px;
}
@media (max-width: 768px) {
  .contact-hero {
    padding-bottom: 34px;
  }
  .contact-section {
    padding-top: 42px;
  }
}

/* Contact form refinements */
.contact-hero h1 {
  font-size: clamp(3.55rem, 7.6vw, 6.25rem);
}
.contact-hero .section-kicker {
  font-size: .82rem;
  letter-spacing: .16em;
}

.contact-panel h2,
.contact-info-card h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  letter-spacing: -.035em;
}
.contact-panel .section-kicker,
.contact-info-card .section-kicker {
  font-size: .74rem;
  letter-spacing: .13em;
}
.required-field > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.required-field sup {
  color: var(--danger);
  font-size: 1.05rem;
  line-height: 1;
  top: auto;
}
select,
select option {
  background-color: #071021;
  color: var(--text);
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #a78bfa 50%),
    linear-gradient(135deg, #a78bfa 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
select:focus {
  background-color: #071021;
}

/* Contact page office hours restored + card alignment */
.contact-grid--main {
  align-items: stretch;
}
.contact-grid--main > .contact-panel,
.contact-grid--main > .contact-sidebar {
  height: 100%;
}
.contact-grid--main .contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-grid--main .contact-info-card {
  flex: 1 1 auto;
}
.contact-grid--main .office-hours-card {
  flex: 0 0 auto;
}
.office-hours-list {
  display: grid;
  gap: 0;
  margin: 14px 0 16px;
}
.office-hours-card h3 {
  margin-bottom: 12px;
}
.office-hours-card p {
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .contact-grid--main > .contact-panel,
  .contact-grid--main > .contact-sidebar {
    height: auto;
  }
  .contact-grid--main .contact-info-card {
    flex: none;
  }
}

/* Homepage CTA refinement: alternate glow between Cyber Assessment and AI Discovery. */
.home .btn-cyber-assessment,
.home .btn-ai-discovery,
.front-page .btn-cyber-assessment,
.front-page .btn-ai-discovery,
body.home .btn-cyber-assessment,
body.home .btn-ai-discovery {
  position: relative;
  overflow: hidden;
  animation: ciphernetCtaGlow 5.4s ease-in-out infinite;
}

body.home .btn-ai-discovery,
.front-page .btn-ai-discovery,
.home .btn-ai-discovery {
  color: #eef2ff;
  background: linear-gradient(90deg, #3b1d82, #5b21b6 48%, #0e7490);
  box-shadow: 0 18px 52px rgba(59, 29, 130, .22);
  animation-delay: 2.7s;
}

body.home .btn-cyber-assessment,
.front-page .btn-cyber-assessment,
.home .btn-cyber-assessment {
  animation-delay: 0s;
}

body.home .btn-cyber-assessment::after,
body.home .btn-ai-discovery::after,
.front-page .btn-cyber-assessment::after,
.front-page .btn-ai-discovery::after,
.home .btn-cyber-assessment::after,
.home .btn-ai-discovery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.32) 42%, transparent 68%);
  transform: translateX(-130%);
  animation: ciphernetCtaSweep 5.4s ease-in-out infinite;
  pointer-events: none;
}

body.home .btn-ai-discovery::after,
.front-page .btn-ai-discovery::after,
.home .btn-ai-discovery::after {
  animation-delay: 2.7s;
}

@keyframes ciphernetCtaGlow {
  0%, 42%, 100% { box-shadow: 0 18px 52px rgba(139,92,246,.20); }
  15%, 28% { box-shadow: 0 18px 58px rgba(34,211,238,.36), 0 0 34px rgba(167,139,250,.24); }
}

@keyframes ciphernetCtaSweep {
  0%, 10% { transform: translateX(-130%); opacity: 0; }
  18% { opacity: 1; }
  34% { transform: translateX(130%); opacity: 0; }
  100% { transform: translateX(130%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  body.home .btn-cyber-assessment,
  body.home .btn-ai-discovery,
  body.home .btn-cyber-assessment::after,
  body.home .btn-ai-discovery::after,
  .front-page .btn-cyber-assessment,
  .front-page .btn-ai-discovery,
  .front-page .btn-cyber-assessment::after,
  .front-page .btn-ai-discovery::after,
  .home .btn-cyber-assessment,
  .home .btn-ai-discovery,
  .home .btn-cyber-assessment::after,
  .home .btn-ai-discovery::after {
    animation: none;
  }
}

/* Homepage Core Services card redesign - inspired by Contact/Business information cards. */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(430px, .98fr);
  gap: 46px;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile type/delete animation: reserve a clean dynamic line so CTAs never jump. */
@media (max-width: 640px) {
  .typing-line {
    margin-top: 24px;
    max-width: 100%;
    font-size: clamp(1.16rem, 5.6vw, 1.42rem);
    line-height: 1.28;
  }

  .typing-line__prefix {
    display: block;
    margin-bottom: 10px;
  }

  .typing-line__dynamic {
    display: block;
    width: 100%;
    min-height: 3.1em;
    color: var(--accent-2);
    font-weight: 800;
    line-height: 1.26;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .typing-line__dynamic strong[data-typing] {
    display: inline;
    min-height: 0;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: wrap;
  }

  .typing-cursor {
    display: inline-block;
    margin-left: 2px;
    transform: translateY(.05em);
  }
}

@media (max-width: 390px) {
  .typing-line {
    font-size: clamp(1.08rem, 5.4vw, 1.24rem);
  }
  .typing-line__dynamic {
    min-height: 3.35em;
  }
}

/* Final mobile typing stabilisation and fixed Core Services slideshow sizing. */
@media (max-width: 640px) {
  .typing-line {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 24px !important;
    font-size: clamp(1.12rem, 5.2vw, 1.34rem) !important;
    line-height: 1.28 !important;
  }

  .typing-line__prefix {
    display: block !important;
    margin: 0 0 10px !important;
    width: 100% !important;
  }

  .typing-line__dynamic {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 3.35em !important;
    line-height: 1.22 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .typing-line__dynamic strong[data-typing] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    line-height: 1.22 !important;
    color: var(--accent-2) !important;
  }

  .typing-cursor {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .typing-line__dynamic {
    min-height: 3.7em !important;
  }
}

/* Final Core Services spacing and hero alignment refinement. */
@media (min-width: 821px) {
  .hero-grid {
    align-items: center !important;
  }

  .hero-copy {
    align-self: center !important;
  }

  

}

/* Senior mobile typewriter refinement: stable, readable, cursor stays inline. */
@media (max-width: 640px) {
  .typing-line {
    display: block !important;
    width: 100% !important;
    margin-top: 24px !important;
    font-size: clamp(1.08rem, 4.9vw, 1.28rem) !important;
    line-height: 1.28 !important;
    color: #dce7ff !important;
  }

  .typing-line__prefix {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px !important;
    line-height: 1.3 !important;
  }

  .typing-line__dynamic {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 3em !important;
    line-height: 1.18 !important;
    color: var(--accent-2) !important;
    font-weight: 800 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .typing-line__dynamic strong[data-typing] {
    display: inline !important;
    width: auto !important;
    max-width: 100% !important;
    min-height: 0 !important;
    color: var(--accent-2) !important;
    font: inherit !important;
    line-height: inherit !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .typing-cursor {
    display: inline-block !important;
    width: 0 !important;
    min-width: 0 !important;
    margin-left: 3px !important;
    color: var(--accent-2) !important;
    line-height: inherit !important;
    vertical-align: baseline !important;
    transform: translateY(.02em) !important;
    overflow: visible !important;
    animation: blink .9s infinite !important;
  }
}

@media (max-width: 390px) {
  .typing-line {
    font-size: clamp(1.02rem, 4.75vw, 1.16rem) !important;
  }

  .typing-line__dynamic {
    min-height: 3.15em !important;
  }
}

/* Contact form mobile fit + optional-field backend alignment */
.contact-grid--main,
.contact-grid--main > *,
.contact-panel,
.contact-form,
.form-grid,
.form-grid > label {
  min-width: 0;
}

.contact-panel {
  overflow: visible;
}

@media (max-width: 900px) {
  .contact-grid,
  .contact-grid--main,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid--main {
    gap: 24px;
  }

  .contact-panel,
  .sidebar-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .contact-section .container,
  .contact-hero .container {
    width: min(100% - 28px, var(--container));
  }

  .contact-panel,
  .sidebar-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contact-panel h2,
  .contact-info-card h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .contact-intro,
  .contact-info-card > p {
    font-size: .98rem;
    line-height: 1.6;
  }

  .contact-form,
  .form-grid {
    gap: 14px;
  }

  .contact-form label {
    width: 100%;
  }

  input,
  textarea,
  select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  textarea {
    min-height: 150px;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .contact-section .container,
  .contact-hero .container {
    width: min(100% - 22px, var(--container));
  }

  .contact-panel,
  .sidebar-card {
    padding: 20px 14px;
  }
}

/* Contact page tablet/mobile spacing + compact card alignment fix. */
.contact-section {
  padding-bottom: clamp(72px, 8vw, 120px);
}

.contact-grid--main {
  align-items: flex-start !important;
}

.contact-panel,
.contact-sidebar .sidebar-card {
  box-sizing: border-box;
}

.contact-panel {
  padding: clamp(24px, 3.2vw, 34px) !important;
}

.contact-panel h2,
.contact-info-card h2 {
  font-size: clamp(1.55rem, 2vw, 2.05rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 12px !important;
}

.contact-intro,
.contact-info-card > p {
  font-size: .95rem !important;
  line-height: 1.55 !important;
}

.contact-grid--main .contact-sidebar {
  height: auto !important;
  gap: 14px !important;
}

.contact-grid--main .contact-info-card {
  height: auto !important;
  flex: 0 1 auto !important;
  padding: clamp(22px, 2.4vw, 28px) !important;
}

.contact-info-card > p {
  margin-bottom: 16px !important;
}

.contact-info-list {
  gap: 13px !important;
  margin-top: 16px !important;
}

.contact-info-item {
  gap: 12px !important;
  align-items: center !important;
}

.contact-info-icon::after {
  border-radius: 14px !important;
}

.contact-info-label {
  font-size: .8rem !important;
  margin-bottom: 2px !important;
}

.contact-info-item a,
.contact-info-value {
  font-size: .96rem !important;
  line-height: 1.25 !important;
}

.office-hours-card {
  padding: clamp(20px, 2.2vw, 26px) !important;
}

.office-hours-card h3 {
  font-size: 1.2rem !important;
  margin-bottom: 8px !important;
}

.office-hours-list {
  margin: 8px 0 10px !important;
}

.office-hours-row {
  padding: 8px 0 !important;
  font-size: .9rem !important;
}

.office-hours-card p {
  margin-top: 10px !important;
  font-size: .88rem !important;
  line-height: 1.45 !important;
}

.form-grid {
  gap: 14px !important;
}

input,
textarea,
select {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

.contact-form textarea {
  min-height: 132px !important;
}

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid--main {
    gap: 24px !important;
  }

  .contact-grid--main > .contact-panel,
  .contact-grid--main > .contact-sidebar {
    height: auto !important;
    min-height: 0 !important;
  }

  .contact-grid--main .contact-sidebar {
    display: grid !important;
    grid-template-rows: auto auto !important;
  }
}

@media (min-width: 981px) {
  .contact-grid--main {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr) !important;
  }

  .contact-grid--main .contact-sidebar {
    max-width: 500px;
  }
}

@media (max-width: 980px) {
  .contact-section {
    padding-top: 36px !important;
    padding-bottom: 90px !important;
  }

  .contact-panel,
  .contact-grid--main .contact-info-card,
  .office-hours-card {
    padding: 22px !important;
  }

  .contact-info-list {
    gap: 12px !important;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding-top: 30px !important;
    padding-bottom: 96px !important;
  }

  .contact-grid--main {
    gap: 20px !important;
  }

  .contact-panel,
  .contact-grid--main .contact-info-card,
  .office-hours-card {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .contact-panel h2,
  .contact-info-card h2 {
    font-size: 1.55rem !important;
  }

  .contact-info-item {
    gap: 10px !important;
  }

  .contact-info-icon {
    flex-basis: 42px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
  }

  .contact-info-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .contact-info-item a,
  .contact-info-value {
    font-size: .92rem !important;
    overflow-wrap: anywhere;
  }

  .office-hours-row {
    gap: 4px !important;
  }

  .site-footer {
    padding-top: 44px !important;
  }
}

/* Floating urgent cyber help */
.emergency-contact {
  position: fixed;
  z-index: 980;
  right: 0;
  top: 170px;
  pointer-events: none;
}

.emergency-contact__tab {
  pointer-events: auto;
  position: relative;
  display: block;
  width: 78px;
  min-height: 228px;
  border: 1px solid rgba(255,255,255,.16);
  border-right: 0;
  border-radius: 22px 0 0 22px;
  color: #fff;
  background: linear-gradient(180deg, #ff2f67 0%, #ef4568 52%, #f97316 100%);
  box-shadow: 0 24px 80px rgba(255,47,103,.28), inset 0 1px 0 rgba(255,255,255,.18);
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.emergency-contact__tab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.24), transparent);
  transform: translateY(-130%);
  animation: emergencyTabSweep 4s ease-in-out infinite;
  opacity: .7;
}

@keyframes emergencyTabSweep {
  0%, 42% { transform: translateY(-130%); opacity: 0; }
  56% { opacity: .58; }
  82%, 100% { transform: translateY(130%); opacity: 0; }
}

.emergency-contact__tab:hover,
.emergency-contact__tab:focus-visible {
  transform: translateX(-3px);
  filter: brightness(1.04);
  box-shadow: 0 28px 90px rgba(255,47,103,.34), inset 0 1px 0 rgba(255,255,255,.24);
  outline: none;
}

.emergency-contact__pulse {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 0 rgba(255,255,255,.52);
  animation: emergencyPulse 1.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes emergencyPulse {
  0%, 100% {
    opacity: .78;
    transform: translateX(-50%) scale(.88);
    box-shadow: 0 0 0 0 rgba(255,255,255,.42);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.18);
    box-shadow: 0 0 0 10px rgba(255,255,255,0);
  }
}

.emergency-contact__label {
  position: absolute;
  top: 48px;
  bottom: 22px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: translateX(-50%) rotate(180deg);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: .98rem;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}

.emergency-contact__panel {
  pointer-events: auto;
  position: fixed;
  top: 170px;
  right: 78px;
  width: min(560px, calc(100vw - 102px));
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(145deg, rgba(18,23,39,.98), rgba(13,18,32,.98));
  box-shadow: 0 34px 110px rgba(0,0,0,.46), 0 0 80px rgba(255,47,103,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(100% + 78px));
  transition: transform .36s cubic-bezier(.2,.8,.2,1), opacity .24s ease, visibility .24s ease;
}

.emergency-contact.is-open .emergency-contact__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.emergency-contact__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 9%, rgba(255,47,103,.12), transparent 28%),
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.emergency-contact__inner {
  position: relative;
  z-index: 1;
  padding: 34px 38px 36px;
}

.emergency-contact__intro {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #ffdce4 !important;
  background: rgba(255,47,103,.08);
  border: 1px solid rgba(255,47,103,.18);
  font-size: 1rem;
  line-height: 1.55;
}

.emergency-contact__form {
  display: grid;
  gap: 15px;
}

.emergency-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.emergency-contact__field {
  display: block;
}

.emergency-contact__field span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-weight: 760;
  font-size: .88rem;
}

.emergency-contact__field input,
.emergency-contact__field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(43,49,65,.96);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.emergency-contact__field textarea {
  min-height: 128px;
  resize: vertical;
}

.emergency-contact__field input::placeholder,
.emergency-contact__field textarea::placeholder {
  color: rgba(255,255,255,.43);
}

.emergency-contact__field input:focus,
.emergency-contact__field textarea:focus {
  border-color: rgba(255,47,103,.62);
  box-shadow: 0 0 0 4px rgba(255,47,103,.12);
  background: rgba(47,53,70,.98);
}

.emergency-contact__submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(90deg, #ff2f67, #ef4568);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 22px 60px rgba(255,47,103,.24);
  transition: transform .18s ease, box-shadow .18s ease;
}

.emergency-contact__submit:hover,
.emergency-contact__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 30px 78px rgba(255,47,103,.32);
  outline: none;
}

@media (max-width: 820px) {
  .emergency-contact {
    top: auto;
    right: 16px;
    bottom: 18px;
  }

  .emergency-contact__tab {
    width: auto;
    min-height: 52px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 0 16px 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .emergency-contact__tab:hover,
  .emergency-contact__tab:focus-visible {
    transform: translateY(-2px);
  }

  .emergency-contact__pulse {
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }

  @keyframes emergencyPulse {
    0%, 100% {
      opacity: .78;
      transform: translateY(-50%) scale(.88);
      box-shadow: 0 0 0 0 rgba(255,255,255,.42);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.18);
      box-shadow: 0 0 0 10px rgba(255,255,255,0);
    }
  }

  .emergency-contact__label {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    writing-mode: horizontal-tb;
    font-size: .86rem;
    letter-spacing: .04em;
    padding-left: 0;
  }

  .emergency-contact__panel {
    top: auto;
    right: 0;
    bottom: 64px;
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100vh - 118px);
    border-radius: 24px;
    transform: translateY(16px) scale(.98);
  }

  .emergency-contact.is-open .emergency-contact__panel {
    transform: translateY(0) scale(1);
  }

  .emergency-contact__inner {
    padding: 24px 18px 24px;
  }

  .emergency-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .emergency-contact {
    right: 12px;
    bottom: 14px;
  }

  .emergency-contact__panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 104px);
  }
.emergency-contact__intro {
    font-size: .86rem;
  }
}

/* Urgent Cyber Help alignment and compact form refinement */
.emergency-contact {
  top: 168px;
}

.emergency-contact__tab {
  width: 76px;
  min-height: 236px;
  border-radius: 24px 0 0 24px;
}

.emergency-contact__pulse {
  top: 24px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
}

.emergency-contact__label {
  top: 58%;
  bottom: auto;
  left: 50%;
  width: 174px;
  height: auto;
  display: block;
  writing-mode: horizontal-tb;
  transform: translate(-50%, -50%) rotate(-90deg);
  text-align: center;
  white-space: nowrap;
  letter-spacing: .08em;
  font-size: .94rem;
  line-height: 1;
}

.emergency-contact__panel {
  top: 168px;
  right: 76px;
  width: min(500px, calc(100vw - 100px));
  max-height: calc(100vh - 188px);
}

.emergency-contact__inner {
  padding: 24px 28px 26px;
}

.emergency-contact__intro {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 15px;
  font-size: .86rem;
  line-height: 1.48;
}

.emergency-contact__form {
  gap: 11px;
}

.emergency-contact__grid {
  gap: 11px;
}

.emergency-contact__field span {
  margin-bottom: 5px;
  font-size: .82rem;
}

.emergency-contact__field input,
.emergency-contact__field textarea {
  min-height: 46px;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 1rem;
}

.emergency-contact__field textarea {
  min-height: 96px;
}

.emergency-contact__submit {
  min-height: 50px;
  border-radius: 10px;
  font-size: .88rem;
  letter-spacing: .055em;
}

@media (max-width: 820px) {
  .emergency-contact {
    top: auto;
  }

  .emergency-contact__tab {
    width: auto;
    min-height: 50px;
    padding: 0 16px 0 40px;
    border-radius: 999px;
  }

  .emergency-contact__pulse {
    top: 50%;
    left: 18px;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
  }

  .emergency-contact__label {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
    writing-mode: horizontal-tb;
    font-size: .84rem;
    letter-spacing: .04em;
  }

  .emergency-contact__panel {
    right: 0;
    bottom: 62px;
    width: min(390px, calc(100vw - 32px));
    max-height: calc(100vh - 112px);
  }

  .emergency-contact__inner {
    padding: 20px 16px 20px;
  }

  .emergency-contact__intro {
    font-size: .83rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .emergency-contact__field input,
  .emergency-contact__field textarea {
    min-height: 44px;
    padding: 10px 12px;
  }

  .emergency-contact__field textarea {
    min-height: 90px;
  }

  .emergency-contact__submit {
    min-height: 48px;
  }
}

@media (max-width: 420px) {
  .emergency-contact__panel {
    width: calc(100vw - 24px);
  }

  .emergency-contact__inner {
    padding: 18px 14px 18px;
  }
}


.emergency-contact__tab {
  width: 62px !important;
  min-height: 178px !important;
  border-radius: 20px 0 0 20px !important;
}

.emergency-contact__pulse {
  top: 18px !important;
  width: 8px !important;
  height: 8px !important;
}

.emergency-contact__label {
  top: 57% !important;
  width: 142px !important;
  font-size: .78rem !important;
  letter-spacing: .07em !important;
}

.emergency-contact__panel {
  top: 170px !important;
  right: 62px !important;
  width: min(440px, calc(100vw - 84px)) !important;
  max-height: calc(100vh - 190px) !important;
}

.emergency-contact__inner {
  padding: 18px 22px 20px !important;
}

.emergency-contact__intro {
  margin-bottom: 13px !important;
  padding: 11px 13px !important;
  border-radius: 13px !important;
  font-size: .8rem !important;
  line-height: 1.42 !important;
}

.emergency-contact__form {
  gap: 9px !important;
}

.emergency-contact__grid {
  gap: 9px !important;
}

.emergency-contact__field span {
  margin-bottom: 4px !important;
  font-size: .78rem !important;
}

.emergency-contact__field input,
.emergency-contact__field textarea {
  min-height: 40px !important;
  border-radius: 9px !important;
  padding: 9px 11px !important;
  font-size: .86rem !important;
}

.emergency-contact__field textarea {
  min-height: 78px !important;
}

.emergency-contact__submit {
  min-height: 44px !important;
  border-radius: 9px !important;
  font-size: .8rem !important;
  letter-spacing: .045em !important;
}

@media (max-width: 820px) {
  .emergency-contact__tab {
    min-height: 46px !important;
    padding: 0 13px 0 34px !important;
  }

  .emergency-contact__pulse {
    left: 15px !important;
    width: 7px !important;
    height: 7px !important;
  }

  .emergency-contact__label {
    width: auto !important;
    font-size: .78rem !important;
    letter-spacing: .035em !important;
  }

  .emergency-contact__panel {
    bottom: 56px !important;
    right: 0 !important;
    width: min(360px, calc(100vw - 28px)) !important;
    max-height: calc(100vh - 104px) !important;
  }

  .emergency-contact__inner {
    padding: 16px 14px 16px !important;
  }

  .emergency-contact__intro {
    font-size: .78rem !important;
    line-height: 1.38 !important;
    padding: 10px 12px !important;
    margin-bottom: 11px !important;
  }

  .emergency-contact__field input,
  .emergency-contact__field textarea {
    min-height: 40px !important;
    padding: 9px 10px !important;
    font-size: .84rem !important;
  }

  .emergency-contact__field textarea {
    min-height: 74px !important;
  }

  .emergency-contact__submit {
    min-height: 42px !important;
  }
}

@media (max-width: 420px) {
  .emergency-contact__panel {
    width: calc(100vw - 24px) !important;
  }
}


.emergency-contact {
  top: 170px !important;
}

.emergency-contact__tab {
  width: 56px !important;
  min-height: 172px !important;
  border-radius: 18px 0 0 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 26px 0 14px !important;
  overflow: hidden !important;
}

.emergency-contact__pulse {
  position: absolute !important;
  top: 14px !important;
  left: 50% !important;
  width: 7px !important;
  height: 7px !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
}

@keyframes emergencyPulse {
  0%, 100% {
    opacity: .78;
    transform: translateX(-50%) scale(.88);
    box-shadow: 0 0 0 0 rgba(255,255,255,.42);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.16);
    box-shadow: 0 0 0 8px rgba(255,255,255,0);
  }
}

.emergency-contact__label {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  writing-mode: vertical-rl !important;
  transform: rotate(180deg) !important;
  white-space: nowrap !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: .055em !important;
  font-size: .72rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.emergency-contact__panel {
  top: 170px !important;
  right: 56px !important;
  width: min(420px, calc(100vw - 76px)) !important;
  max-height: calc(100vh - 190px) !important;
}

.emergency-contact__inner {
  padding: 16px 20px 18px !important;
}

.emergency-contact__intro {
  margin-bottom: 11px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  font-size: .78rem !important;
  line-height: 1.4 !important;
}

.emergency-contact__form,
.emergency-contact__grid {
  gap: 8px !important;
}

.emergency-contact__field span {
  margin-bottom: 4px !important;
  font-size: .76rem !important;
}

.emergency-contact__field input,
.emergency-contact__field textarea {
  min-height: 38px !important;
  border-radius: 9px !important;
  padding: 8px 10px !important;
  font-size: .84rem !important;
}

.emergency-contact__field textarea {
  min-height: 72px !important;
}

.emergency-contact__submit {
  min-height: 42px !important;
  border-radius: 9px !important;
  font-size: .78rem !important;
  letter-spacing: .04em !important;
}

@media (max-width: 820px) {
  .emergency-contact {
    top: auto !important;
    right: 14px !important;
    bottom: 16px !important;
  }

  .emergency-contact__tab {
    width: auto !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    padding: 0 13px 0 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .emergency-contact__pulse {
    top: 50% !important;
    left: 14px !important;
    width: 7px !important;
    height: 7px !important;
    transform: translateY(-50%) !important;
  }

  @keyframes emergencyPulse {
    0%, 100% {
      opacity: .78;
      transform: translateY(-50%) scale(.88);
      box-shadow: 0 0 0 0 rgba(255,255,255,.42);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.16);
      box-shadow: 0 0 0 8px rgba(255,255,255,0);
    }
  }

  .emergency-contact__label {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: .76rem !important;
    letter-spacing: .035em !important;
    line-height: 1 !important;
  }

  .emergency-contact__panel {
    top: auto !important;
    right: 0 !important;
    bottom: 54px !important;
    width: min(350px, calc(100vw - 28px)) !important;
    max-height: calc(100vh - 100px) !important;
    border-radius: 22px !important;
  }

  .emergency-contact__inner {
    padding: 15px 13px 15px !important;
  }

  .emergency-contact__intro {
    font-size: .76rem !important;
    line-height: 1.36 !important;
  }

  .emergency-contact__field input,
  .emergency-contact__field textarea {
    min-height: 38px !important;
    padding: 8px 10px !important;
    font-size: .82rem !important;
  }

  .emergency-contact__field textarea {
    min-height: 68px !important;
  }

  .emergency-contact__submit {
    min-height: 40px !important;
  }
}

@media (max-width: 420px) {
  .emergency-contact {
    right: 12px !important;
    bottom: 14px !important;
  }

  .emergency-contact__panel {
    width: calc(100vw - 24px) !important;
  }
}

/* Urgent Cyber Help thin solid-red banner refinement */
.emergency-contact {
  right: 0 !important;
  top: 170px !important;
}

.emergency-contact__tab {
  width: 42px !important;
  min-height: 158px !important;
  border-radius: 14px 0 0 14px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-right: 0 !important;
  background: #e11d48 !important;
  box-shadow:
    0 16px 48px rgba(225,29,72,.26),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
  padding: 23px 0 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.emergency-contact__tab::after {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent) !important;
}

.emergency-contact__pulse {
  top: 12px !important;
  left: 50% !important;
  width: 6px !important;
  height: 6px !important;
  transform: translateX(-50%) !important;
}

@keyframes emergencyPulse {
  0%, 100% {
    opacity: .76;
    transform: translateX(-50%) scale(.88);
    box-shadow: 0 0 0 0 rgba(255,255,255,.36);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
    box-shadow: 0 0 0 6px rgba(255,255,255,0);
  }
}

.emergency-contact__label {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  writing-mode: vertical-rl !important;
  transform: rotate(180deg) !important;
  white-space: nowrap !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: .045em !important;
  font-size: .64rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.emergency-contact__panel {
  right: 42px !important;
  width: min(420px, calc(100vw - 62px)) !important;
}

@media (max-width: 820px) {
  .emergency-contact {
    right: 12px !important;
    bottom: 14px !important;
    top: auto !important;
  }

  .emergency-contact__tab {
    width: auto !important;
    min-height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: #e11d48 !important;
    padding: 0 12px 0 30px !important;
  }

  .emergency-contact__pulse {
    top: 50% !important;
    left: 13px !important;
    width: 6px !important;
    height: 6px !important;
    transform: translateY(-50%) !important;
  }

  @keyframes emergencyPulse {
    0%, 100% {
      opacity: .76;
      transform: translateY(-50%) scale(.88);
      box-shadow: 0 0 0 0 rgba(255,255,255,.36);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.12);
      box-shadow: 0 0 0 6px rgba(255,255,255,0);
    }
  }

  .emergency-contact__label {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: .72rem !important;
    letter-spacing: .025em !important;
  }

  .emergency-contact__panel {
    right: 0 !important;
    bottom: 52px !important;
    width: min(350px, calc(100vw - 24px)) !important;
  }
}

/* Urgent Cyber Help intro text and field-label refinement */
.emergency-contact__intro {
  text-align: left !important;
  text-wrap: balance;
  max-width: 100% !important;
  letter-spacing: -0.01em;
}

.emergency-contact__field textarea::placeholder {
  line-height: 1.45;
}

@media (min-width: 821px) {
  .emergency-contact__intro {
    font-size: .79rem !important;
    line-height: 1.48 !important;
    padding-right: 16px !important;
  }
}

/* Urgent Cyber Help intro copy fit refinement */
.emergency-contact__intro {
  display: block !important;
  max-width: none !important;
  width: 100% !important;
  text-align: left !important;
  text-wrap: pretty;
  hyphens: none;
  letter-spacing: -0.012em;
  padding: 12px 14px !important;
  font-size: .83rem !important;
  line-height: 1.5 !important;
}

.emergency-contact__field textarea::placeholder {
  line-height: 1.35;
}

@media (min-width: 821px) {
  .emergency-contact__panel {
    width: min(460px, calc(100vw - 82px)) !important;
  }

  .emergency-contact__inner {
    padding: 18px 22px 20px !important;
  }

  .emergency-contact__intro {
    font-size: .84rem !important;
    line-height: 1.52 !important;
    padding-right: 14px !important;
  }
}

@media (max-width: 820px) {
  .emergency-contact__intro {
    font-size: .79rem !important;
    line-height: 1.42 !important;
  }
}


.emergency-contact__pulse {
  background: #22d3ee !important;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, .52) !important;
}

@keyframes emergencyPulse {
  0%, 100% {
    opacity: .78;
    transform: translateX(-50%) scale(.88);
    box-shadow: 0 0 0 0 rgba(34, 211, 238, .42);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
    box-shadow: 0 0 0 7px rgba(34, 211, 238, 0);
  }
}

@media (max-width: 820px) {
  @keyframes emergencyPulse {
    0%, 100% {
      opacity: .78;
      transform: translateY(-50%) scale(.88);
      box-shadow: 0 0 0 0 rgba(34, 211, 238, .42);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.12);
      box-shadow: 0 0 0 7px rgba(34, 211, 238, 0);
    }
  }
}

/* More prominent cyan/AI pulse for urgent tab */
.emergency-contact__pulse {
  background: #22d3ee !important;
  width: 8px !important;
  height: 8px !important;
  box-shadow:
    0 0 0 0 rgba(34, 211, 238, .72),
    0 0 18px rgba(34, 211, 238, .85),
    0 0 30px rgba(167, 139, 250, .34) !important;
  animation: emergencyPulse 1.45s ease-in-out infinite !important;
}

@keyframes emergencyPulse {
  0%, 100% {
    opacity: .86;
    transform: translateX(-50%) scale(.9);
    box-shadow:
      0 0 0 0 rgba(34, 211, 238, .65),
      0 0 16px rgba(34, 211, 238, .78),
      0 0 30px rgba(167, 139, 250, .30);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.25);
    box-shadow:
      0 0 0 10px rgba(34, 211, 238, 0),
      0 0 24px rgba(34, 211, 238, .95),
      0 0 42px rgba(167, 139, 250, .48);
  }
}

@media (max-width: 820px) {
  .emergency-contact__pulse {
    width: 8px !important;
    height: 8px !important;
  }

  @keyframes emergencyPulse {
    0%, 100% {
      opacity: .86;
      transform: translateY(-50%) scale(.9);
      box-shadow:
        0 0 0 0 rgba(34, 211, 238, .65),
        0 0 16px rgba(34, 211, 238, .78),
        0 0 30px rgba(167, 139, 250, .30);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.25);
      box-shadow:
        0 0 0 10px rgba(34, 211, 238, 0),
        0 0 24px rgba(34, 211, 238, .95),
        0 0 42px rgba(167, 139, 250, .48);
    }
  }
}

/* Urgent Cyber Help recommended white pulse */
.emergency-contact__pulse {
  background: #ffffff !important;
  width: 7px !important;
  height: 7px !important;
  box-shadow:
    0 0 0 0 rgba(255, 255, 255, .75),
    0 0 12px rgba(255, 255, 255, .85) !important;
  animation: emergencyPulse 1.35s ease-in-out infinite !important;
}

@keyframes emergencyPulse {
  0%, 100% {
    opacity: .65;
    transform: translateX(-50%) scale(.8);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, .75),
      0 0 12px rgba(255, 255, 255, .85);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.22);
    box-shadow:
      0 0 0 9px rgba(255, 255, 255, 0),
      0 0 24px rgba(255, 255, 255, 1);
  }
}

@media (max-width: 820px) {
  .emergency-contact__pulse {
    background: #ffffff !important;
    width: 7px !important;
    height: 7px !important;
  }

  @keyframes emergencyPulse {
    0%, 100% {
      opacity: .65;
      transform: translateY(-50%) scale(.8);
      box-shadow:
        0 0 0 0 rgba(255, 255, 255, .75),
        0 0 12px rgba(255, 255, 255, .85);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) scale(1.22);
      box-shadow:
        0 0 0 9px rgba(255, 255, 255, 0),
        0 0 24px rgba(255, 255, 255, 1);
    }
  }
}

/* Contact page equal-height card alignment */
@media (min-width: 981px) {
  .contact-grid--main {
    align-items: stretch !important;
  }

  .contact-grid--main > .contact-panel,
  .contact-grid--main > .contact-sidebar {
    min-height: 100% !important;
    height: auto !important;
  }

  .contact-grid--main > .contact-sidebar {
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 34px !important;
    align-self: stretch !important;
  }

  .contact-grid--main .contact-info-card,
  .contact-grid--main .office-hours-card {
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .contact-grid--main .contact-info-card {
    justify-content: flex-start !important;
  }

  .contact-grid--main .office-hours-card {
    justify-content: center !important;
  }

  .contact-info-card > p {
    margin-bottom: 18px !important;
  }

  .contact-info-list {
    gap: 16px !important;
    margin-top: 18px !important;
  }

  .contact-info-icon {
    flex-basis: 48px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
  }

  .contact-info-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .office-hours-list {
    margin: 12px 0 14px !important;
  }

  .office-hours-row {
    padding: 10px 0 !important;
  }
}

@media (max-width: 980px) {
  .contact-grid--main > .contact-sidebar {
    display: grid !important;
    gap: 22px !important;
  }

  .contact-grid--main .contact-info-card,
  .contact-grid--main .office-hours-card {
    height: auto !important;
  }
}

/* Contact page compact natural-height layout */
@media (min-width: 981px) {
  .contact-grid--main {
    align-items: start !important;
    gap: 34px !important;
  }

  .contact-grid--main > .contact-panel,
  .contact-grid--main > .contact-sidebar,
  .contact-grid--main .contact-info-card,
  .contact-grid--main .office-hours-card {
    height: auto !important;
    min-height: 0 !important;
  }

  .contact-grid--main > .contact-sidebar {
    display: grid !important;
    grid-template-rows: auto auto !important;
    gap: 22px !important;
    align-self: start !important;
  }

  .contact-grid--main .contact-info-card,
  .contact-grid--main .office-hours-card {
    display: block !important;
  }
}

/* Make the Send us a message card content-driven, not oversized */
.contact-panel {
  align-self: start !important;
  padding: 28px !important;
}

.contact-panel h2 {
  margin-bottom: 8px !important;
}

.contact-intro {
  margin: -2px 0 14px !important;
  font-size: .94rem !important;
  line-height: 1.5 !important;
}
.contact-form {
  gap: 14px !important;
}

.contact-form label span,
.contact-form .required-field > span {
  margin-bottom: 6px !important;
  font-size: .9rem !important;
}

.contact-form input,
.contact-form select {
  min-height: 46px !important;
  padding: 10px 13px !important;
  border-radius: 12px !important;
  font-size: .94rem !important;
}

.contact-form textarea {
  min-height: 150px !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  font-size: .94rem !important;
}

.contact-form .btn,
.contact-form button[type="submit"] {
  min-height: 52px !important;
  margin-top: 2px !important;
}

/* Keep right-side cards natural and compact */
.contact-info-card,
.office-hours-card {
  padding: 28px !important;
}

.contact-info-card > p {
  margin-bottom: 16px !important;
  font-size: .94rem !important;
  line-height: 1.5 !important;
}

.contact-info-list {
  gap: 14px !important;
  margin-top: 16px !important;
}

.contact-info-item {
  gap: 14px !important;
}

.contact-info-icon {
  flex-basis: 46px !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 15px !important;
}

.contact-info-icon svg {
  width: 21px !important;
  height: 21px !important;
}

.contact-info-label {
  font-size: .82rem !important;
}

.contact-info-item a,
.contact-info-value {
  font-size: .96rem !important;
}

.office-hours-card h3 {
  margin-bottom: 10px !important;
}

.office-hours-list {
  margin: 10px 0 12px !important;
}

.office-hours-row {
  padding: 9px 0 !important;
  font-size: .94rem !important;
}

.office-hours-card p {
  margin-top: 12px !important;
  font-size: .92rem !important;
  line-height: 1.5 !important;
}

@media (max-width: 980px) {
  .contact-grid--main {
    align-items: start !important;
  }

  .contact-panel,
  .contact-info-card,
  .office-hours-card {
    height: auto !important;
  }
}

@media (max-width: 640px) {
  .contact-panel,
  .contact-info-card,
  .office-hours-card {
    padding: 22px !important;
  }

  .contact-form textarea {
    min-height: 130px !important;
  }
}

/* Prevent contact form fields from resizing or overflowing outside cards */
.contact-panel,
.contact-info-card,
.office-hours-card {
  overflow: hidden !important;
}
.contact-form,
.contact-form label,
.contact-form .required-field {
  min-width: 0 !important;
  max-width: 100% !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.contact-form textarea {
  resize: none !important;
  overflow: auto !important;
}

/* Apply the same protection to the urgent cyber help form */
.emergency-contact__panel,
.emergency-contact__inner {
  overflow: hidden !important;
}

.emergency-contact__form,
.emergency-contact__grid,
.emergency-contact__field {
  min-width: 0 !important;
  max-width: 100% !important;
}

.emergency-contact__field input,
.emergency-contact__field textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.emergency-contact__field textarea {
  resize: none !important;
  overflow: auto !important;
}

/* Contact page message box height refinement */
.contact-form textarea {
  min-height: 104px !important;
  height: 104px !important;
}

@media (max-width: 640px) {
  .contact-form textarea {
    min-height: 110px !important;
    height: 110px !important;
  }
}

/* Homepage Why Cybersecurity section. */
.why-cyber-section {
  padding-block: 72px;
}

.why-cyber-card {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.why-cyber-card--wide {
  width: 100%;
  max-width: 100%;
}

.why-cyber-card .section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: clamp(1.08rem, 1.28vw, 1.32rem);
  letter-spacing: .18em;
}

.why-cyber-card h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3.2vw, 3.15rem);
  line-height: 1.08;
}

.why-cyber-card p {
  max-width: 1120px;
  margin-bottom: 14px;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.72;
}

.why-cyber-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .why-cyber-section {
    padding-block: 56px;
  }

  .why-cyber-card {
    padding: 0;
  }

  .why-cyber-card .section-kicker {
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .why-cyber-card h2 {
    margin-bottom: 16px;
  }
}

/* Why Cybersecurity CTA refinement. */
.why-cyber-card__closing {
  color: var(--text) !important;
  font-weight: 760;
}

.why-cyber-card__cta {
  margin-top: 20px;
  width: fit-content;
}

@media (max-width: 640px) {
  .why-cyber-card__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .hero-section {
    padding-top: 40px;
  }

}

/* Hero image ordering and Why Cybersecurity title refinement. */

.why-cyber-card .section-kicker {
  font-size: clamp(1.24rem, 1.55vw, 1.62rem) !important;
  letter-spacing: .17em;
}

.why-cyber-card h2 {
  font-size: clamp(1.76rem, 2.3vw, 2.35rem) !important;
  line-height: 1.08;
}

@media (max-width: 640px) {
  .why-cyber-card .section-kicker {
    font-size: 1.1rem !important;
    letter-spacing: .13em;
  }

  .why-cyber-card h2 {
    font-size: clamp(1.58rem, 6.8vw, 1.98rem) !important;
  }
}

@media (min-width: 1180px) {
  .hero-grid {
    grid-template-columns: .96fr 1.04fr;
    gap: 48px;
  }

}

/* Hero control hub image extra-large desktop refinement. */
@media (min-width: 1180px) {
  .hero-grid {
    grid-template-columns: .88fr 1.12fr !important;
    gap: 34px !important;
  }

}

@media (min-width: 1440px) {
  .hero-grid {
    grid-template-columns: .84fr 1.16fr !important;
    gap: 28px !important;
  }

}

/* Keep tablet and mobile adaptive and contained. */
@media (max-width: 1179px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

}

/* Hero control hub image readability boost. */
@media (min-width: 1180px) {
  .hero-grid {
    grid-template-columns: .82fr 1.18fr !important;
    gap: 22px !important;
    align-items: center !important;
  }

}

@media (min-width: 1440px) {
  .hero-grid {
    grid-template-columns: .78fr 1.22fr !important;
    gap: 16px !important;
  }

}

/* Keep tablet and mobile auto-aligned and contained below the hero text/buttons. */
@media (max-width: 1179px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

}

/* Hero CTA hierarchy refinement: Cyber assessment primary, AI discovery passive. */
body.home .btn-ai-discovery,
.front-page .btn-ai-discovery,
.home .btn-ai-discovery {
  color: #f8fafc !important;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: none !important;
  animation: none !important;
}

body.home .btn-ai-discovery:hover,
body.home .btn-ai-discovery:focus-visible,
.front-page .btn-ai-discovery:hover,
.front-page .btn-ai-discovery:focus-visible,
.home .btn-ai-discovery:hover,
.home .btn-ai-discovery:focus-visible {
  color: #ffffff !important;
  background: rgba(255,255,255,.075) !important;
  border-color: rgba(255,255,255,.28) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
}

body.home .btn-ai-discovery::after,
.front-page .btn-ai-discovery::after,
.home .btn-ai-discovery::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

body.home .btn-cyber-assessment,
.front-page .btn-cyber-assessment,
.home .btn-cyber-assessment {
  z-index: 1;
}

/* Hero CTA equal sizing refinement. */
.hero-section .cta-row .btn-cyber-assessment,
.hero-section .cta-row .btn-ai-discovery {
  min-width: 268px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-section .cta-row {
    width: 100%;
  }

  .hero-section .cta-row .btn-cyber-assessment,
  .hero-section .cta-row .btn-ai-discovery {
    width: 100%;
    min-width: 0;
  }
}

/* Why Cybersecurity headline smaller refinement. */
.why-cyber-card h2 {
  font-size: clamp(1.55rem, 1.95vw, 2rem) !important;
  line-height: 1.12 !important;
  max-width: 1180px;
}

@media (max-width: 640px) {
  .why-cyber-card h2 {
    font-size: clamp(1.42rem, 6.2vw, 1.78rem) !important;
  }
}

/* Restored homepage service cards section. */
#services-overview .section-kicker {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  letter-spacing: .15em;
}

#services-overview .section-heading {
  max-width: 920px;
}

#services-overview .service-card {
  min-height: 300px;
}

@media (max-width: 1060px) {
  #services-overview .card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #services-overview .card-grid--four {
    grid-template-columns: 1fr;
  }

  #services-overview .service-card {
    min-height: auto;
  }
}


/* Services section heading sizing refinement. */
#services-overview .section-kicker {
  font-size: clamp(1.24rem, 1.55vw, 1.62rem) !important;
  letter-spacing: .17em !important;
}

#services-overview .section-heading h2 {
  font-size: clamp(1.55rem, 1.95vw, 2rem) !important;
  line-height: 1.12 !important;
  max-width: 1180px;
  margin-inline: auto;
}

@media (max-width: 640px) {
  #services-overview .section-kicker {
    font-size: 1.1rem !important;
    letter-spacing: .13em !important;
  }

  #services-overview .section-heading h2 {
    font-size: clamp(1.42rem, 6.2vw, 1.78rem) !important;
  }
}

/* Solutions section heading sizing refinement. */

/* Hero helper line between typing text and CTA buttons. */
.hero-session-helper {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.55;
}

.hero-session-helper strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 3px;
}

.hero-session-helper span {
  display: block;
}

.hero-session-helper + .cta-row {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .hero-session-helper {
    margin-top: 16px;
    font-size: .98rem;
  }

  .hero-session-helper strong {
    font-size: 1.08rem;
  }
}

/* Services section Contact Us CTA. */
.services-contact-action {
  margin-top: 34px;
  text-align: center;
}

.services-contact-action__button {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 640px) {
  .services-contact-action {
    margin-top: 28px;
  }

  .services-contact-action__button {
    width: 100%;
    min-width: 0;
  }
}

/* Why Cybersecurity closing line split. */
.why-cyber-card__closing span {
  display: block;
}

.why-cyber-card__closing span + span {
  margin-top: 4px;
}

/* Four-card Solutions layout after removing Free Cyber Assessment. */

/* Remove divider line between Why Cybersecurity and Services sections. */
.why-cyber-section {
  border-bottom: 0 !important;
}

.why-cyber-section + #services-overview {
  border-top: 0 !important;
}

/* Fully remove remaining visual divider around Why Cybersecurity and Services. */
.why-cyber-section, .why-cyber-section + #services-overview{
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-block: 0 !important;
  box-shadow: none !important;
}

.why-cyber-section {
  background: transparent !important;
}

.why-cyber-section::before,
.why-cyber-section::after,
.why-cyber-section + #services-overview::before,
.why-cyber-section + #services-overview::after {
  content: none !important;
  display: none !important;
}

.why-cyber-section + #services-overview {
  margin-top: -1px;
}

/* Center Why Cybersecurity heading to match other homepage section headings. */
.why-cyber-card .section-kicker {
  display: flex !important;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.why-cyber-card h2 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Reduce vertical gap between Why Cybersecurity and Services sections. */
.why-cyber-section {
  padding-bottom: 42px !important;
}

#services-overview {
  padding-top: 46px !important;
}

@media (max-width: 760px) {
  .why-cyber-section {
    padding-bottom: 34px !important;
  }

  #services-overview {
    padding-top: 38px !important;
  }
}

/* Reduce vertical gap between Services and Solutions sections. */
#services-overview {
  padding-bottom: 42px !important;
}

#services-overview .services-contact-action {
  margin-bottom: 0 !important;
}

@media (max-width: 760px) {
  #services-overview {
    padding-bottom: 34px !important;
  }

}

/* Footer contact details using contact page icon style. */

/* Thin footer contact layout. */
.site-footer--thin {
  padding: 24px 0 16px !important;
  background: rgba(3, 5, 14, .94);
  border-top: 1px solid rgba(255,255,255,.07);
}


.footer-thin {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(170px, auto));
  gap: 28px;
  align-items: start;
}

.footer-thin__brand {
  align-self: center;
}

.footer-thin__brand .site-brand--footer {
  width: fit-content;
}

.footer-thin__brand .site-brand__logo-mark {
  width: 38px;
  height: auto;
}

.footer-thin__brand .site-brand__text {
  font-size: 1.22rem;
}

.footer-thin__item {
  min-width: 0;
}

.footer-thin__heading {
  display: block;
  margin-bottom: 8px;
  color: #99f6e4;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-thin__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 760;
  white-space: nowrap;
}

.footer-thin__link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #7df6ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(125, 246, 255, .28));
}

.footer-thin__link:hover,
.footer-thin__link:focus-visible {
  color: #75efff;
}

.footer-thin__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-thin__linkedin img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.footer-thin__linkedin:hover,
.footer-thin__linkedin:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 102, 194, .28);
}

.footer-bottom--thin {
  margin-top: 18px !important;
  padding-top: 14px !important;
}

.footer-bottom--thin p {
  font-size: .92rem;
}

@media (max-width: 980px) {
  .footer-thin {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .site-footer--thin {
    padding-top: 22px !important;
  }

  .footer-thin {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-thin__link {
    white-space: normal;
  }
}

/* Redesigned homepage About CipherNet section. */
.about-preview {
  padding-top: 72px;
  padding-bottom: 88px;
}

.about-preview__inner {
  position: relative;
  text-align: center;
}

.about-preview__heading {
  max-width: 940px;
  margin-inline: auto;
}

.about-preview__heading .section-kicker {
  font-size: clamp(1.24rem, 1.55vw, 1.62rem) !important;
  letter-spacing: .17em !important;
}

.about-preview__heading h2 {
  font-size: clamp(1.55rem, 1.95vw, 2rem) !important;
  line-height: 1.12 !important;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.about-preview__heading p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

@media (max-width: 640px) {
  .about-preview {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .about-preview__heading .section-kicker {
    font-size: 1.1rem !important;
    letter-spacing: .13em !important;
  }

  .about-preview__heading h2 {
    font-size: clamp(1.42rem, 6.2vw, 1.78rem) !important;
  }
}

/* Reduce vertical gap between Solutions and About sections. */

.about-preview {
  padding-top: 46px !important;
}

@media (max-width: 760px) {

  .about-preview {
    padding-top: 38px !important;
  }
}

/* Solutions section action buttons. */
.plans-action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.plans-ask-expert-button {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 640px) {
  .plans-action-row {
    display: grid;
    gap: 12px;
  }

  .plans-action-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* About section simplified after removing support cards and button. */
.about-preview {
  padding-bottom: 74px !important;
}

.about-preview__heading {
  max-width: 980px;
}

.about-preview__heading p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .about-preview {
    padding-bottom: 60px !important;
  }
}

/* Single Services page redesign. */
.services-page .section-kicker {
  font-size: clamp(1.02rem, 1.24vw, 1.2rem);
  letter-spacing: .16em;
}

.services-hero {
  min-height: auto;
  padding: 108px 0 76px;
}

.services-hero__inner {
  max-width: 880px;
  margin: 0;
  text-align: left;
}

.services-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.065em;
  max-width: 980px;
}

.services-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.services-intro-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(400px, .92fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.services-intro-copy h2, .services-detail-section .section-heading h2, .services-cta-panel h2{
  font-size: clamp(1.55rem, 1.95vw, 2rem);
  line-height: 1.12;
}

.services-intro-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.75;
}

.services-detail-section {
  padding-top: 76px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.services-detail-card {
  position: relative;
  min-height: 100%;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  scroll-margin-top: 120px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.services-detail-card:hover,
.services-detail-card:focus-within {
  border-color: rgba(34,211,238,.30);
}

.services-detail-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.services-detail-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(34,211,238,.12);
  color: var(--accent-2);
}

.services-detail-card__icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.services-detail-card h2 {
  font-size: clamp(1.55rem, 2.15vw, 2.2rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.services-detail-card p {
  color: var(--muted);
  line-height: 1.68;
}

.services-detail-card__description {
  color: var(--text) !important;
  font-weight: 680;
}

.services-detail-card__body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.services-detail-card__label {
  display: block;
  margin-bottom: 12px;
  color: #99f6e4;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.services-deliverables {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-deliverables li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.52;
}

.services-deliverables li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #99f6e4;
  font-weight: 900;
}

.services-bottom-cta {
  padding-top: 82px;
  padding-bottom: 90px;
}

.services-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.services-cta-panel p {
  color: var(--muted);
  max-width: 760px;
}

.services-cta-panel__actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 310px);
}

.services-cta-panel__actions .btn {
  justify-content: center;
}

.services-cta-panel__actions p {
  margin: 2px 0 0;
  color: var(--muted-2);
  font-size: .92rem;
  text-align: center;
}

@media (max-width: 1060px) {
  .services-intro-grid,
  .services-cta-panel {
    grid-template-columns: 1fr;
  }
.services-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-detail-card__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .services-hero {
    padding: 78px 0 58px;
  }
.services-intro-section,
.services-detail-section,
.services-bottom-cta {
    padding-top: 58px;
    padding-bottom: 58px;
  }
.services-detail-grid {
    grid-template-columns: 1fr;
  }

  .services-detail-card {
    padding: 24px;
  }

  .services-detail-card__top {
    flex-wrap: wrap;
  }

  .services-cta-panel__actions,
  .services-cta-panel__actions .btn {
    width: 100%;
  }
}

/* Reliable same-page service anchor landing from homepage service cards. */
.services-detail-card {
  scroll-margin-top: 128px !important;
}

@media (max-width: 760px) {
  .services-detail-card {
    scroll-margin-top: 104px !important;
  }
}

/* ---------- Alignment consistency ---------- */
.section-heading { margin-inline: auto; }
.section-heading h1, .section-heading h2 { margin-top: 0; }
.page-hero .section-heading { position: relative; z-index: 1; }
.cta-row--center { justify-content: center; }
.final-cta .cta-panel {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.25rem) clamp(1.25rem, 4vw, 3rem);
}
.final-cta .cta-panel .section-kicker { justify-content: center; }
.final-cta .cta-panel h2 { max-width: 680px; margin: 0 auto 0.75rem; }
.final-cta .cta-panel p { max-width: 540px; margin: 0 auto 1.5rem; }

/* ---------- Security Plans ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  transition: transform .18s ease, border-color .18s ease;
}
.plan-card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, .45); }
.plan-card--featured {
  border-color: rgba(139, 92, 246, .6);
  background: linear-gradient(180deg, rgba(139, 92, 246, .14), rgba(255, 255, 255, .04));
  box-shadow: 0 24px 80px rgba(139, 92, 246, .22);
}
.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #0a0d1c;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan-card__name { font-size: 1.45rem; margin: 0 0 2px; }
.plan-card__tagline { color: var(--accent-2); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; }
.plan-card__price { font-size: 2.3rem; font-weight: 800; color: var(--text); margin: 0 0 10px; line-height: 1; }
.plan-card__price-period { font-size: .85rem; font-weight: 500; color: var(--muted); margin-left: 4px; }
.plan-card__features { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; flex: 1; }
.plan-card__features li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .9rem; }
.plan-card__features svg { width: 18px; height: 18px; fill: var(--success); flex-shrink: 0; margin-top: 2px; }
.plan-card__cta { width: 100%; justify-content: center; }
.plan-footnote { margin-top: 26px; text-align: center; }
.plan-footnote p { color: var(--text); font-size: .85rem; max-width: 760px; margin: 0 auto; }

/* ---------- Plan comparison table ---------- */
.plan-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.plan-compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
}
.plan-compare__table th,
.plan-compare__table td {
  padding: 14px 18px;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.plan-compare__table thead th {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #99f6e4;
  background: rgba(255, 255, 255, .04);
}
.plan-compare__table tbody th { color: var(--text); font-weight: 600; }
.plan-compare__table td { color: var(--muted); }
.plan-compare__table tbody tr:last-child th,
.plan-compare__table tbody tr:last-child td { border-bottom: 0; }

/* ---------- Spam protection fields ---------- */
.cn-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ---------- Responsive: new components ---------- */
@media (max-width: 1024px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .plan-card--featured { order: -1; }
}
@media (max-width: 640px) {
  .plan-card__price { font-size: 2rem; }
  .final-cta .cta-panel .cta-row .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
  .emergency-contact__pulse, .typing-cursor{ animation: none !important; }
}

/* Fixed full-viewport backdrop sitting behind everything */
.ciphernet-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;            /* behind all content, above body background */
  pointer-events: none;
  overflow: hidden;
}
.ciphernet-backdrop .ciphernet-shader-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* Fallback tint before/without WebGL — matches shader base */
  background: radial-gradient(circle at 30% 18%, rgba(85, 50, 180, .28), transparent 40%), var(--bg);
}
.ciphernet-shader-bg.webgl-fallback {
  background:
    radial-gradient(circle at 22% 12%, rgba(139, 92, 246, .30), transparent 42%),
    radial-gradient(circle at 82% 8%, rgba(34, 211, 238, .16), transparent 40%),
    var(--bg);
}

/* The fade: animation is fully visible at the top, dissolves into the solid
   page background by the bottom of the first viewport. This is what removes
   the "border/line" — there is no section edge, just a gradient to bg. */
.ciphernet-backdrop__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 19, 0) 0%,
    rgba(5, 7, 19, 0) 42%,
    rgba(5, 7, 19, .55) 70%,
    var(--bg) 100%
  );
}

/* Solid base so content below the first viewport never sits on live animation */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
  pointer-events: none;
}

/* Header becomes transparent so the animation starts at the true top of the
   page and shows through behind the logo/nav. Sticky behaviour unchanged. */
.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
/* Once the user scrolls, JS adds .is-scrolled — header gains a readable
   backdrop so nav stays legible over page content. */
.site-header.is-scrolled {
  background: rgba(5, 7, 19, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}


.hero-section,
.page-hero {
  background: transparent;
}
.hero-section { isolation: auto; }

/* All hero content sits above the backdrop */
.hero-grid,
.page-hero .container,
.page-hero .section-heading {
  position: relative;
  z-index: 1;
}


.compact-hero::before { content: none; }
.site-footer {
  position: relative;
  z-index: 1;
}

/* Reduced-motion: JS already paints a single static frame; keep header solid
   so there is no motion dependency for legibility. */
@media (prefers-reduced-motion: reduce) {
  .site-header { background: rgba(5, 7, 19, 0.82); border-bottom-color: rgba(255,255,255,0.07); }
}

.homepage-threat-stats {
  padding-top: 0;
  margin-top: -8px;
}

.homepage-threat-stats__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(34,211,238,.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(139,92,246,.22), transparent 38%),
    linear-gradient(180deg, rgba(10, 18, 39, .88), rgba(6, 10, 24, .94));
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.homepage-threat-stats__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: .45;
}

.homepage-threat-stats__heading,
.homepage-threat-stats__grid,
.homepage-threat-stats__source {
  position: relative;
  z-index: 1;
}

.homepage-threat-stats__heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.homepage-threat-stats__heading h2 {
  font-size: clamp(1.95rem, 4vw, 3.25rem);
  margin-bottom: 0;
}

.homepage-threat-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.homepage-threat-stat {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 100%;
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 18px 48px rgba(0,0,0,.18);
}

.homepage-threat-stat__accent {
  display: block;
  width: 3px;
  min-height: 144px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd166, #ffd166);
  box-shadow: 0 0 18px rgba(255, 209, 102, .34);
}

.homepage-threat-stat strong {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: .95;
  letter-spacing: -.06em;
  color: var(--text);
}

.homepage-threat-stat p {
  margin: 0;
  max-width: 28ch;
  color: #c8d2e4;
  font-size: 1.04rem;
  line-height: 1.6;
}

.homepage-threat-stats__source {
  margin: 24px 0 0;
  color: rgba(198, 210, 232, .62);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {

  .homepage-threat-stats__grid {
    grid-template-columns: 1fr;
  }

  .homepage-threat-stat__accent {
    min-height: 110px;
  }

  .homepage-threat-stat p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .homepage-threat-stats {
    margin-top: 0;
  }

  .homepage-threat-stats__panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .homepage-threat-stats__heading {
    margin-bottom: 20px;
  }

  .homepage-threat-stat {
    padding: 20px 18px;
    gap: 14px;
  }

  .homepage-threat-stat__accent {
    min-height: 96px;
  }

  .homepage-threat-stats__source {
    font-size: .76rem;
    letter-spacing: .18em;
  }
}

.hero-grid--stats {
  grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 76px);
}

.hero-grid--stats .hero-copy {
  max-width: 720px;
}

.hero-grid--stats .homepage-threat-stats {
  width: min(100%, 500px);
  justify-self: end;
  margin: 0;
  padding: 0;
}

.hero-grid--stats .homepage-threat-stats__panel {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 28px;
}

.hero-grid--stats .homepage-threat-stats__heading {
  margin-bottom: 18px;
}

.hero-grid--stats .homepage-threat-stats__heading h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-grid--stats .homepage-threat-stats__grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.hero-grid--stats .homepage-threat-stat {
  min-height: 0;
  padding: 18px;
  grid-template-columns: 5px minmax(0, 1fr);
  gap: 16px;
}

.hero-grid--stats .homepage-threat-stat__accent {
  min-height: 92px;
}

.hero-grid--stats .homepage-threat-stat strong {
  font-size: clamp(2rem, 3.4vw, 2.95rem);
  margin-bottom: 8px;
}

.hero-grid--stats .homepage-threat-stat p {
  max-width: none;
  font-size: .95rem;
  line-height: 1.48;
}

.hero-grid--stats .homepage-threat-stats__source {
  margin-top: 18px;
  font-size: .72rem;
  line-height: 1.55;
  letter-spacing: .18em;
}

@media (max-width: 1060px) {
  .hero-grid--stats {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-grid--stats .homepage-threat-stats {
    width: 100%;
    justify-self: stretch;
    margin-top: 4px;
  }

  .hero-grid--stats .homepage-threat-stats__grid {
    grid-template-columns: 1fr;
  }
}#services-overview .service-card,
#plans-preview .plan-card,
.why-cyber-section .why-cyber-card,
.about-preview__inner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(122, 111, 180, .42);
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, .10), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(139, 92, 246, .18), transparent 40%),
    linear-gradient(180deg, #111734 0%, #080b1a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 22px 70px rgba(0, 0, 0, .34);
  backdrop-filter: none;
}#services-overview .service-card::before,
#plans-preview .plan-card::before,
.why-cyber-section .why-cyber-card::before,
.about-preview__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: .34;
}#services-overview .service-card > *,
#plans-preview .plan-card > *,
.why-cyber-section .why-cyber-card > *,
.about-preview__inner > * {
  position: relative;
  z-index: 1;
}

#services-overview .service-card:hover,
#plans-preview .plan-card:hover {
  border-color: rgba(34, 211, 238, .44);
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, .14), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(139, 92, 246, .22), transparent 40%),
    linear-gradient(180deg, #141a3a 0%, #090d1f 100%);
}

#plans-preview .plan-card--featured {
  border-color: rgba(139, 92, 246, .62);
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 211, 238, .12), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(139, 92, 246, .28), transparent 42%),
    linear-gradient(180deg, #15163c 0%, #090b1e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 28px 86px rgba(139, 92, 246, .20),
    0 22px 70px rgba(0, 0, 0, .34);
}

.why-cyber-section .why-cyber-card {
  border-radius: 30px;
  padding: clamp(28px, 4vw, 46px);
}

.about-preview__inner {
  border-radius: 30px;
  padding: clamp(32px, 5vw, 58px);
}

@media (max-width: 820px) {
  .why-cyber-section .why-cyber-card,
  .about-preview__inner {
    border-radius: 24px;
    padding: 24px 20px;
  }
}

#services-overview .service-card h3 {
  margin-top: 0;
}

@media (min-width: 1061px) {
  .hero-grid--stats {
    grid-template-columns: minmax(0, .92fr) minmax(400px, .78fr);
    align-items: center;
  }

  .hero-grid--stats .hero-copy {
    max-width: 650px;
    align-self: center;
  }

  .hero-grid--stats .hero-copy h1 {
    font-size: clamp(3.15rem, 4.7vw, 4.45rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
  }

  .hero-grid--stats .homepage-threat-stats {
    align-self: center;
  }
}

.hero-grid--stats .homepage-threat-stats .section-kicker {
  font-size: clamp(.95rem, 1.05vw, 1.08rem);
  letter-spacing: .22em;
  margin-bottom: 14px;
}

.hero-grid--stats .homepage-threat-stats__heading h2 {
  font-size: clamp(1.12rem, 1.45vw, 1.48rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

@media (max-width: 1060px) {
  .hero-grid--stats .hero-copy h1 {
    font-size: clamp(2.6rem, 10vw, 4.1rem);
  }

  .hero-grid--stats .homepage-threat-stats .section-kicker {
    font-size: clamp(.9rem, 2.6vw, 1.02rem);
  }

  .hero-grid--stats .homepage-threat-stats__heading h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
}

.hero-section {
  min-height: auto;
  align-items: start;
  padding-top: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(58px, 7vw, 82px);
}

@media (min-width: 1061px) {
  .hero-grid--stats {
    align-items: start;
  }

  .hero-grid--stats .hero-copy,
  .hero-grid--stats .homepage-threat-stats {
    align-self: start;
  }

  .hero-grid--stats .homepage-threat-stats__panel {
    padding: clamp(20px, 2.4vw, 28px);
  }
}

.hero-grid--stats .homepage-threat-stats .section-kicker {
  font-size: clamp(1.24rem, 1.55vw, 1.62rem) !important;
  letter-spacing: .17em;
  margin-bottom: 12px;
}

.hero-grid--stats .homepage-threat-stats__heading h2 {
  font-size: clamp(.96rem, 1.15vw, 1.16rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.hero-grid--stats .homepage-threat-stat {
  padding: 15px 16px;
  gap: 13px;
}

.hero-grid--stats .homepage-threat-stat__accent {
  min-height: 70px;
}

.hero-grid--stats .homepage-threat-stat strong {
  font-size: clamp(1.55rem, 2.45vw, 2.22rem);
  margin-bottom: 6px;
}

.hero-grid--stats .homepage-threat-stat p {
  font-size: .84rem;
  line-height: 1.42;
}

.hero-grid--stats .homepage-threat-stats__grid {
  gap: 12px;
}

.hero-grid--stats .homepage-threat-stats__source {
  margin-top: 14px;
  font-size: .64rem;
  line-height: 1.45;
  letter-spacing: .16em;
}

@media (max-width: 1060px) {
  .hero-section {
    padding-top: 34px;
  }

  .hero-grid--stats .homepage-threat-stats .section-kicker {
    font-size: 1.1rem !important;
    letter-spacing: .13em;
  }

  .hero-grid--stats .homepage-threat-stat strong {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-grid--stats .homepage-threat-stat p {
    font-size: .9rem;
  }
}

body.home #services-overview .section-kicker,
body.page-about #services-overview .section-kicker,
body.home #plans-preview .section-kicker,
body.home .about-preview__heading .section-kicker {
  color: #99f6e4;
  font-size: clamp(1.24rem, 1.55vw, 1.62rem) !important;
  font-weight: 800;
  letter-spacing: .17em !important;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  body.home #services-overview .section-kicker,
  body.page-about #services-overview .section-kicker,
  body.home #plans-preview .section-kicker,
  body.home .about-preview__heading .section-kicker {
    font-size: 1.1rem !important;
    letter-spacing: .13em !important;
  }
}

body.home .hero-session-helper, body.home .hero-session-helper strong, body.home .hero-session-helper span, body.home .typing-line, body.home .typing-line__prefix, body.home .typing-line__dynamic, body.home .homepage-threat-stat p, body.home .why-cyber-card p, body.home #services-overview .service-card p, body.page-about #services-overview .service-card p, body.home #plans-preview .section-heading p, body.home #plans-preview .plan-card__price-period, body.home #plans-preview .plan-card__features li, body.home .about-preview__heading p{
  color: rgba(245, 247, 251, .92);
}

body.home .homepage-threat-stats__source {
  color: rgba(245, 247, 251, .72);
}

body.home #services-overview .service-card, body.page-about #services-overview .service-card, body.home #plans-preview .plan-card, body.home .why-cyber-section .why-cyber-card, body.home .about-preview__inner, body.home .homepage-threat-stats__panel, body.home .homepage-threat-stat{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(122, 111, 180, .42);
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, .12), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(139, 92, 246, .18), transparent 40%),
    linear-gradient(180deg, rgba(17, 23, 52, .78) 0%, rgba(8, 11, 26, .72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 22px 70px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.home #services-overview .service-card::before, body.page-about #services-overview .service-card::before, body.home #plans-preview .plan-card::before, body.home .why-cyber-section .why-cyber-card::before, body.home .about-preview__inner::before, body.home .homepage-threat-stats__panel::before, body.home .homepage-threat-stat::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: .26;
}

body.home #services-overview .service-card > *, body.page-about #services-overview .service-card > *, body.home #plans-preview .plan-card > *, body.home .why-cyber-section .why-cyber-card > *, body.home .about-preview__inner > *, body.home .homepage-threat-stats__panel > *, body.home .homepage-threat-stat > *{
  position: relative;
  z-index: 1;
}

body.home #services-overview .service-card:hover,
body.page-about #services-overview .service-card:hover,
body.home #plans-preview .plan-card:hover,
body.home .homepage-threat-stat:hover {
  border-color: rgba(34, 211, 238, .44);
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, .14), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(139, 92, 246, .22), transparent 40%),
    linear-gradient(180deg, rgba(20, 26, 58, .82) 0%, rgba(9, 13, 31, .76) 100%);
}

body.home #plans-preview .plan-card--featured {
  border-color: rgba(139, 92, 246, .62);
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 211, 238, .14), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(139, 92, 246, .28), transparent 42%),
    linear-gradient(180deg, rgba(21, 22, 60, .82) 0%, rgba(9, 11, 30, .78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 76px rgba(139, 92, 246, .14),
    0 18px 52px rgba(0, 0, 0, .24);
}

body.home #services-overview .service-card, body.page-about #services-overview .service-card, body.home #plans-preview .plan-card, body.home .why-cyber-section .why-cyber-card, body.home .about-preview__inner, body.home .homepage-threat-stats__panel, body.home .homepage-threat-stat{
  border-color: rgba(255, 255, 255, .12) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .038)),
    rgba(8, 11, 26, .34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 18px 60px rgba(0, 0, 0, .22) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
}

body.home #services-overview .service-card::before, body.page-about #services-overview .service-card::before, body.home #plans-preview .plan-card::before, body.home .why-cyber-section .why-cyber-card::before, body.home .about-preview__inner::before, body.home .homepage-threat-stats__panel::before, body.home .homepage-threat-stat::before{
  opacity: .16 !important;
}

body.home #services-overview .service-card:hover,
body.page-about #services-overview .service-card:hover,
body.home #plans-preview .plan-card:hover,
body.home .homepage-threat-stat:hover {
  border-color: rgba(34, 211, 238, .32) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05)),
    rgba(8, 11, 26, .40) !important;
}

body.home #plans-preview .plan-card--featured {
  border-color: rgba(139, 92, 246, .58) !important;
  background:
    linear-gradient(180deg, rgba(167, 139, 250, .12), rgba(255, 255, 255, .045)),
    rgba(9, 11, 30, .36) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .09),
    0 24px 76px rgba(139, 92, 246, .13),
    0 18px 60px rgba(0, 0, 0, .22) !important;
}

body.home #services-overview .service-card,
body.page-about #services-overview .service-card,
body.home #plans-preview .plan-card,
body.home .why-cyber-section .why-cyber-card,
body.home .about-preview__inner,
body.home .homepage-threat-stats__panel {
  text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
}

body.home .why-cyber-section .why-cyber-card {
  text-align: center;
}

body.home .why-cyber-section .why-cyber-card .section-kicker {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

body.home .why-cyber-section .why-cyber-card h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

body.home .why-cyber-card__intro {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

body.home .why-cyber-card__closing {
  margin-top: 26px;
  margin-bottom: 0;
  display: grid;
  gap: 6px;
  justify-items: center;
}

body.home .why-cyber-card__closing span {
  display: block;
}

body.home .why-cyber-card__cta {
  margin-top: 28px;
}

@media (max-width: 820px) {
  body.home .why-cyber-section .why-cyber-card h2 {
    margin-bottom: 18px;
  }

  body.home .why-cyber-card__intro {
    font-size: 1rem;
    line-height: 1.65;
  }
}

body.home #services-overview .section-heading h2,
body.page-about #services-overview .section-heading h2,
body.home #plans-preview .section-heading h2,
body.home .about-preview__heading h2 {
  font-size: clamp(1.55rem, 1.95vw, 2rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.055em !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 18px !important;
  text-align: center !important;
}

@media (max-width: 640px) {
  body.home #services-overview .section-heading h2,
  body.page-about #services-overview .section-heading h2,
  body.home #plans-preview .section-heading h2,
  body.home .about-preview__heading h2 {
    font-size: clamp(1.42rem, 6.2vw, 1.78rem) !important;
    line-height: 1.12 !important;
  }
}

body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
body.home .why-cyber-section .why-cyber-card .section-kicker,
body.home #services-overview .section-kicker,
body.page-about #services-overview .section-kicker,
body.home #plans-preview .section-kicker,
body.home .about-preview__heading .section-kicker {
  color: #99f6e4;
  font-size: clamp(1.24rem, 1.55vw, 1.62rem) !important;
  font-weight: 800;
  letter-spacing: .17em !important;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
  body.home .why-cyber-section .why-cyber-card .section-kicker,
  body.home #services-overview .section-kicker,
  body.page-about #services-overview .section-kicker,
  body.home #plans-preview .section-kicker,
  body.home .about-preview__heading .section-kicker {
    font-size: 1.1rem !important;
    letter-spacing: .13em !important;
  }
}

body.home .typing-line strong,
body.home .typing-line__dynamic strong[data-typing],
body.home .typing-cursor {
  color: #ffd166 !important;
}

body.home .typing-line strong,
body.home .typing-line__dynamic strong[data-typing] {
  text-shadow: 0 0 18px rgba(255, 209, 102, .22);
}

body.page-about #services-overview .card-grid--four,
body.home #services-overview .card-grid--four {
  align-items: stretch;
}

body.page-about #services-overview .service-card,
body.home #services-overview .service-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 1.6vw, 24px);
  min-height: clamp(390px, 30vw, 440px);
  padding: clamp(28px, 2.4vw, 34px);
}

body.page-about #services-overview .service-card h3,
body.home #services-overview .service-card h3 {
  min-height: 3.15em;
  margin: 0 !important;
  font-size: clamp(1.65rem, 2vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

body.page-about #services-overview .service-card p,
body.home #services-overview .service-card p {
  align-self: start;
  margin: 0 !important;
  font-size: clamp(1rem, 1.02vw, 1.08rem);
  line-height: 1.62;
  max-width: 31ch;
}

body.page-about #services-overview .service-card .card-link,
body.home #services-overview .service-card .card-link {
  align-self: end;
  margin-top: 0 !important;
}

@media (max-width: 1060px) {
  body.page-about #services-overview .service-card,
  body.home #services-overview .service-card {
    min-height: 360px;
  }

  body.page-about #services-overview .service-card h3,
  body.home #services-overview .service-card h3 {
    min-height: 2.3em;
  }

  body.page-about #services-overview .service-card p,
  body.home #services-overview .service-card p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  body.page-about #services-overview .service-card,
  body.home #services-overview .service-card {
    grid-template-rows: auto auto auto;
    min-height: auto;
    gap: 18px;
    padding: 24px 22px;
  }

  body.page-about #services-overview .service-card h3,
  body.home #services-overview .service-card h3 {
    min-height: 0;
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  body.page-about #services-overview .service-card .card-link,
  body.home #services-overview .service-card .card-link {
    margin-top: 6px !important;
  }
}

@media (min-width: 1061px) {
  body.page-about #services-overview .service-card,
  body.home #services-overview .service-card {
    grid-template-rows: auto auto auto;
    gap: 0;
    min-height: clamp(340px, 25vw, 385px);
    padding: clamp(26px, 2.2vw, 32px);
  }

  body.page-about #services-overview .service-card h3,
  body.home #services-overview .service-card h3 {
    min-height: 3.05em;
    margin: 0 0 clamp(22px, 1.6vw, 28px) !important;
  }

  body.page-about #services-overview .service-card p,
  body.home #services-overview .service-card p {
    min-height: 10.1rem;
    margin: 0 0 clamp(18px, 1.3vw, 24px) !important;
    line-height: 1.58;
  }

  body.page-about #services-overview .service-card .card-link,
  body.home #services-overview .service-card .card-link {
    align-self: start;
    margin-top: 0 !important;
  }
}

@media (min-width: 821px) and (max-width: 1060px) {
  body.page-about #services-overview .service-card,
  body.home #services-overview .service-card {
    grid-template-rows: auto auto auto;
    gap: 0;
    min-height: 330px;
  }

  body.page-about #services-overview .service-card h3,
  body.home #services-overview .service-card h3 {
    min-height: 2.2em;
    margin: 0 0 22px !important;
  }

  body.page-about #services-overview .service-card p,
  body.home #services-overview .service-card p {
    min-height: 7.6rem;
    margin: 0 0 20px !important;
    line-height: 1.56;
  }

  body.page-about #services-overview .service-card .card-link,
  body.home #services-overview .service-card .card-link {
    align-self: start;
    margin-top: 0 !important;
  }
}

@media (max-width: 820px) {
  body.page-about #services-overview .service-card,
  body.home #services-overview .service-card {
    grid-template-rows: auto auto auto;
    gap: 0;
  }

  body.page-about #services-overview .service-card h3,
  body.home #services-overview .service-card h3 {
    margin: 0 0 18px !important;
  }

  body.page-about #services-overview .service-card p,
  body.home #services-overview .service-card p {
    min-height: 0;
    margin: 0 0 18px !important;
  }

  body.page-about #services-overview .service-card .card-link,
  body.home #services-overview .service-card .card-link {
    align-self: start;
    margin-top: 0 !important;
  }
}

.plan-card--featured {
  padding-top: clamp(2.9rem, 3.5vw, 3.45rem);
}

.plan-card--featured .plan-card__badge {
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(78%, 360px);
}

@media (max-width: 820px) {
  .plan-card--featured {
    padding-top: 3.2rem;
  }

  .plan-card--featured .plan-card__badge {
    top: 14px;
    width: min(82%, 320px);
  }
}

#plans-preview .plan-grid,
.page-template-page-plans .plan-grid,
.page .plan-grid {
  align-items: stretch;
}

#plans-preview .plan-grid {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
}

#plans-preview .plan-card {
  padding-top: clamp(4.6rem, 5vw, 5.25rem) !important;
}

#plans-preview .plan-card--featured {
  padding-top: clamp(4.6rem, 5vw, 5.25rem) !important;
}

#plans-preview .plan-card__badge {
  top: clamp(1.35rem, 1.8vw, 1.65rem) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  width: min(72%, 340px);
  padding: .45rem 1.2rem;
  line-height: 1;
  text-align: center;
}

#plans-preview .plan-card__name {
  margin-top: 0 !important;
  margin-bottom: .15rem !important;
}

#plans-preview .plan-card__tagline {
  margin-bottom: 1.1rem !important;
}

@media (min-width: 821px) and (max-width: 1060px) {
  #plans-preview .plan-grid {
    margin-top: 2.4rem;
  }

  #plans-preview .plan-card,
  #plans-preview .plan-card--featured {
    padding-top: 4.75rem !important;
  }

  #plans-preview .plan-card__badge {
    top: 1.35rem !important;
    width: min(76%, 320px);
  }
}

@media (max-width: 820px) {
  #plans-preview .plan-grid {
    margin-top: 2rem;
  }

  #plans-preview .plan-card,
  #plans-preview .plan-card--featured {
    padding-top: 4.35rem !important;
  }

  #plans-preview .plan-card__badge {
    top: 1.2rem !important;
    width: min(82%, 300px);
  }
}

.plan-grid {
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 26px);
}

.plan-grid .plan-card,
.plan-grid .plan-card--featured,
#plans-preview .plan-card,
#plans-preview .plan-card--featured {
  display: grid !important;
  grid-template-rows: 2.35rem auto auto auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  row-gap: 0;
  padding: clamp(1.85rem, 2.55vw, 2.35rem) !important;
  min-height: 100%;
}

.plan-grid .plan-card__badge,
#plans-preview .plan-card__badge {
  grid-row: 1;
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  place-self: start center;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(74%, 320px);
  min-height: 2rem;
  margin: 0 !important;
  padding: .45rem 1.15rem;
  line-height: 1;
  text-align: center;
}

.plan-grid .plan-card__name,
#plans-preview .plan-card__name {
  grid-row: 2;
  align-self: start;
  margin: 0 0 .18rem !important;
}

.plan-grid .plan-card__tagline,
#plans-preview .plan-card__tagline {
  grid-row: 3;
  margin: 0 0 clamp(1.2rem, 2vw, 1.55rem) !important;
}

.plan-grid .plan-card__price,
#plans-preview .plan-card__price {
  grid-row: 4;
  margin: 0 0 .9rem !important;
}

.plan-grid .plan-card__cta,
#plans-preview .plan-card__cta {
  grid-row: 7;
  align-self: end;
  margin-top: auto;
}

@media (min-width: 821px) and (max-width: 1060px) {
  .plan-grid .plan-card,
  .plan-grid .plan-card--featured,
  #plans-preview .plan-card,
  #plans-preview .plan-card--featured {
    grid-template-rows: 2.25rem auto auto auto auto minmax(0, 1fr) auto;
    padding: 2rem !important;
  }

  .plan-grid .plan-card__badge,
  #plans-preview .plan-card__badge {
    width: min(78%, 300px);
  }
}

@media (max-width: 820px) {
  .plan-grid .plan-card,
  .plan-grid .plan-card--featured,
  #plans-preview .plan-card,
  #plans-preview .plan-card--featured {
    grid-template-rows: 2.15rem auto auto auto auto auto auto;
    padding: 1.55rem !important;
  }

  .plan-grid .plan-card__badge,
  #plans-preview .plan-card__badge {
    width: min(86%, 290px);
    min-height: 1.9rem;
  }
}

#plans-preview .plan-grid,
.plan-grid {
  overflow: visible;
  align-items: stretch;
  margin-top: clamp(3rem, 5vw, 4rem);
}

#plans-preview .plan-card,
.plan-grid .plan-card,
#plans-preview .plan-card--featured,
.plan-grid .plan-card--featured {
  position: relative;
  display: flex !important;
  flex-direction: column;
  overflow: visible !important;
  padding: clamp(2rem, 2.7vw, 2.5rem) !important;
  min-height: 100%;
}

#plans-preview .plan-card--featured .plan-card__badge,
.plan-grid .plan-card--featured .plan-card__badge {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: clamp(170px, 16vw, 215px);
  max-width: calc(100% - 48px);
  min-height: 44px;
  padding: .68rem 1.55rem;
  border-radius: 999px;
  margin: 0 !important;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: .02em;
  text-transform: none;
  color: #06101b;
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  box-shadow: 0 12px 32px rgba(34, 211, 238, .24), 0 10px 28px rgba(0, 0, 0, .22);
}

#plans-preview .plan-card__name,
.plan-grid .plan-card__name {
  margin: 0 0 .18rem !important;
}

#plans-preview .plan-card__tagline,
.plan-grid .plan-card__tagline {
  margin: 0 0 clamp(1.15rem, 2vw, 1.5rem) !important;
}

#plans-preview .plan-card__price,
.plan-grid .plan-card__price {
  margin: 0 0 .9rem !important;
}

#plans-preview .plan-card__cta,
.plan-grid .plan-card__cta {
  margin-top: auto;
}

@media (min-width: 821px) and (max-width: 1060px) {
  #plans-preview .plan-grid,
  .plan-grid {
    margin-top: 3.2rem;
  }

  #plans-preview .plan-card,
  .plan-grid .plan-card,
  #plans-preview .plan-card--featured,
  .plan-grid .plan-card--featured {
    padding: 2rem !important;
  }

  #plans-preview .plan-card--featured .plan-card__badge,
  .plan-grid .plan-card--featured .plan-card__badge {
    min-width: 190px;
    min-height: 42px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 820px) {
  #plans-preview .plan-grid,
  .plan-grid {
    margin-top: 3rem;
  }

  #plans-preview .plan-card,
  .plan-grid .plan-card,
  #plans-preview .plan-card--featured,
  .plan-grid .plan-card--featured {
    padding: 1.6rem !important;
  }

  #plans-preview .plan-card--featured .plan-card__badge,
  .plan-grid .plan-card--featured .plan-card__badge {
    min-width: 170px;
    min-height: 40px;
    padding: .6rem 1.25rem;
    max-width: calc(100% - 34px);
  }
}

html {
  scrollbar-gutter: stable;
}

body.home .hero-section,
body.home .typing-line,
body.home .typing-line__dynamic,
.ciphernet-backdrop {
  overflow-anchor: none;
}

body.home .typing-line {
  min-height: 3.1em;
}

body.home .typing-line__dynamic {
  min-height: 1.55em;
}

@media (max-width: 640px) {
  body.home .typing-line {
    min-height: 5.2em;
  }

  body.home .typing-line__dynamic {
    min-height: 3.15em !important;
  }
}

body.home .why-cyber-card__closing span:first-child,
#plans-preview .plan-card__tagline,
.plan-grid .plan-card__tagline {
  color: #ffd166 !important;
  text-shadow: 0 0 18px rgba(255, 209, 102, .22);
}

@media (max-width: 1060px) {
  #plans-preview .plan-card,
  .plan-grid .plan-card {
    order: 0 !important;
  }

  #plans-preview .plan-card--featured,
  .plan-grid .plan-card--featured {
    order: 0 !important;
  }
}

#plans-preview .plan-card__price,
.plan-grid .plan-card__price {
  display: flex;
  align-items: baseline;
  gap: .38rem;
  margin: 0 0 clamp(1rem, 1.6vw, 1.35rem) !important;
}

#plans-preview .plan-card__price-period,
.plan-grid .plan-card__price-period {
  margin-left: 0 !important;
}

#services-overview .service-card,
#plans-preview .plan-card,
.plan-grid .plan-card {
  transform: none !important;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease !important;
}

#services-overview .service-card:hover,
#services-overview .service-card:focus-within,
#plans-preview .plan-card:hover,
#plans-preview .plan-card:focus-within,
.plan-grid .plan-card:hover,
.plan-grid .plan-card:focus-within {
  transform: none !important;
}

#services-overview .service-card:hover,
#services-overview .service-card:focus-within,
#plans-preview .plan-card:hover,
#plans-preview .plan-card:focus-within {
  border-color: rgba(34, 211, 238, .44) !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 211, 238, .14), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(139, 92, 246, .22), transparent 40%),
    linear-gradient(180deg, #141a3a 0%, #090d1f 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 22px 70px rgba(0, 0, 0, .34) !important;
}

#plans-preview .plan-card--featured:hover,
#plans-preview .plan-card--featured:focus-within,
.plan-grid .plan-card--featured:hover,
.plan-grid .plan-card--featured:focus-within {
  transform: none !important;
  border-color: rgba(34, 211, 238, .46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 28px 86px rgba(139, 92, 246, .20),
    0 22px 70px rgba(0, 0, 0, .34) !important;
}

body {
  position: relative;
  background: var(--bg) !important;
}

body::before,
body::after {
  content: none !important;
  display: none !important;
}

.ciphernet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #050713;
}

.ciphernet-backdrop .ciphernet-shader-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 211, 238, .26), transparent 34%),
    radial-gradient(circle at 52% 44%, rgba(139, 92, 246, .16), transparent 48%),
    #050713;
}

.ciphernet-shader-bg.webgl-fallback {
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 211, 238, .28), transparent 30%),
    radial-gradient(circle at 52% 44%, rgba(139, 92, 246, .22), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 22%),
    #050713;
}

.ciphernet-backdrop__fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(5, 7, 19, 0) 0%, rgba(5, 7, 19, .12) 46%, rgba(5, 7, 19, .55) 100%),
    linear-gradient(180deg, rgba(5, 7, 19, .18), rgba(5, 7, 19, .34));
}

.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 100;
}

.hero-section,
.page-hero,
.section-dark {
  background: transparent !important;
}

.site-footer {
  background: rgba(3,5,14,.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 900px) {
  .ciphernet-backdrop .ciphernet-shader-bg {
    width: 100vw;
    height: 100vh;
  }

  .ciphernet-backdrop__fade {
    background:
      radial-gradient(circle at 50% 38%, rgba(5, 7, 19, 0) 0%, rgba(5, 7, 19, .16) 48%, rgba(5, 7, 19, .62) 100%),
      linear-gradient(180deg, rgba(5, 7, 19, .22), rgba(5, 7, 19, .42));
  }
}

:root {
  --cn-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cn-heading-line-height: 1.04;
  --cn-heading-letter-spacing: -0.055em;
  --cn-subheading-line-height: 1.12;
  --cn-body-line-height: 1.64;
  --cn-section-copy-max: 760px;
}

body,
button,
input,
textarea,
select {
  font-family: var(--cn-font-sans) !important;
}h1, h2, h3, h4, .site-brand__text, .plan-card__name, .footer-thin__heading{
  font-family: var(--cn-font-sans) !important;
  text-wrap: balance;
}

h1,
.hero-copy h1,
.page-hero h1,
.services-hero h1,
.contact-hero h1 {
  line-height: var(--cn-heading-line-height) !important;
  letter-spacing: var(--cn-heading-letter-spacing) !important;
}

h2, .section-heading h2, .services-intro-copy h2, .services-detail-section .section-heading h2, .services-cta-panel h2, .cta-panel h2, .contact-panel h2, .contact-info-card h2{
  line-height: var(--cn-subheading-line-height) !important;
  letter-spacing: -0.048em !important;
}h3, .plan-card__name, .service-card h3, .services-detail-card h3, .office-hours-card h3{
  line-height: 1.14 !important;
  letter-spacing: -0.035em !important;
}p, li, summary, .contact-intro, .contact-info-card > p, .services-detail-card p, .plan-card__features li, .service-card p, .footer-bottom p{
  line-height: var(--cn-body-line-height);
  text-wrap: pretty;
}

.section-heading,
.page-hero .section-heading {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.section-heading p,
.page-hero .section-heading p,
.cta-panel p,
.services-cta-panel p {
  max-width: var(--cn-section-copy-max);
  margin-left: auto;
  margin-right: auto;
}
.section-heading > :last-child, .page-hero .section-heading > :last-child, .cta-panel > :last-child, .contact-panel > :last-child, .sidebar-card > :last-child, .services-detail-card > :last-child{
  margin-bottom: 0;
}

.page-hero .narrow-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 920px;
}
.services-page .services-hero__inner, .hero-copy, .split-grid > div, .contact-panel, .sidebar-card, .services-detail-card, .plan-card, .service-card{
  text-align: left;
}

.cta-panel,
.final-cta .cta-panel,
.services-bottom-cta .services-cta-panel {
  text-align: center;
}
.card-grid, .plan-grid, .services-detail-grid, .contact-grid, .values-grid{
  align-items: stretch;
}
.service-card, .plan-card, .services-detail-card, .contact-panel, .sidebar-card{
  min-width: 0;
}
.service-card h3,
.plan-card__name,
.services-detail-card h3,
.office-hours-card h3 {
  font-size: clamp(1.22rem, 1.65vw, 1.58rem) !important;
  margin-bottom: .72rem !important;
}

.services-detail-card h2 {
  font-size: clamp(1.22rem, 1.65vw, 1.58rem) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.035em !important;
}

.contact-panel h2, .contact-info-card h2{
  font-size: clamp(1.58rem, 2.08vw, 2.12rem) !important;
}
.section-kicker,
.services-detail-card__label,
.plan-card__tagline,
.contact-info-label,
.footer-thin__heading {
  line-height: 1.18 !important;
  letter-spacing: .14em !important;
}
.hero-copy h1,
.hero-copy p,
.typing-line,
.hero-session-helper,
.page-hero h1,
.page-hero p,
.section-heading h2,
.section-heading p,
.service-card h3,
.service-card p,
.plan-card__name,
.plan-card__tagline,
.plan-card__price,
.plan-card__features li,
.services-detail-card h3,
.services-detail-card p,
.contact-panel h2,
.contact-panel p,
.contact-info-card h2,
.contact-info-card p,
.office-hours-card h3,
.office-hours-card p,
.footer-thin__heading,
.footer-thin__link {
  overflow-wrap: break-word;
}
.contact-info-item > div, .plan-card__features span{
  min-width: 0;
}

@media (min-width: 981px) {
  .section-heading + .card-grid, .section-heading + .plan-grid, .section-heading + .services-detail-grid{
    margin-top: clamp(2.25rem, 4vw, 3rem);
  }
}

@media (max-width: 820px) {
  h1,
  .hero-copy h1,
  .page-hero h1,
  .services-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.8rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.058em !important;
  }

  h2, .section-heading h2, .services-intro-copy h2, .contact-panel h2, .contact-info-card h2, .cta-panel h2, .services-cta-panel h2{
    font-size: clamp(1.72rem, 7.1vw, 2.55rem) !important;
    line-height: 1.1 !important;
  }

  .section-heading,
  .page-hero .section-heading,
  .page-hero .narrow-content {
    text-align: center !important;
  }
.services-page .services-hero__inner, .hero-copy, .split-grid > div, .contact-panel, .sidebar-card, .services-detail-card, .plan-card, .service-card{
    text-align: left;
  }

  .cta-row,
  .services-cta-panel__actions,
  .contact-form .btn,
  .plan-card__cta {
    justify-content: center;
  }
}

@media (max-width: 520px) {p,
li,
summary,
.contact-intro,
.contact-info-card > p,
.services-detail-card p,
.plan-card__features li {
    line-height: 1.56 !important;
  }
.section-kicker,
.services-detail-card__label,
.plan-card__tagline {
    letter-spacing: .11em !important;
  }
}

body.home .typing-line {
  max-width: 100% !important;
  overflow: visible !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

body.home .typing-line__prefix {
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

body.home .typing-line__dynamic {
  display: inline-flex !important;
  align-items: baseline !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 1.45em !important;
  line-height: inherit !important;
  font-size: calc(1em * var(--typing-fit-scale, 1)) !important;
  white-space: nowrap !important;
  overflow: visible !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
  vertical-align: baseline !important;
}

body.home .typing-line__dynamic strong[data-typing] {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  text-wrap: nowrap !important;
  hyphens: none !important;
  line-height: inherit !important;
}

body.home .typing-cursor {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
}

@media (max-width: 1060px) {
  body.home .typing-line__prefix {
    display: block !important;
    width: 100% !important;
    margin-right: 0 !important;
  }

  body.home .typing-line__dynamic {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  body.home .typing-line {
    min-height: 3.25em !important;
  }

  body.home .typing-line__dynamic {
    min-height: 1.4em !important;
  }
}

body.home .hero-section #homepage-threat-stats-title {
  color: #ffd166;
}

.service-card .card-link {
  color: #ffd166 !important;
}

.service-card .card-link:hover,
.service-card .card-link:focus-visible {
  color: #ffd166 !important;
  text-shadow: 0 0 18px rgba(255, 209, 102, .24);
}

.contact-section .contact-panel,
.contact-section .contact-sidebar .sidebar-card {
  border-color: rgba(255, 255, 255, .12) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .038)),
    rgba(8, 11, 26, .34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 18px 60px rgba(0, 0, 0, .22) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
}

.services-page .section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #99f6e4;
  font-size: clamp(1.08rem, 1.28vw, 1.32rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.services-page .services-hero h1, .services-page .services-intro-copy h2, .services-page .services-detail-section .section-heading h2, .services-page .services-cta-panel h2{
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.services-page .services-detail-card h3{
  line-height: 1.08;
  letter-spacing: -0.055em;
}

@media (max-width: 640px) {
  .services-page .section-kicker {
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .services-page .services-hero h1, .services-page .services-intro-copy h2, .services-page .services-detail-section .section-heading h2, .services-page .services-cta-panel h2{
    margin-bottom: 16px;
  }
}.plan-card, .services-detail-card, .sidebar-card, .values-grid > div, .contact-panel, body.home #services-overview .service-card, body.page-about #services-overview .service-card, body.home #plans-preview .plan-card{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .038)),
    rgba(8, 10, 20, .62) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  border: 1px solid rgba(255, 255, 255, .09) !important;
}/* Hover state — slightly brighter surface,
same glass character */
.plan-card:hover, .services-detail-card:hover, .sidebar-card:hover, .values-grid > div:hover, .contact-panel:hover, body.home #services-overview .service-card:hover, body.page-about #services-overview .service-card:hover, body.home #plans-preview .plan-card:hover{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05)),
    rgba(8, 10, 20, .62) !important;
}

.services-page .services-detail-card__icon {
  display: none !important;
}

:root {
  --ciphernet-reference-card-bg:
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .038)),
    rgba(8, 10, 20, .78);
  --ciphernet-reference-card-bg-hover:
    linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .05)),
    rgba(8, 10, 20, .80);
  --ciphernet-reference-card-border: rgba(34, 211, 238, .24);
  --ciphernet-reference-card-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .075),
    0 18px 60px rgba(0, 0, 0, .22);
  --ciphernet-reference-card-blur: blur(12px) saturate(120%);
}/* Standard site content cards/panels checked against the reference card. */
.service-card, .values-grid > div, .sidebar-card, .contact-panel, .cta-panel, .plan-card, body.home #services-overview .service-card, body.page-about #services-overview .service-card, body.home #plans-preview .plan-card, .services-page .services-detail-card, .services-page .services-cta-panel{
  background: var(--ciphernet-reference-card-bg) !important;
  border: 1px solid var(--ciphernet-reference-card-border) !important;
  box-shadow: var(--ciphernet-reference-card-shadow) !important;
  backdrop-filter: var(--ciphernet-reference-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-reference-card-blur) !important;
}
.service-card:hover, .values-grid > div:hover, .sidebar-card:hover, .contact-panel:hover, .cta-panel:hover, .plan-card:hover, body.home #services-overview .service-card:hover, body.page-about #services-overview .service-card:hover, body.home #plans-preview .plan-card:hover, .services-page .services-detail-card:hover, .services-page .services-detail-card:focus-within, .services-page .services-cta-panel:hover{
  background: var(--ciphernet-reference-card-bg-hover) !important;
  border-color: rgba(34, 211, 238, .34) !important;
}

/* The services summary is one panel with rows; rows should not create a separate glass layer. */

/* Keep featured plan emphasis but align its surface glass level with the reference card. */
.plan-card--featured {
  border-color: rgba(139, 92, 246, .55) !important;
}

.plan-card--featured:hover {
  border-color: rgba(139, 92, 246, .70) !important;
}

.homepage-threat-stats__panel,
.homepage-threat-stat,
.why-cyber-card,
.about-preview__inner {
  background: var(--ciphernet-reference-card-bg) !important;
  border: 1px solid var(--ciphernet-reference-card-border) !important;
  box-shadow: var(--ciphernet-reference-card-shadow) !important;
  backdrop-filter: var(--ciphernet-reference-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-reference-card-blur) !important;
}

.homepage-threat-stats__panel:hover,
.homepage-threat-stat:hover,
.why-cyber-card:hover,
.about-preview__inner:hover {
  background: var(--ciphernet-reference-card-bg-hover) !important;
  border-color: rgba(34, 211, 238, .34) !important;
}

.homepage-threat-stats__panel {
  border-radius: 30px;
}

.homepage-threat-stats__panel::before {
  opacity: 0 !important;
}

.homepage-threat-stat {
  border-radius: 22px;
}

.why-cyber-card,
.about-preview__inner {
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 58px);
}

@media (max-width: 640px) {
  .why-cyber-card,
  .about-preview__inner {
    padding: 24px;
  }
}

:root {
  --ciphernet-card-surface:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(8, 10, 20, .78);
  --ciphernet-card-border: rgba(34, 211, 238, .24);
  --ciphernet-card-border-hover: rgba(34, 211, 238, .34);
  --ciphernet-card-shadow: 0 18px 60px rgba(0,0,0,.22);
  --ciphernet-card-blur: blur(12px) saturate(120%);
}body .service-card, body .values-grid > div, body .sidebar-card, body .contact-panel, body .cta-panel, body .plan-card, body .office-hours-card{
  background: var(--ciphernet-card-surface) !important;
  border-color: var(--ciphernet-card-border) !important;
  box-shadow: var(--ciphernet-card-shadow) !important;
  backdrop-filter: var(--ciphernet-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-card-blur) !important;
}


body.home .homepage-threat-stats__panel,
body.home .homepage-threat-stat,
body.home .why-cyber-section .why-cyber-card,
body.home .about-preview .about-preview__inner,
body.home #services-overview .service-card,
body.page-about #services-overview .service-card,
body.home .plans-preview .plan-card,
body.home .final-cta .cta-panel {
  background: var(--ciphernet-card-surface) !important;
  border-color: var(--ciphernet-card-border) !important;
  box-shadow: var(--ciphernet-card-shadow) !important;
  backdrop-filter: var(--ciphernet-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-card-blur) !important;
}


body.home .homepage-threat-stats__panel::before,
body.home .homepage-threat-stats__panel::after,
body.home .why-cyber-section .why-cyber-card::before,
body.home .why-cyber-section .why-cyber-card::after,
body.home .about-preview .about-preview__inner::before,
body.home .about-preview .about-preview__inner::after {
  opacity: 0 !important;
}

/* Services page panels/cards, including summary, detail, process, inner, and CTA panels. */
body .services-page .services-detail-card, body .services-page .services-cta-panel{
  background: var(--ciphernet-card-surface) !important;
  border-color: var(--ciphernet-card-border) !important;
  box-shadow: var(--ciphernet-card-shadow) !important;
  backdrop-filter: var(--ciphernet-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-card-blur) !important;
}

/* Contact page panels. */
body .contact-grid .contact-panel{
  background: var(--ciphernet-card-surface) !important;
  border-color: var(--ciphernet-card-border) !important;
  box-shadow: var(--ciphernet-card-shadow) !important;
  backdrop-filter: var(--ciphernet-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-card-blur) !important;
}/* Hover states use the same cyan lift across supported cards without changing movement/layout. */
body .service-card:hover, body .plan-card:hover, body .services-page .services-detail-card:hover, body .services-page .services-detail-card:focus-within, body .contact-panel:hover, body .sidebar-card:hover{
  border-color: var(--ciphernet-card-border-hover) !important;
}

/* Keep lower-intensity inner row hover, but still within the same card family. */

:root {
  --ciphernet-unified-card-background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(8, 10, 20, .78);
  --ciphernet-unified-card-border: rgba(34, 211, 238, .24);
  --ciphernet-unified-card-border-hover: rgba(34, 211, 238, .34);
  --ciphernet-unified-card-shadow: 0 18px 60px rgba(0,0,0,.22);
  --ciphernet-unified-card-blur: blur(12px) saturate(120%);
}body .service-card, body .sidebar-card, body .contact-panel, body .office-hours-card, body .cta-panel, body .plan-card, body .values-grid > div, body .card, body [class$="-card"], body [class*="-card "], body [class$="-panel"], body [class*="-panel "]{
  background: var(--ciphernet-unified-card-background) !important;
  border-color: var(--ciphernet-unified-card-border) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
}


body.home .homepage-threat-stats__panel,
body.home .homepage-threat-stat,
body.home .why-cyber-section .why-cyber-card,
body.home .about-preview .about-preview__inner,
body.home #services-overview .service-card,
body.page-about #services-overview .service-card,
body.home .plans-preview .plan-card,
body.home .final-cta .cta-panel {
  background: var(--ciphernet-unified-card-background) !important;
  border-color: var(--ciphernet-unified-card-border) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
}

/* Services page card/panel stack. */
body .services-page .services-detail-card, body .services-page .services-cta-panel{
  background: var(--ciphernet-unified-card-background) !important;
  border-color: var(--ciphernet-unified-card-border) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
}

/* Preserve list-row structure while keeping the same surface colour family. */


body.home .homepage-threat-stats__panel::before, body.home .homepage-threat-stats__panel::after, body.home .homepage-threat-stat::before, body.home .homepage-threat-stat::after, body.home .why-cyber-section .why-cyber-card::before, body.home .why-cyber-section .why-cyber-card::after, body.home .about-preview .about-preview__inner::before, body.home .about-preview .about-preview__inner::after, body .services-page .services-detail-card::after, body .cta-panel::before, body .cta-panel::after, body [class$="-card"]::before, body [class$="-card"]::after, body [class$="-panel"]::before, body [class$="-panel"]::after{
  opacity: 0 !important;
}body .service-card:hover, body .sidebar-card:hover, body .contact-panel:hover, body .plan-card:hover, body .services-page .services-detail-card:hover, body .services-page .services-detail-card:focus-within, body [class$="-card"]:hover, body [class$="-panel"]:hover{
  border-color: var(--ciphernet-unified-card-border-hover) !important;
}

body .services-page .services-detail-card:hover,
body .services-page .services-detail-card:focus-within {
  border-color: rgba(34, 211, 238, .32) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05)),
    rgba(8, 11, 26, .40) !important;
}

/* Same design, slightly clearer row hover for the services summary list. */
/* Do not treat tiny inline labels/badges/buttons as panels even if their class names contain "card" by accident. */
body .contact-section .contact-grid--main > .contact-panel,
body .contact-section .contact-grid--main .contact-sidebar > .sidebar-card,
body .contact-section .contact-grid--main .contact-sidebar > .contact-info-card,
body .contact-section .contact-grid--main .contact-sidebar > .office-hours-card {
  background: var(--ciphernet-unified-card-background) !important;
  border: 1px solid var(--ciphernet-unified-card-border) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
}

body .contact-section .contact-grid--main > .contact-panel:hover,
body .contact-section .contact-grid--main .contact-sidebar > .sidebar-card:hover,
body .contact-section .contact-grid--main .contact-sidebar > .contact-info-card:hover,
body .contact-section .contact-grid--main .contact-sidebar > .office-hours-card:hover {
  border-color: var(--ciphernet-unified-card-border-hover) !important;
}

/* Remove any leftover decorative/lightening pseudo-overlays on the right contact cards. */
body .contact-section .contact-grid--main .contact-sidebar > .sidebar-card::before,
body .contact-section .contact-grid--main .contact-sidebar > .sidebar-card::after,
body .contact-section .contact-grid--main .contact-sidebar > .contact-info-card::before,
body .contact-section .contact-grid--main .contact-sidebar > .contact-info-card::after,
body .contact-section .contact-grid--main .contact-sidebar > .office-hours-card::before,
body .contact-section .contact-grid--main .contact-sidebar > .office-hours-card::after {
  opacity: 0 !important;
}

:root {
  --ciphernet-unified-card-background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(8, 10, 20, .78);
  --ciphernet-unified-card-background-hover:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    rgba(8, 10, 20, .84);
  --ciphernet-unified-card-border: rgba(34, 211, 238, .24);
  --ciphernet-unified-card-border-hover: rgba(34, 211, 238, .34);
  --ciphernet-unified-card-shadow: 0 18px 60px rgba(0,0,0,.22);
  --ciphernet-unified-card-blur: blur(12px) saturate(120%);

  
  --ciphernet-reference-card-bg: var(--ciphernet-unified-card-background);
  --ciphernet-reference-card-bg-hover: var(--ciphernet-unified-card-background-hover);
  --ciphernet-reference-card-border: var(--ciphernet-unified-card-border);
  --ciphernet-reference-card-shadow: var(--ciphernet-unified-card-shadow);
  --ciphernet-reference-card-blur: var(--ciphernet-unified-card-blur);
  --ciphernet-card-surface: var(--ciphernet-unified-card-background);
  --ciphernet-card-border: var(--ciphernet-unified-card-border);
  --ciphernet-card-border-hover: var(--ciphernet-unified-card-border-hover);
  --ciphernet-card-shadow: var(--ciphernet-unified-card-shadow);
  --ciphernet-card-blur: var(--ciphernet-unified-card-blur);
}/* Final explicit coverage for remaining panels/cards missed by class-name shape or table markup. */
body .emergency-contact__panel, body .plan-compare__table, body .plan-compare, body.home #plans-preview .plan-card, body.home #plans-preview .plan-card--featured, body.home #services-overview .service-card, body.page-about #services-overview .service-card, body .plan-grid .plan-card, body .plan-grid .plan-card--featured{
  background: var(--ciphernet-unified-card-background) !important;
  border: 1px solid var(--ciphernet-unified-card-border) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
}body .emergency-contact__panel:hover, body .plan-compare__table:hover, body.home #plans-preview .plan-card:hover, body.home #plans-preview .plan-card--featured:hover, body.home #services-overview .service-card:hover, body.page-about #services-overview .service-card:hover, body .plan-grid .plan-card:hover, body .plan-grid .plan-card--featured:hover{
  background: var(--ciphernet-unified-card-background-hover) !important;
  border-color: var(--ciphernet-unified-card-border-hover) !important;
}/* Keep decorative/functional sub-elements from inheriting a card surface. */
body .contact-info-icon{
  background: var(--ciphernet-unified-card-background) !important;
  border: 1px solid var(--ciphernet-unified-card-border) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
}

.contact-hero .section-kicker {
  display: inline-block !important;
  margin-bottom: 18px !important;
  color: #99f6e4 !important;
  font-size: clamp(1.08rem, 1.28vw, 1.32rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .18em !important;
  line-height: 1.2 !important;
}

@media (max-width: 640px) {
  .contact-hero .section-kicker {
    margin-bottom: 14px !important;
    font-size: 1rem !important;
  }
}

.contact-hero .section-heading h1 {
  margin-bottom: 20px !important;
  font-size: clamp(2.1rem, 3.2vw, 3.15rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.055em !important;
  font-weight: 800 !important;
}

.contact-hero .section-heading p {
  color: #f8fafc !important;
}

@media (max-width: 640px) {
  .contact-hero .section-heading h1 {
    margin-bottom: 16px !important;
  }
}

body .contact-hero .section-heading .section-kicker {
  display: inline-block !important;
  color: #99f6e4 !important;
  font-size: clamp(1.24rem, 1.55vw, 1.62rem) !important;
  font-weight: 800 !important;
  letter-spacing: .17em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  text-align: center !important;
}

body .contact-hero .section-heading h1 {
  font-size: clamp(1.55rem, 1.95vw, 2rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.055em !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 18px !important;
  text-align: center !important;
}

body .contact-hero .section-heading p {
  color: #f8fafc !important;
}

@media (max-width: 640px) {
  body .contact-hero .section-heading .section-kicker {
    font-size: 1.1rem !important;
    letter-spacing: .13em !important;
  }

  body .contact-hero .section-heading h1 {
    font-size: clamp(1.42rem, 6.2vw, 1.78rem) !important;
    line-height: 1.12 !important;
  }
}

:root {
  --cn-label-font-size: clamp(1.24rem, 1.55vw, 1.62rem);
  --cn-label-font-size-mobile: 1.1rem;
  --cn-label-letter-spacing: .17em;
  --cn-label-letter-spacing-mobile: .13em;
  --cn-label-line-height: 1.15;
  --cn-label-margin-bottom: 16px;

  --cn-section-heading-font-size: clamp(1.55rem, 1.95vw, 2rem);
  --cn-section-heading-font-size-mobile: clamp(1.42rem, 6.2vw, 1.78rem);
  --cn-section-heading-line-height: 1.12;
  --cn-section-heading-letter-spacing: -0.055em;
  --cn-section-heading-margin-bottom: 18px;

  --cn-card-heading-font-size: clamp(1.22rem, 1.65vw, 1.58rem);
  --cn-card-heading-line-height: 1.12;
  --cn-card-heading-letter-spacing: -0.045em;

  --cn-body-subheading-color: #f8fafc;
}

/* 1) All section/page labels/kickers. */
body .section-kicker, body.home .hero-grid--stats .homepage-threat-stats .section-kicker, body.home .why-cyber-section .why-cyber-card .section-kicker, body.home #services-overview .section-kicker, body.page-about #services-overview .section-kicker, body.home #plans-preview .section-kicker, body.home .about-preview__heading .section-kicker, body .services-page .section-kicker, body .contact-hero .section-heading .section-kicker, body .page-hero .section-heading .section-kicker, body .page-hero .narrow-content .section-kicker, body .cta-panel .section-kicker, body .sidebar-card .section-kicker{
  display: inline-block !important;
  color: #99f6e4 !important;
  font-size: var(--cn-label-font-size) !important;
  font-weight: 800 !important;
  letter-spacing: var(--cn-label-letter-spacing) !important;
  line-height: var(--cn-label-line-height) !important;
  text-transform: uppercase !important;
  margin-bottom: var(--cn-label-margin-bottom) !important;
}/* 2) Standard page/section headings and page hero h1s,
excluding the homepage main marketing hero. */
body:not(.home) .page-hero h1, body:not(.home) .page-hero .section-heading h1, body:not(.home) .page-hero .narrow-content h1, body .contact-hero .section-heading h1, body .services-page .services-hero h1, body .section-heading h2, body .why-cyber-card h2, body.home .why-cyber-section .why-cyber-card h2, body.home #services-overview .section-heading h2, body.page-about #services-overview .section-heading h2, body.home #plans-preview .section-heading h2, body.home .about-preview__heading h2, body.home .homepage-threat-stats__heading h2, body .services-intro-copy h2, body .services-detail-section .section-heading h2, body .services-cta-panel h2, body .cta-panel h2, body .emergency-contact__panel h2{
  font-size: var(--cn-section-heading-font-size) !important;
  font-weight: 800 !important;
  line-height: var(--cn-section-heading-line-height) !important;
  letter-spacing: var(--cn-section-heading-letter-spacing) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: var(--cn-section-heading-margin-bottom) !important;
}

/* Keep standard centered section/page headings centered, while cards and split layouts stay left-aligned. */
body .section-heading h1,
body .section-heading h2,
body .page-hero .section-heading h1,
body .page-hero .section-heading h2,
body.home .why-cyber-section .why-cyber-card h2,
body.home #services-overview .section-heading h2,
body.page-about #services-overview .section-heading h2,
body.home #plans-preview .section-heading h2,
body.home .about-preview__heading h2,
body.home .homepage-threat-stats__heading h2,
body .contact-hero .section-heading h1 {
  text-align: center !important;
}/* Left-aligned content headings that should share size but not centering. */
body .services-page .services-hero h1, body .services-intro-copy h2, body .emergency-contact__panel h2{
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* CTA panels intentionally center their heading/content. */
body .cta-panel h2,
body .services-cta-panel h2,
body .final-cta .cta-panel h2 {
  text-align: center !important;
}/* 3) Card/panel headings: consistent smaller heading system. */
body .service-card h3, body .plan-card__name, body .services-detail-card h3, body .contact-panel h2, body .contact-info-card h2, body .office-hours-card h3, body .sidebar-card h3{
  font-size: var(--cn-card-heading-font-size) !important;
  font-weight: 800 !important;
  line-height: var(--cn-card-heading-line-height) !important;
  letter-spacing: var(--cn-card-heading-letter-spacing) !important;
}

/* 4) Hero/section body subtitles: consistent readable white where they act as page intro/sub-heading text. */
body:not(.home) .page-hero .section-heading p,
body:not(.home) .page-hero .narrow-content p,
body .contact-hero .section-heading p,
body .section-heading p,
body.home .why-cyber-card__intro,
body.home .about-preview__heading p,
body .services-hero p,
body .services-intro-copy p {
  color: var(--cn-body-subheading-color) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem) !important;
  line-height: 1.72 !important;
}

/* Preserve the deliberately yellow threat snapshot line while standardising its size/weight above. */
body.home .homepage-threat-stats__heading h2 {
  color: #ffd166 !important;
}

/* Preserve homepage main hero as the large marketing headline, not the section-heading system. */
body.home .hero-copy h1,
body.home .hero-copy h1 span,
body.home #hero-title {
  text-align: left !important;
}

/* Mobile responsive heading contract. */
@media (max-width: 640px) {
  body .section-kicker,
  body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
  body.home .why-cyber-section .why-cyber-card .section-kicker,
  body.home #services-overview .section-kicker,
  body.page-about #services-overview .section-kicker,
  body.home #plans-preview .section-kicker,
  body.home .about-preview__heading .section-kicker,
  body .services-page .section-kicker,
  body .contact-hero .section-heading .section-kicker,
  body .page-hero .section-heading .section-kicker,
  body .page-hero .narrow-content .section-kicker {
    font-size: var(--cn-label-font-size-mobile) !important;
    letter-spacing: var(--cn-label-letter-spacing-mobile) !important;
  }

  body:not(.home) .page-hero h1, body:not(.home) .page-hero .section-heading h1, body:not(.home) .page-hero .narrow-content h1, body .contact-hero .section-heading h1, body .services-page .services-hero h1, body .section-heading h2, body .why-cyber-card h2, body.home .why-cyber-section .why-cyber-card h2, body.home #services-overview .section-heading h2, body.page-about #services-overview .section-heading h2, body.home #plans-preview .section-heading h2, body.home .about-preview__heading h2, body.home .homepage-threat-stats__heading h2, body .services-intro-copy h2, body .services-detail-section .section-heading h2, body .services-cta-panel h2, body .cta-panel h2, body .emergency-contact__panel h2{
    font-size: var(--cn-section-heading-font-size-mobile) !important;
    line-height: var(--cn-section-heading-line-height) !important;
  }
}

.services-intro-grid {
  align-items: stretch !important;
}

body .services-page .services-hero__inner {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  max-width: 1180px !important;
}

body .services-page .services-hero__inner .section-kicker {
  display: inline-block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body .services-page .services-hero__inner h1,
body .services-page .services-hero h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body .services-page .services-hero__inner p,
body .services-page .services-hero p {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.services-snapshot-panel {
  display: grid;
  gap: 20px;
  align-self: stretch;
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid var(--ciphernet-unified-card-border) !important;
  border-radius: var(--radius);
  background: var(--ciphernet-unified-card-background) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  overflow: hidden;
}

.services-snapshot-panel > .section-kicker {
  margin-bottom: 2px !important;
}

.services-snapshot-panel__grid {
  display: grid;
  gap: 18px;
}

.services-snapshot-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 150px; padding: clamp(20px, 2.4vw, 26px);
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--ciphernet-unified-card-border) !important;
  border-radius: 22px;
  background: var(--ciphernet-unified-card-background) !important;
  box-shadow: var(--ciphernet-unified-card-shadow) !important;
  backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  -webkit-backdrop-filter: var(--ciphernet-unified-card-blur) !important;
  transition: border-color .2s ease, background .2s ease;
}

.services-snapshot-item:hover,
.services-snapshot-item:focus-visible {
  border-color: var(--ciphernet-unified-card-border-hover) !important;
  background: var(--ciphernet-unified-card-background-hover) !important;
  outline: none;
}

body .services-page .services-snapshot-item:hover,
body .services-page .services-snapshot-item:focus-visible {
  border-color: rgba(34, 211, 238, .32) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05)),
    rgba(8, 11, 26, .40) !important;
}

.services-snapshot-item__number {
  color: #99f6e4;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.15;
}

.services-snapshot-item__content {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.services-snapshot-item strong {
  display: block;
  color: var(--text);
  font-size: var(--cn-card-heading-font-size, clamp(1.22rem, 1.65vw, 1.58rem)) !important;
  font-weight: 800 !important;
  line-height: var(--cn-card-heading-line-height, 1.12) !important;
  letter-spacing: var(--cn-card-heading-letter-spacing, -0.045em) !important;
}

.services-snapshot-item em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.56;
}

@media (max-width: 1060px) {
  .services-snapshot-panel {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .services-snapshot-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .services-snapshot-item {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }
}

body .services-page .services-snapshot-panel {
  gap: 14px !important;
  padding: clamp(20px, 2.3vw, 28px) !important;
  border-radius: 28px !important;
  max-width: 760px;
  align-self: center;
}

body .services-page .services-snapshot-panel > .section-kicker {
  margin-bottom: 0 !important;
  font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
  letter-spacing: .16em !important;
}

body .services-page .services-snapshot-panel__grid {
  gap: 12px !important;
}

body .services-page .services-snapshot-item {
  grid-template-columns: 48px minmax(0, 1fr) !important;
  gap: 14px !important;
  min-height: 92px !important;
  padding: 16px 18px !important;
  border-radius: 20px !important;
  align-items: center !important;
}

body .services-page .services-snapshot-item__number {
  font-size: clamp(.86rem, .96vw, .98rem) !important;
  letter-spacing: .14em !important;
}

body .services-page .services-snapshot-item__content {
  gap: 5px !important;
}

body .services-page .services-snapshot-item strong {
  font-size: clamp(1.02rem, 1.24vw, 1.18rem) !important;
  line-height: 1.12 !important;
}

body .services-page .services-snapshot-item em {
  font-size: clamp(.92rem, 1.02vw, 1rem) !important;
  line-height: 1.42 !important;
}

@media (max-width: 1060px) {
  body .services-page .services-snapshot-panel {
    max-width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 700px) {
  body .services-page .services-snapshot-panel {
    padding: 18px !important;
    gap: 12px !important;
    border-radius: 24px !important;
  }

  body .services-page .services-snapshot-panel__grid {
    gap: 10px !important;
  }

  body .services-page .services-snapshot-item {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    min-height: 84px !important;
    padding: 14px 15px !important;
    border-radius: 18px !important;
  }

  body .services-page .services-snapshot-item strong {
    font-size: 1rem !important;
  }

  body .services-page .services-snapshot-item em {
    font-size: .92rem !important;
  }
}

body .services-page .services-hero {
  padding-bottom: clamp(26px, 3.2vw, 42px) !important;
}

body .services-page .services-intro-section {
  padding-top: clamp(26px, 3.2vw, 42px) !important;
}

body .services-page .services-snapshot-item__number {
  color: #ffd166 !important;
  text-shadow: 0 0 18px rgba(255, 209, 102, .22);
}

@media (max-width: 700px) {
  body .services-page .services-hero {
    padding-bottom: 24px !important;
  }

  body .services-page .services-intro-section {
    padding-top: 28px !important;
  }
}

body .services-page .services-hero {
  padding-top: clamp(42px, 5vw, 68px) !important;
  padding-bottom: clamp(18px, 2.4vw, 30px) !important;
}

body .services-page .services-intro-section {
  padding-top: clamp(18px, 2.4vw, 30px) !important;
}

@media (max-width: 700px) {
  body .services-page .services-hero {
    padding-top: 34px !important;
    padding-bottom: 18px !important;
  }

  body .services-page .services-intro-section {
    padding-top: 20px !important;
  }
}

body .services-page .services-detail-card__top {
  justify-content: flex-start !important;
}

body .services-page .services-detail-card__body {
  grid-template-columns: 1fr !important;
}

:root {
  --radius: 18px;
  --radius-sm: 11px;
  --container: 1080px;
  --shadow: 0 20px 54px rgba(0, 0, 0, .32);
}

body {
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.045em;
}

h1 { font-size: clamp(2.35rem, 5vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.15vw, 3rem); }
h3 { font-size: clamp(1.12rem, 1.75vw, 1.55rem); }

.container {
  width: min(var(--container), calc(100% - 48px));
}

.header-inner {
  gap: 18px;
  min-height: 68px;
}

.site-brand {
  gap: 10px;
}

.site-brand__logo-mark {
  width: 38px;
  height: 44px;
}

.site-brand__text {
  font-size: 1.18rem;
}

.custom-logo {
  max-width: 160px;
  max-height: 52px;
}

.primary-menu {
  gap: 20px;
}

.primary-menu a {
  font-size: .9rem;
}

.btn {
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  gap: 8px;
  font-weight: 760;
}

.cta-row {
  gap: 10px;
  margin-top: 22px;
}

.section {
  padding: clamp(52px, 6vw, 74px) 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  font-size: 1rem;
  line-height: 1.58;
}

.section-kicker {
  font-size: .72rem;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.section-action {
  margin-top: 24px;
}

.hero-section {
  padding-top: clamp(24px, 3.4vw, 38px) !important;
  padding-bottom: clamp(42px, 5.4vw, 62px) !important;
}

.hero-grid,
.hero-grid--stats {
  gap: clamp(28px, 4vw, 48px) !important;
}

.hero-copy,
.hero-grid--stats .hero-copy {
  max-width: 600px !important;
}

.hero-copy h1,
.hero-grid--stats .hero-copy h1,
.services-hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 4.15vw, 3.85rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.055em !important;
}
.services-hero p,
.page-hero p {
  font-size: clamp(.98rem, 1.12vw, 1.08rem) !important;
  line-height: 1.58 !important;
}

.typing-line {
  margin-top: 18px !important;
  font-size: clamp(.98rem, 1.05vw, 1.08rem) !important;
}

.hero-session-helper {
  margin-top: 14px !important;
  font-size: clamp(.92rem, 1vw, 1rem) !important;
  line-height: 1.48 !important;
}

.hero-session-helper strong {
  font-size: clamp(1rem, 1.12vw, 1.12rem) !important;
}

.hero-section .cta-row .btn-cyber-assessment,
.hero-section .cta-row .btn-ai-discovery {
  min-width: 218px !important;
}

.hero-grid--stats {
  grid-template-columns: minmax(0, .92fr) minmax(320px, .68fr) !important;
}

.hero-grid--stats .homepage-threat-stats {
  width: min(100%, 430px) !important;
}

.homepage-threat-stats__panel,
.hero-grid--stats .homepage-threat-stats__panel {
  padding: clamp(17px, 2vw, 22px) !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 46px rgba(0, 0, 0, .22) !important;
}

.hero-grid--stats .homepage-threat-stats .section-kicker,
body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
body.home .why-cyber-section .why-cyber-card .section-kicker,
body.home #services-overview .section-kicker,
body.page-about #services-overview .section-kicker,
body.home #plans-preview .section-kicker,
body.home .about-preview__heading .section-kicker {
  font-size: clamp(.82rem, .9vw, .96rem) !important;
  letter-spacing: .13em !important;
  margin-bottom: 10px !important;
}

.hero-grid--stats .homepage-threat-stats__heading {
  margin-bottom: 13px !important;
}

.hero-grid--stats .homepage-threat-stats__heading h2 {
  font-size: clamp(.92rem, 1.08vw, 1.08rem) !important;
  line-height: 1.22 !important;
}

.hero-grid--stats .homepage-threat-stats__grid {
  gap: 9px !important;
}

.hero-grid--stats .homepage-threat-stat {
  padding: 12px 13px !important;
  gap: 11px !important;
  grid-template-columns: 4px minmax(0, 1fr) !important;
  border-radius: 16px !important;
}

.hero-grid--stats .homepage-threat-stat__accent {
  min-height: 56px !important;
}

.hero-grid--stats .homepage-threat-stat strong {
  font-size: clamp(1.35rem, 2vw, 1.85rem) !important;
  margin-bottom: 4px !important;
}

.hero-grid--stats .homepage-threat-stat p {
  font-size: .78rem !important;
  line-height: 1.36 !important;
}

.hero-grid--stats .homepage-threat-stats__source {
  margin-top: 11px !important;
  font-size: .58rem !important;
  line-height: 1.35 !important;
}

.card-grid,
.contact-grid,
.plan-grid {
  gap: 18px;
}
.service-card, .values-grid > div, .sidebar-card, .contact-panel, .cta-panel, .plan-card, .about-preview__inner, .why-cyber-section .why-cyber-card, .homepage-threat-stats__panel{
  border-radius: 18px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .20) !important;
}
.service-card,
.contact-panel,
.sidebar-card,
.plan-card,
.about-preview__inner,
.why-cyber-section .why-cyber-card {
  padding: clamp(20px, 2.1vw, 28px) !important;
}
.service-card {
  min-height: 230px !important;
}

body.home .why-cyber-section {
  padding-top: 48px !important;
  padding-bottom: 32px !important;
}

body.home .why-cyber-section .why-cyber-card {
  padding: clamp(24px, 3vw, 34px) !important;
}

body.home .why-cyber-section .why-cyber-card h2,
body.home #services-overview .section-heading h2,
body.page-about #services-overview .section-heading h2,
body.home #plans-preview .section-heading h2,
body.home .about-preview__heading h2 {
  font-size: clamp(1.32rem, 1.62vw, 1.68rem) !important;
  line-height: 1.16 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.045em !important;
}

body.home .why-cyber-card__intro {
  font-size: clamp(.95rem, 1.06vw, 1.02rem) !important;
  line-height: 1.58 !important;
}

body.home .why-cyber-card__closing {
  margin-top: 18px !important;
}

body.home .why-cyber-card__cta {
  margin-top: 20px !important;
}

#services-overview, #plans-preview, .about-preview{
  padding-top: clamp(40px, 5vw, 58px) !important;
  padding-bottom: clamp(40px, 5vw, 58px) !important;
}

body.page-about #services-overview .card-grid--four,
body.home #services-overview .card-grid--four {
  gap: 16px !important;
}

body.page-about #services-overview .service-card,
body.home #services-overview .service-card {
  min-height: clamp(270px, 22vw, 315px) !important;
  padding: clamp(22px, 1.9vw, 26px) !important;
}

body.page-about #services-overview .service-card h3,
body.home #services-overview .service-card h3 {
  min-height: 0 !important;
  font-size: clamp(1.28rem, 1.55vw, 1.55rem) !important;
  line-height: 1.12 !important;
  margin-bottom: 16px !important;
}

body.page-about #services-overview .service-card p,
body.home #services-overview .service-card p {
  min-height: 6.6rem !important;
  font-size: .92rem !important;
  line-height: 1.48 !important;
  margin-bottom: 16px !important;
}

.card-link {
  font-size: .92rem !important;
}

#plans-preview .plan-grid,
.plan-grid {
  gap: 18px !important;
  margin-top: clamp(2.2rem, 4vw, 3rem) !important;
}

#plans-preview .plan-card,
.plan-grid .plan-card,
#plans-preview .plan-card--featured,
.plan-grid .plan-card--featured {
  padding: clamp(1.55rem, 2vw, 1.9rem) !important;
}

.plan-card__name {
  font-size: 1.22rem !important;
}

.plan-card__tagline {
  font-size: .74rem !important;
  margin-bottom: 1rem !important;
}

.plan-card__price {
  font-size: 1.9rem !important;
}

#plans-preview .plan-card--featured .plan-card__badge,
.plan-grid .plan-card--featured .plan-card__badge {
  min-height: 36px !important;
  min-width: 150px !important;
  padding: .54rem 1.2rem !important;
  font-size: .68rem !important;
}

.about-preview__inner {
  padding: clamp(24px, 3.4vw, 38px) !important;
}

.about-preview__heading p {
  font-size: clamp(.95rem, 1.02vw, 1.03rem) !important;
  line-height: 1.58 !important;
}

.page-hero,
.services-hero,
.contact-hero {
  padding-top: clamp(46px, 5.2vw, 72px) !important;
  padding-bottom: clamp(36px, 4.2vw, 54px) !important;
}
.services-intro-section,
.services-detail-section,
.content-section,
.contact-section {
  padding-top: clamp(36px, 4.8vw, 58px) !important;
  padding-bottom: clamp(42px, 5.4vw, 68px) !important;
}

.services-intro-grid, .split-grid, .contact-grid, .contact-grid--main{
  gap: clamp(24px, 3.8vw, 44px) !important;
}

input,
textarea,
select {
  padding: 10px 12px !important;
  border-radius: 11px !important;
}

label {
  gap: 6px;
  font-size: .92rem;
}

.contact-info-icon {
  flex-basis: 42px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
}

.contact-info-icon::after {
  border-radius: 13px !important;
}

.contact-info-icon svg {
  width: 19px !important;
  height: 19px !important;
}

.site-footer,
.site-footer--thin {
  padding-top: 22px !important;
  padding-bottom: 16px !important;
}

.footer-thin {
  gap: 20px !important;
}

.footer-thin__heading {
  font-size: .7rem !important;
  margin-bottom: 5px !important;
}

.footer-thin__link {
  font-size: .9rem !important;
}

.footer-bottom,
.footer-bottom--thin {
  margin-top: 14px !important;
  padding-top: 12px !important;
}

@media (min-width: 1180px) {
  .hero-grid--stats {
    grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr) !important;
  }
}

@media (max-width: 1060px) {
  .hero-grid--stats {
    grid-template-columns: 1fr !important;
  }

  .hero-grid--stats .homepage-threat-stats {
    width: min(100%, 600px) !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 62px;
  }

  .primary-nav {
    top: 64px !important;
  }

  .section {
    padding: 46px 0;
  }

  .hero-copy h1,
  .hero-grid--stats .hero-copy h1,
  .services-hero h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 3.35rem) !important;
  }

  .hero-section .cta-row .btn-cyber-assessment,
  .hero-section .cta-row .btn-ai-discovery {
    min-width: 0 !important;
  }

  .homepage-threat-stats__panel,
  .hero-grid--stats .homepage-threat-stats__panel {
    padding: 18px !important;
  }

  .hero-grid--stats .homepage-threat-stat {
    padding: 12px !important;
  }

  body.page-about #services-overview .service-card,
  body.home #services-overview .service-card {
    min-height: auto !important;
  }

  body.page-about #services-overview .service-card p,
  body.home #services-overview .service-card p {
    min-height: 0 !important;
  }

  .card-grid--four, #services-overview .card-grid--four, .plan-grid{
    max-width: 540px;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .btn {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero-section {
    padding-top: 24px !important;
    padding-bottom: 42px !important;
  }

  .typing-line__dynamic {
    min-height: 2.6em !important;
  }

  body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
  body.home .why-cyber-section .why-cyber-card .section-kicker,
  body.home #services-overview .section-kicker,
  body.page-about #services-overview .section-kicker,
  body.home #plans-preview .section-kicker,
  body.home .about-preview__heading .section-kicker {
    font-size: .86rem !important;
    letter-spacing: .11em !important;
  }
.service-card,
.contact-panel,
.sidebar-card,
.plan-card,
.about-preview__inner,
.why-cyber-section .why-cyber-card {
    padding: 18px !important;
  }
}

body.home .hero-copy h1,
body.home .hero-grid--stats .hero-copy h1,
body.home #hero-title {
  font-size: clamp(2.75rem, 5.05vw, 4.65rem) !important;
  line-height: 1.035 !important;
  letter-spacing: -0.06em !important;
}

body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
body.home .why-cyber-section .why-cyber-card .section-kicker,
body.home #services-overview .section-kicker,
body.page-about #services-overview .section-kicker,
body.home #plans-preview .section-kicker,
body.home .about-preview__heading .section-kicker {
  font-size: clamp(1.04rem, 1.2vw, 1.22rem) !important;
  line-height: 1.16 !important;
  letter-spacing: .135em !important;
  margin-bottom: 10px !important;
}

body.home .hero-grid--stats .homepage-threat-stats__heading h2,
body.home .homepage-threat-stats__heading h2 {
  font-size: clamp(1.14rem, 1.34vw, 1.34rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.035em !important;
  margin-bottom: 0 !important;
  color: #ffd166 !important;
}

body.home .why-cyber-section .why-cyber-card h2,
body.home #services-overview .section-heading h2,
body.page-about #services-overview .section-heading h2,
body.home #plans-preview .section-heading h2,
body.home .about-preview__heading h2 {
  font-size: clamp(1.72rem, 2.28vw, 2.22rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 12px !important;
}

body.home .why-cyber-card__intro,
body.home #services-overview .section-heading p,
body.page-about #services-overview .section-heading p,
body.home #plans-preview .section-heading p,
body.home .about-preview__heading p {
  font-size: clamp(.9rem, .96vw, .98rem) !important;
  line-height: 1.54 !important;
}

@media (max-width: 820px) {
  body.home .hero-copy h1,
  body.home .hero-grid--stats .hero-copy h1,
  body.home #hero-title {
    font-size: clamp(2.25rem, 9.2vw, 3.55rem) !important;
  }

  body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
  body.home .why-cyber-section .why-cyber-card .section-kicker,
  body.home #services-overview .section-kicker,
  body.page-about #services-overview .section-kicker,
  body.home #plans-preview .section-kicker,
  body.home .about-preview__heading .section-kicker {
    font-size: clamp(.98rem, 3vw, 1.12rem) !important;
    letter-spacing: .12em !important;
  }

  body.home .hero-grid--stats .homepage-threat-stats__heading h2,
  body.home .homepage-threat-stats__heading h2 {
    font-size: clamp(1.06rem, 3.5vw, 1.24rem) !important;
  }

  body.home .why-cyber-section .why-cyber-card h2,
  body.home #services-overview .section-heading h2,
  body.page-about #services-overview .section-heading h2,
  body.home #plans-preview .section-heading h2,
  body.home .about-preview__heading h2 {
    font-size: clamp(1.5rem, 5.1vw, 1.9rem) !important;
  }
}

@media (max-width: 520px) {
  body.home .hero-grid--stats .homepage-threat-stats .section-kicker,
  body.home .why-cyber-section .why-cyber-card .section-kicker,
  body.home #services-overview .section-kicker,
  body.page-about #services-overview .section-kicker,
  body.home #plans-preview .section-kicker,
  body.home .about-preview__heading .section-kicker {
    font-size: .98rem !important;
    letter-spacing: .105em !important;
  }

  body.home .why-cyber-section .why-cyber-card h2,
  body.home #services-overview .section-heading h2,
  body.page-about #services-overview .section-heading h2,
  body.home #plans-preview .section-heading h2,
  body.home .about-preview__heading h2 {
    font-size: clamp(1.38rem, 6.2vw, 1.72rem) !important;
  }
}

:root {
  --cn-home-heading-label-size: clamp(1.24rem, 1.55vw, 1.62rem);
  --cn-home-heading-label-size-mobile: clamp(1.04rem, 3vw, 1.16rem);
  --cn-home-heading-label-spacing: .17em;
  --cn-home-heading-label-spacing-mobile: .13em;
  --cn-home-subheading-size: clamp(1.48rem, 1.85vw, 1.82rem);
  --cn-home-subheading-size-mobile: clamp(1.34rem, 5.25vw, 1.68rem);
  --cn-home-heading-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cn-home-heading-color: #99f6e4;
  --cn-home-subheading-color: #f8fafc;
}

body.home .homepage-threat-stats__heading > .section-kicker,
body.home .why-cyber-card > .section-kicker,
body.home #services-overview .section-heading > .section-kicker,
body.page-about #services-overview .section-heading > .section-kicker,
body.home #plans-preview .section-heading > .section-kicker,
body.home .about-preview__heading > .section-kicker {
  font-family: var(--cn-home-heading-font) !important;
  font-style: normal !important;
  font-size: var(--cn-home-heading-label-size) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: var(--cn-home-heading-label-spacing) !important;
  text-transform: uppercase !important;
  color: var(--cn-home-heading-color) !important;
}

body.home .homepage-threat-stats__heading > h2,
body.home .why-cyber-card > h2,
body.home #services-overview .section-heading > h2,
body.page-about #services-overview .section-heading > h2,
body.home #plans-preview .section-heading > h2,
body.home .about-preview__heading > h2 {
  font-family: var(--cn-home-heading-font) !important;
  font-style: normal !important;
  font-size: var(--cn-home-subheading-size) !important;
  font-weight: 800 !important;
  line-height: 1.14 !important;
  letter-spacing: -0.045em !important;
  text-transform: none !important;
  color: var(--cn-home-subheading-color) !important;
}

body.home .why-cyber-card__intro,
body.home #services-overview .section-heading > p,
body.page-about #services-overview .section-heading > p,
body.home #plans-preview .section-heading > p,
body.home .about-preview__heading > p {
  font-family: var(--cn-home-heading-font) !important;
  font-style: normal !important;
  font-size: clamp(.9rem, .96vw, .98rem) !important;
  font-weight: 400 !important;
  line-height: 1.54 !important;
  letter-spacing: 0 !important;
}

/* The homepage hero is intentionally a separate H1 style, but locked here so
   heading fixes do not accidentally shrink it. */
body.home .hero-copy h1,
body.home .hero-grid--stats .hero-copy h1,
body.home #hero-title {
  font-family: var(--cn-home-heading-font) !important;
  font-style: normal !important;
  font-size: clamp(2.75rem, 5.05vw, 4.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.035 !important;
  letter-spacing: -0.06em !important;
}

@media (max-width: 820px) {
  body.home .homepage-threat-stats__heading > .section-kicker,
  body.home .why-cyber-card > .section-kicker,
  body.home #services-overview .section-heading > .section-kicker,
  body.page-about #services-overview .section-heading > .section-kicker,
  body.home #plans-preview .section-heading > .section-kicker,
  body.home .about-preview__heading > .section-kicker {
    font-size: var(--cn-home-heading-label-size-mobile) !important;
    letter-spacing: var(--cn-home-heading-label-spacing-mobile) !important;
  }

  body.home .homepage-threat-stats__heading > h2,
  body.home .why-cyber-card > h2,
  body.home #services-overview .section-heading > h2,
  body.page-about #services-overview .section-heading > h2,
  body.home #plans-preview .section-heading > h2,
  body.home .about-preview__heading > h2 {
    font-size: var(--cn-home-subheading-size-mobile) !important;
    line-height: 1.15 !important;
  }

  body.home .hero-copy h1,
  body.home .hero-grid--stats .hero-copy h1,
  body.home #hero-title {
    font-size: clamp(2.25rem, 9.2vw, 3.55rem) !important;
  }
}

:root {
  --cn-home-subheading-reference-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cn-home-subheading-reference-size: clamp(1.48rem, 1.85vw, 1.82rem);
  --cn-home-subheading-reference-size-mobile: clamp(1.34rem, 5.25vw, 1.68rem);
  --cn-home-subheading-reference-weight: 800;
  --cn-home-subheading-reference-line-height: 1.14;
  --cn-home-subheading-reference-letter-spacing: -0.045em;
  --cn-home-subheading-reference-color: #f8fafc;
}

html body.home main#primary h2.homepage-section-subheading,
html body.home main#primary .homepage-threat-stats__heading > h2.homepage-section-subheading,
html body.home main#primary .why-cyber-card > h2.homepage-section-subheading,
html body.home main#primary #services-overview .section-heading > h2.homepage-section-subheading,
html body.home main#primary #plans-preview .section-heading > h2.homepage-section-subheading,
html body.home main#primary .about-preview__heading > h2.homepage-section-subheading {
  font-family: var(--cn-home-subheading-reference-font) !important;
  font-style: normal !important;
  font-size: var(--cn-home-subheading-reference-size) !important;
  font-weight: var(--cn-home-subheading-reference-weight) !important;
  line-height: var(--cn-home-subheading-reference-line-height) !important;
  letter-spacing: var(--cn-home-subheading-reference-letter-spacing) !important;
  text-transform: none !important;
  color: var(--cn-home-subheading-reference-color) !important;
}

@media (max-width: 820px) {
  html body.home main#primary h2.homepage-section-subheading,
  html body.home main#primary .homepage-threat-stats__heading > h2.homepage-section-subheading,
  html body.home main#primary .why-cyber-card > h2.homepage-section-subheading,
  html body.home main#primary #services-overview .section-heading > h2.homepage-section-subheading,
  html body.home main#primary #plans-preview .section-heading > h2.homepage-section-subheading,
  html body.home main#primary .about-preview__heading > h2.homepage-section-subheading {
    font-size: var(--cn-home-subheading-reference-size-mobile) !important;
    line-height: 1.15 !important;
  }
}

:root {
  --cn-home-threat-subheading-color: #ffd166;
}

html body.home main#primary #homepage-threat-stats-title.homepage-section-subheading {
  color: var(--cn-home-threat-subheading-color) !important;
}

:root {
  --cn-emergency-panel-radius: var(--radius, 18px);
}

html body .emergency-contact__panel {
  border-radius: var(--cn-emergency-panel-radius) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background-clip: padding-box !important;
}

@media (max-width: 520px) {
  html body .emergency-contact__panel {
    border-radius: 18px !important;
  }
}

:root {
  --cn-emergency-fit-radius: 24px;
  --cn-emergency-tab-width: 46px;
  --cn-emergency-panel-width: 520px;
}

html body .emergency-contact {
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
}

html body .emergency-contact__tab {
  width: var(--cn-emergency-tab-width) !important;
  min-height: 240px !important;
  border-radius: 24px 0 0 24px !important;
}

html body .emergency-contact__panel {
  top: 50% !important;
  right: var(--cn-emergency-tab-width) !important;
  bottom: auto !important;
  width: min(var(--cn-emergency-panel-width), calc(100vw - var(--cn-emergency-tab-width) - 28px)) !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: calc(100dvh - 44px) !important;
  border-radius: var(--cn-emergency-fit-radius) !important;
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  box-sizing: border-box !important;
  background-clip: padding-box !important;
  transform: translate(calc(100% + var(--cn-emergency-tab-width)), -50%) !important;
}

html body .emergency-contact.is-open .emergency-contact__panel {
  transform: translate(0, -50%) !important;
}

html body .emergency-contact__panel::before {
  border-radius: inherit !important;
}

html body .emergency-contact__inner {
  padding: clamp(14px, 2.2dvh, 20px) clamp(16px, 2.2vw, 24px) !important;
  max-height: none !important;
  box-sizing: border-box !important;
}

html body .emergency-contact__intro {
  margin: 0 0 10px !important;
  padding: 10px 12px !important;
  border-radius: 16px !important;
  font-size: clamp(.78rem, .84vw, .88rem) !important;
  line-height: 1.38 !important;
  letter-spacing: -0.012em !important;
}

html body .emergency-contact__form {
  gap: 8px !important;
}

html body .emergency-contact__grid {
  gap: 8px 10px !important;
}

html body .emergency-contact__field span {
  margin-bottom: 4px !important;
  font-size: .76rem !important;
  line-height: 1.2 !important;
}

html body .emergency-contact__field input,
html body .emergency-contact__field textarea {
  min-height: 38px !important;
  border-radius: 11px !important;
  padding: 8px 11px !important;
  font-size: .84rem !important;
  line-height: 1.25 !important;
}

html body .emergency-contact__field textarea {
  min-height: 74px !important;
  resize: none !important;
}

html body .emergency-contact__field input::placeholder,
html body .emergency-contact__field textarea::placeholder {
  font-size: .84rem !important;
  line-height: 1.25 !important;
}

html body .emergency-contact__submit {
  min-height: 42px !important;
  border-radius: 12px !important;
  font-size: .8rem !important;
  line-height: 1 !important;
  letter-spacing: .04em !important;
}

@media (max-height: 720px) and (min-width: 821px) {
  html body .emergency-contact__panel {
    max-height: calc(100dvh - 28px) !important;
  }

  html body .emergency-contact__inner {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  html body .emergency-contact__intro {
    padding: 9px 11px !important;
    font-size: .76rem !important;
    line-height: 1.34 !important;
    margin-bottom: 8px !important;
  }

  html body .emergency-contact__form,
  html body .emergency-contact__grid {
    gap: 7px !important;
  }

  html body .emergency-contact__field input,
  html body .emergency-contact__field textarea {
    min-height: 36px !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  html body .emergency-contact__field textarea {
    min-height: 64px !important;
  }

  html body .emergency-contact__submit {
    min-height: 40px !important;
  }

}

@media (max-width: 820px) {
  html body .emergency-contact {
    top: auto !important;
    right: 12px !important;
    bottom: 14px !important;
    transform: none !important;
  }

  html body .emergency-contact__tab {
    width: auto !important;
    min-height: 42px !important;
    border-radius: 999px !important;
  }

  html body .emergency-contact__panel {
    top: auto !important;
    right: 0 !important;
    bottom: 52px !important;
    width: min(360px, calc(100vw - 24px)) !important;
    max-height: calc(100dvh - 88px) !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    transform: translateY(14px) scale(.98) !important;
  }

  html body .emergency-contact.is-open .emergency-contact__panel {
    transform: translateY(0) scale(1) !important;
  }

  html body .emergency-contact__inner {
    padding: 13px !important;
  }

  html body .emergency-contact__grid {
    grid-template-columns: 1fr !important;
  }

  html body .emergency-contact__intro {
    padding: 9px 10px !important;
    font-size: .74rem !important;
    line-height: 1.32 !important;
    margin-bottom: 8px !important;
  }

  html body .emergency-contact__form,
  html body .emergency-contact__grid {
    gap: 7px !important;
  }

  html body .emergency-contact__field input,
  html body .emergency-contact__field textarea {
    min-height: 36px !important;
    padding: 7px 9px !important;
    font-size: .8rem !important;
  }

  html body .emergency-contact__field textarea {
    min-height: 60px !important;
  }

  html body .emergency-contact__submit {
    min-height: 38px !important;
    font-size: .76rem !important;
  }

}

@media (max-width: 420px), (max-height: 600px) and (max-width: 820px) {
  html body .emergency-contact__panel {
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 76px) !important;
  }

  html body .emergency-contact__inner {
    padding: 10px !important;
  }

}

:root {
  --cn-global-heading-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cn-global-kicker-color: #99f6e4;
  --cn-global-kicker-size: clamp(1.24rem, 1.55vw, 1.62rem);
  --cn-global-kicker-size-mobile: clamp(1.04rem, 3vw, 1.16rem);
  --cn-global-kicker-weight: 800;
  --cn-global-kicker-line-height: 1.15;
  --cn-global-kicker-letter-spacing: .17em;
  --cn-global-kicker-letter-spacing-mobile: .13em;
  --cn-global-kicker-margin-bottom: 16px;

  --cn-global-section-heading-color: #f8fafc;
  --cn-global-section-heading-size: clamp(1.48rem, 1.85vw, 1.82rem);
  --cn-global-section-heading-size-mobile: clamp(1.34rem, 5.25vw, 1.68rem);
  --cn-global-section-heading-weight: 800;
  --cn-global-section-heading-line-height: 1.14;
  --cn-global-section-heading-letter-spacing: -0.045em;
  --cn-global-section-heading-margin-bottom: 18px;

  --cn-global-card-heading-size: clamp(1.18rem, 1.45vw, 1.42rem);
  --cn-global-card-heading-size-mobile: clamp(1.08rem, 4.9vw, 1.26rem);
  --cn-global-card-heading-line-height: 1.14;
  --cn-global-card-heading-letter-spacing: -0.04em;

  --cn-global-intro-color: #f8fafc;
  --cn-global-intro-size: clamp(.96rem, 1.05vw, 1.05rem);
  --cn-global-intro-size-mobile: .96rem;
  --cn-global-intro-line-height: 1.58;
}

/* Section labels / kicker headings: same font/style on every page. */
html body main#primary .section-kicker,
html body .emergency-contact .section-kicker {
  display: inline-block !important;
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: var(--cn-global-kicker-size) !important;
  font-weight: var(--cn-global-kicker-weight) !important;
  line-height: var(--cn-global-kicker-line-height) !important;
  letter-spacing: var(--cn-global-kicker-letter-spacing) !important;
  text-transform: uppercase !important;
  color: var(--cn-global-kicker-color) !important;
  margin-top: 0 !important;
  margin-bottom: var(--cn-global-kicker-margin-bottom) !important;
}

/* Main page and section sub-headings: matched to homepage "Cybersecurity and AI automation". */
html body:not(.home) main#primary .page-hero h1, html body:not(.home) main#primary .page-hero .section-heading > h1, html body:not(.home) main#primary .page-hero .services-hero__inner > h1, html body:not(.home) main#primary .page-hero .split-grid h1, html body:not(.home) main#primary .section-heading > h2, html body:not(.home) main#primary .split-grid > div > h2, html body:not(.home) main#primary .cta-panel > h2, html body:not(.home) main#primary .services-cta-panel h2, html body:not(.home) main#primary .services-intro-copy > h2, html body:not(.home) main#primary .contact-panel > h2, html body:not(.home) main#primary .contact-info-card > h2, html body.home main#primary h2.homepage-section-subheading, html body.home main#primary .homepage-threat-stats__heading > h2.homepage-section-subheading, html body.home main#primary .why-cyber-card > h2.homepage-section-subheading, html body.home main#primary #services-overview .section-heading > h2.homepage-section-subheading, html body.home main#primary #plans-preview .section-heading > h2.homepage-section-subheading, html body.home main#primary .about-preview__heading > h2.homepage-section-subheading, html body .emergency-contact__panel h2{
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: var(--cn-global-section-heading-size) !important;
  font-weight: var(--cn-global-section-heading-weight) !important;
  line-height: var(--cn-global-section-heading-line-height) !important;
  letter-spacing: var(--cn-global-section-heading-letter-spacing) !important;
  text-transform: none !important;
  color: var(--cn-global-section-heading-color) !important;
  margin-top: 0 !important;
  margin-bottom: var(--cn-global-section-heading-margin-bottom) !important;
}

/* Centered sections remain centered; split/card/form areas keep their existing alignment. */
html body:not(.home) main#primary .page-hero .section-heading > h1,
html body:not(.home) main#primary .section-heading > h2,
html body:not(.home) main#primary .cta-panel > h2,
html body.home main#primary .section-heading > h2.homepage-section-subheading,
html body.home main#primary .why-cyber-card > h2.homepage-section-subheading,
html body.home main#primary .homepage-threat-stats__heading > h2.homepage-section-subheading {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body:not(.home) main#primary .services-hero__inner > h1, html body:not(.home) main#primary .split-grid > div > h2, html body:not(.home) main#primary .contact-panel > h2, html body:not(.home) main#primary .contact-info-card > h2, html body:not(.home) main#primary .services-intro-copy > h2, html body .emergency-contact__panel h2{
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}/* Card and compact panel headings: same family/weight/letter-spacing,
smaller scale for hierarchy. */
html body main#primary .service-card h3, html body main#primary .plan-card__name, html body main#primary .services-detail-card h3, html body main#primary .services-snapshot-item strong, html body main#primary .services-detail-card__label, html body main#primary .office-hours-card h3, html body main#primary .sidebar-card h3{
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: var(--cn-global-card-heading-size) !important;
  font-weight: 800 !important;
  line-height: var(--cn-global-card-heading-line-height) !important;
  letter-spacing: var(--cn-global-card-heading-letter-spacing) !important;
  text-transform: none !important;
  color: var(--cn-global-section-heading-color) !important;
}

/* Page/section intro text: consistent supporting sub-heading copy without changing body copy elsewhere. */
html body:not(.home) main#primary .page-hero p,
html body:not(.home) main#primary .section-heading > p,
html body:not(.home) main#primary .services-hero__inner > p,
html body:not(.home) main#primary .services-intro-copy > p,
html body:not(.home) main#primary .contact-intro,
html body:not(.home) main#primary .contact-info-card > p,
html body.home main#primary .why-cyber-card__intro,
html body.home main#primary #services-overview .section-heading > p,
html body.home main#primary #plans-preview .section-heading > p,
html body.home main#primary .about-preview__heading > p {
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: var(--cn-global-intro-size) !important;
  font-weight: 400 !important;
  line-height: var(--cn-global-intro-line-height) !important;
  letter-spacing: 0 !important;
  color: var(--cn-global-intro-color) !important;
}

/* Homepage main hero stays intentionally larger than section sub-headings. */
html body.home main#primary .hero-copy h1,
html body.home main#primary .hero-grid--stats .hero-copy h1,
html body.home main#primary #hero-title {
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: clamp(2.75rem, 5.05vw, 4.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.035 !important;
  letter-spacing: -0.06em !important;
  text-align: left !important;
  color: var(--cn-global-section-heading-color) !important;
}

/* Requested exception: Threat Snapshot sub-heading remains yellow while matching all other sub-heading typography. */
html body.home main#primary #homepage-threat-stats-title.homepage-section-subheading {
  color: var(--cn-home-threat-subheading-color, #ffd166) !important;
}

@media (max-width: 820px) {
  html body main#primary .section-kicker,
  html body .emergency-contact .section-kicker {
    font-size: var(--cn-global-kicker-size-mobile) !important;
    letter-spacing: var(--cn-global-kicker-letter-spacing-mobile) !important;
    line-height: 1.16 !important;
  }

  html body:not(.home) main#primary .page-hero h1, html body:not(.home) main#primary .page-hero .section-heading > h1, html body:not(.home) main#primary .page-hero .services-hero__inner > h1, html body:not(.home) main#primary .page-hero .split-grid h1, html body:not(.home) main#primary .section-heading > h2, html body:not(.home) main#primary .split-grid > div > h2, html body:not(.home) main#primary .cta-panel > h2, html body:not(.home) main#primary .services-cta-panel h2, html body:not(.home) main#primary .services-intro-copy > h2, html body:not(.home) main#primary .contact-panel > h2, html body:not(.home) main#primary .contact-info-card > h2, html body.home main#primary h2.homepage-section-subheading, html body .emergency-contact__panel h2{
    font-size: var(--cn-global-section-heading-size-mobile) !important;
    line-height: 1.15 !important;
  }html body main#primary .service-card h3, html body main#primary .plan-card__name, html body main#primary .services-detail-card h3, html body main#primary .services-snapshot-item strong, html body main#primary .office-hours-card h3, html body main#primary .sidebar-card h3{
    font-size: var(--cn-global-card-heading-size-mobile) !important;
  }

  html body:not(.home) main#primary .page-hero p,
  html body:not(.home) main#primary .section-heading > p,
  html body:not(.home) main#primary .services-hero__inner > p,
  html body:not(.home) main#primary .services-intro-copy > p,
  html body:not(.home) main#primary .contact-intro,
  html body:not(.home) main#primary .contact-info-card > p,
  html body.home main#primary .why-cyber-card__intro,
  html body.home main#primary #services-overview .section-heading > p,
  html body.home main#primary #plans-preview .section-heading > p,
  html body.home main#primary .about-preview__heading > p {
    font-size: var(--cn-global-intro-size-mobile) !important;
    line-height: 1.56 !important;
  }

  html body.home main#primary .hero-copy h1,
  html body.home main#primary .hero-grid--stats .hero-copy h1,
  html body.home main#primary #hero-title {
    font-size: clamp(2.25rem, 9.2vw, 3.55rem) !important;
  }
}html body main#primary .values-grid strong, html body main#primary .homepage-threat-stat strong, html body main#primary .hero-session-helper strong, html body footer .footer-thin__heading{
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: var(--cn-global-card-heading-line-height) !important;
  letter-spacing: var(--cn-global-card-heading-letter-spacing) !important;
  color: var(--cn-global-section-heading-color) !important;
}html body main#primary .values-grid strong{
  font-size: var(--cn-global-card-heading-size) !important;
}

html body main#primary .homepage-threat-stat strong {
  font-size: clamp(1.34rem, 1.8vw, 1.64rem) !important;
}

html body footer .footer-thin__heading {
  font-size: .78rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--cn-global-kicker-color) !important;
}

@media (max-width: 820px) {html body main#primary .values-grid strong{
    font-size: var(--cn-global-card-heading-size-mobile) !important;
  }
}

html body:not(.home) main#primary.services-page .services-hero__inner,
html body:not(.home) main#primary.services-page .page-hero .services-hero__inner {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body:not(.home) main#primary.services-page .services-hero__inner > .section-kicker,
html body:not(.home) main#primary.services-page .services-hero__inner > h1,
html body:not(.home) main#primary.services-page .services-hero__inner > p,
html body:not(.home) main#primary.services-page .services-hero h1,
html body:not(.home) main#primary.services-page .services-hero p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

:root {
  --cn-yellow-accent: #ffd166;
  --cn-yellow-accent-rgb: 255, 209, 102;
}

html body .service-card .card-link,
html body .service-card .card-link:hover,
html body.home .hero-section #homepage-threat-stats-title,
html body.home main#primary #homepage-threat-stats-title.homepage-section-subheading,
html body.home .typing-line strong,
html body.home .typing-line__dynamic strong[data-typing],
html body.home .typing-cursor,
html body.home .why-cyber-card__closing span:first-child,
html body #plans-preview .plan-card__tagline,
html body .plan-grid .plan-card__tagline,
html body .services-page .services-snapshot-item__number {
  color: var(--cn-yellow-accent) !important;
}

html body .homepage-threat-stat__accent {
  background: linear-gradient(180deg, var(--cn-yellow-accent), var(--cn-yellow-accent)) !important;
  box-shadow: 0 0 18px rgba(var(--cn-yellow-accent-rgb), .34) !important;
}

html body.home .typing-line strong,
html body.home .typing-line__dynamic strong[data-typing],
html body.home .why-cyber-card__closing span:first-child,
html body #plans-preview .plan-card__tagline,
html body .plan-grid .plan-card__tagline,
html body .services-page .services-snapshot-item__number,
html body .service-card .card-link:hover,
html body .service-card .card-link:focus-visible {
  text-shadow: 0 0 18px rgba(var(--cn-yellow-accent-rgb), .22) !important;
}

but the actual
   homepage markup wraps this link in .cta-row,
so that rule did not match.
   This final selector targets the actual button directly. */
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more,
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:link,
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:visited,
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:hover,
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:focus,
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:focus-visible,
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:active {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
}

html body main#primary.services-page .services-detail-card__label {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
}

html body main#primary.services-page .services-cta-panel h2.services-cta-panel__title--yellow,
html body main#primary.services-page .services-cta-panel h2.services-cta-panel__title--yellow a,
html body main#primary.services-page .services-cta-panel h2.services-cta-panel__title--yellow span {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
}

html body main#primary .contact-hero .section-heading > h1.contact-hero__title--yellow {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
}

html body main#primary .contact-sidebar .contact-info-card .contact-info-list .contact-info-item p.contact-info-label.contact-info-label--yellow,
html body main#primary .contact-sidebar .contact-info-card .contact-info-list .contact-info-item p.contact-info-label.contact-info-label--yellow span,
html body main#primary .contact-sidebar .contact-info-card .contact-info-list .contact-info-item p.contact-info-label.contact-info-label--yellow a {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
}

html body main#primary .contact-section {
  padding-top: clamp(30px, 4vw, 48px) !important;
  padding-bottom: clamp(40px, 4.8vw, 60px) !important;
}

html body main#primary .contact-section .contact-grid--main {
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.68fr) !important;
  gap: clamp(20px, 3vw, 34px) !important;
  align-items: flex-start !important;
}

html body main#primary .contact-section .contact-grid--main > .contact-panel {
  padding: clamp(18px, 2.1vw, 24px) !important;
  border-radius: 18px !important;
}

html body main#primary .contact-section .contact-panel > h2 {
  margin-bottom: 8px !important;
}

html body main#primary .contact-section .contact-panel .contact-intro {
  margin: -2px 0 10px !important;
  font-size: clamp(.88rem, .94vw, .95rem) !important;
  line-height: 1.45 !important;
}

html body main#primary .contact-section .contact-panel .contact-form,
html body main#primary .contact-section .contact-panel .form-grid {
  gap: 10px !important;
}

html body main#primary .contact-section .contact-panel .form-grid {
  column-gap: 12px !important;
}

html body main#primary .contact-section .contact-panel .contact-form label {
  gap: 5px !important;
  font-size: .84rem !important;
  line-height: 1.25 !important;
}

html body main#primary .contact-section .contact-panel .contact-form input,
html body main#primary .contact-section .contact-panel .contact-form select,
html body main#primary .contact-section .contact-panel .contact-form textarea {
  min-height: 40px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  font-size: .92rem !important;
  line-height: 1.35 !important;
}

html body main#primary .contact-section .contact-panel .contact-form textarea {
  min-height: 96px !important;
  height: 96px !important;
  resize: vertical !important;
}

html body main#primary .contact-section .contact-panel .form-notice {
  margin: 10px 0 !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  font-size: .9rem !important;
}

html body main#primary .contact-section .contact-panel .contact-form .btn {
  min-height: 42px !important;
  padding: .62rem 1.18rem !important;
  border-radius: 999px !important;
  font-size: .78rem !important;
  letter-spacing: .12em !important;
}

@media (min-width: 1180px) {
  html body main#primary .contact-section .contact-grid--main {
    grid-template-columns: minmax(0, 700px) minmax(300px, 410px) !important;
    justify-content: center !important;
  }
}

@media (max-width: 980px) {
  html body main#primary .contact-section .contact-grid--main {
    grid-template-columns: 1fr !important;
  }

  html body main#primary .contact-section .contact-grid--main > .contact-panel {
    padding: 18px !important;
  }
}

@media (max-width: 640px) {
  html body main#primary .contact-section {
    padding-top: 26px !important;
    padding-bottom: 72px !important;
  }

  html body main#primary .contact-section .contact-grid--main > .contact-panel {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  html body main#primary .contact-section .contact-panel .contact-form input,
  html body main#primary .contact-section .contact-panel .contact-form select,
  html body main#primary .contact-section .contact-panel .contact-form textarea {
    min-height: 38px !important;
    font-size: 16px !important;
  }

  html body main#primary .contact-section .contact-panel .contact-form textarea {
    min-height: 90px !important;
    height: 90px !important;
  }

  html body main#primary .contact-section .contact-panel .contact-form .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

.values-grid { grid-template-columns: 1fr; }
.brand-showcase { max-width: 480px; margin-inline: auto; }

main#primary #services-overview .section-heading > h2.homepage-section-subheading {
  font-family: var(--cn-global-heading-font);
  font-style: normal;
  font-size: var(--cn-global-section-heading-size);
  font-weight: var(--cn-global-section-heading-weight);
  line-height: var(--cn-global-section-heading-line-height);
  letter-spacing: var(--cn-global-section-heading-letter-spacing);
  text-transform: none;
  color: var(--cn-global-section-heading-color);
  margin-top: 0;
  margin-bottom: var(--cn-global-section-heading-margin-bottom);
}main#primary #services-overview .services-contact-action__button {
  position: relative;
  overflow: hidden;
  animation: ciphernetCtaGlow 5.4s ease-in-out infinite;
}
main#primary #services-overview .services-contact-action__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.32) 42%, transparent 68%);
  transform: translateX(-130%);
  animation: ciphernetCtaSweep 5.4s ease-in-out infinite;
  pointer-events: none;
}

main#primary #services-overview .service-card:hover,
main#primary #services-overview .service-card:focus-within {
  background: var(--ciphernet-unified-card-background-hover) !important;
  border-color: var(--ciphernet-unified-card-border-hover) !important;
}

main#primary .services-detail-card:hover,
main#primary .services-detail-card:focus-within {
  background: var(--ciphernet-unified-card-background-hover) !important;
  border-color: var(--ciphernet-unified-card-border-hover) !important;
}main#primary .btn-cyber-assessment {
  position: relative;
  overflow: hidden;
  animation: ciphernetCtaGlow 5.4s ease-in-out infinite;
  animation-delay: 0s;
}
main#primary .btn-ai-discovery {
  position: relative;
  overflow: hidden;
  color: #eef2ff;
  background: linear-gradient(90deg, #3b1d82, #5b21b6 48%, #0e7490);
  box-shadow: 0 18px 52px rgba(59, 29, 130, .22);
  animation: ciphernetCtaGlow 5.4s ease-in-out infinite;
  animation-delay: 2.7s;
}
main#primary .btn-cyber-assessment::after,
main#primary .btn-ai-discovery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.32) 42%, transparent 68%);
  transform: translateX(-130%);
  animation: ciphernetCtaSweep 5.4s ease-in-out infinite;
  pointer-events: none;
}
main#primary .btn-ai-discovery::after {
  animation-delay: 2.7s;
}

html body .plan-grid {
  align-items: stretch !important;
}

html body .plan-grid .plan-card,
html body.home #plans-preview .plan-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

html body .plan-grid .plan-card__name,
html body.home #plans-preview .plan-card__name {
  margin: 0 0 .3rem !important;
  line-height: 1.12 !important;
}

html body .plan-grid .plan-card__tagline,
html body.home #plans-preview .plan-card__tagline {
  min-height: 1.45em;
  margin: 0 0 1rem !important;
  line-height: 1.45 !important;
}

html body .plan-grid .plan-card__price,
html body.home #plans-preview .plan-card__price {
  min-height: 3.2rem;
  margin-bottom: 1.3rem !important;
}

html body .plan-grid .plan-card__cta,
html body.home #plans-preview .plan-card__cta {
  width: 100%;
  margin-top: auto !important;
  align-self: stretch !important;
  justify-content: center !important;
}

html body .services-page .services-detail-card .services-deliverables {
  display: grid !important;
  grid-auto-rows: max-content;
  align-content: start;
  gap: .9rem !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body .services-page .services-detail-card .services-deliverables li {
  position: static !important;
  display: grid !important;
  grid-template-columns: 19px minmax(0, 1fr);
  column-gap: .72rem !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--muted);
  font-size: clamp(.88rem, .92vw, .96rem) !important;
  line-height: 1.52 !important;
}

html body .services-page .services-detail-card .services-deliverables li::before {
  content: none !important;
  display: none !important;
}

html body .services-page .services-detail-card .services-deliverables svg {
  width: 18px !important;
  height: 18px !important;
  margin-top: .18em !important;
  fill: var(--success) !important;
  flex: none !important;
}

html body .services-page .services-detail-card .services-deliverables span {
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
}

html body .services-page .services-detail-card__description {
  margin-bottom: .9rem !important;
  line-height: 1.5 !important;
}

html body .services-page .services-detail-card__description + p {
  margin-top: 0 !important;
  line-height: 1.65 !important;
}

@media (max-width: 820px) {
  html body .services-page .services-detail-card .services-deliverables {
    gap: .78rem !important;
  }

  html body .services-page .services-detail-card .services-deliverables li {
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: .66rem !important;
    font-size: .92rem !important;
    line-height: 1.5 !important;
  }
}

html body .services-page .services-cta-panel__actions .btn-cyber-assessment,
html body .services-page .services-cta-panel__actions .btn-ai-discovery {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  color: #06101b !important;
  background: linear-gradient(90deg, #67e8f9, #a78bfa) !important;
  border-color: transparent !important;
  box-shadow: 0 18px 52px rgba(139, 92, 246, .24) !important;
  animation: ciphernetCtaGlow 5.4s ease-in-out 0s infinite both !important;
  will-change: box-shadow;
}

html body .services-page .services-cta-panel__actions .btn-cyber-assessment::after,
html body .services-page .services-cta-panel__actions .btn-ai-discovery::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, .32) 42%,
    transparent 68%
  ) !important;
  transform: translateX(-130%);
  opacity: 0;
  animation: ciphernetCtaSweep 5.4s ease-in-out 0s infinite both !important;
  pointer-events: none !important;
  will-change: transform, opacity;
}

html body .services-page .services-cta-panel__actions .btn-cyber-assessment:hover,
html body .services-page .services-cta-panel__actions .btn-cyber-assessment:focus-visible,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:hover,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:focus-visible {
  color: #06101b !important;
  background: linear-gradient(90deg, #67e8f9, #a78bfa) !important;
  border-color: transparent !important;
}

@media (prefers-reduced-motion: reduce) {
  html body .services-page .services-cta-panel__actions .btn-cyber-assessment,
  html body .services-page .services-cta-panel__actions .btn-ai-discovery,
  html body .services-page .services-cta-panel__actions .btn-cyber-assessment::after,
  html body .services-page .services-cta-panel__actions .btn-ai-discovery::after {
    animation: none !important;
  }

  html body .services-page .services-cta-panel__actions .btn-cyber-assessment::after,
  html body .services-page .services-cta-panel__actions .btn-ai-discovery::after {
    display: none !important;
  }
}

html body .services-page .services-cta-panel__actions .btn-ai-discovery,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:hover,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:focus,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:focus-visible,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:active {
  position: relative !important;
  overflow: hidden !important;
  color: #eef2ff !important;
  background: linear-gradient(90deg, #3b1d82, #5b21b6 48%, #0e7490) !important;
  border-color: rgba(103, 232, 249, .32) !important;
  box-shadow: 0 18px 52px rgba(59, 29, 130, .22) !important;
  animation: none !important;
  will-change: auto !important;
}

html body .services-page .services-cta-panel__actions .btn-ai-discovery::before,
html body .services-page .services-cta-panel__actions .btn-ai-discovery::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

html body .services-page .services-cta-panel__actions .btn-ai-discovery,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:hover,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:focus,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:focus-visible,
html body .services-page .services-cta-panel__actions .btn-ai-discovery:active {
  border: 0 !important;
  border-color: transparent !important;
  outline-offset: 3px;
  animation: none !important;
}

html body .services-page .services-cta-panel__actions .btn-ai-discovery::before,
html body .services-page .services-cta-panel__actions .btn-ai-discovery::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  animation: none !important;
  box-shadow: none !important;
}

html body main#primary .plans-compare-section {
  background: transparent !important;
  border: 0 !important;
  border-block: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body main#primary .plans-compare-section::before,
html body main#primary .plans-compare-section::after {
  content: none !important;
  display: none !important;
}

html body main#primary .plans-compare-section .plan-compare {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
}

html body main#primary .plans-compare-section .plan-compare:hover,
html body main#primary .plans-compare-section .plan-compare:focus-within {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body main#primary .plans-compare-section .plan-compare__table {
  margin: 0 auto !important;
}

html body main#primary .plans-compare-section #plan-compare-title {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
}

html body main#primary .final-cta .cta-panel h2 {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
}

html body main#primary .plans-compare-section .plan-compare__table {
  width: 100% !important;
  table-layout: fixed;
}

html body main#primary .plans-compare-section .plan-compare__table th,
html body main#primary .plans-compare-section .plan-compare__table td {
  vertical-align: top !important;
  line-height: 1.45 !important;
}

html body main#primary .plans-compare-section .plan-compare__table thead th:first-child,
html body main#primary .plans-compare-section .plan-compare__table tbody th {
  width: 24% !important;
}

html body main#primary .plans-compare-section .plan-compare__table thead th:not(:first-child),
html body main#primary .plans-compare-section .plan-compare__table tbody td {
  width: 25.333% !important;
}

html body main#primary .plans-compare-section .plan-compare__table thead th:nth-child(3),
html body main#primary .plans-compare-section .plan-compare__table tbody td:nth-child(3) {
  background: rgba(103, 232, 249, .035);
}

html body main#primary .plans-compare-section .plan-compare__mobile-hint {
  display: none;
  margin: -.35rem auto .8rem;
  color: var(--muted);
  text-align: center;
  font-size: .84rem;
}

@media (max-width: 760px) {
  html body main#primary .plans-compare-section .plan-compare__mobile-hint {
    display: block;
  }

  html body main#primary .plans-compare-section .plan-compare__table {
    min-width: 760px;
    table-layout: fixed;
  }
}

html body main#primary .office-hours-card .office-hours-priority-note {
  color: #fff !important;
}


html body .service-card .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--cn-yellow-accent, #ffd166);
  background: rgba(255, 209, 102, 0.08);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
html body .service-card .card-link:hover,
html body .service-card .card-link:focus-visible {
  background: rgba(255, 209, 102, 0.16);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.24);
  transform: translateY(-1px);
}

html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more {
  border-color: #ffd166 !important;
  background: rgba(255, 209, 102, 0.08) !important;
}
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:hover,
html body.home main#primary .about-preview .cta-row a.btn.btn-secondary.homepage-about-learn-more:focus-visible {
  border-color: #ffd166 !important;
  background: rgba(255, 209, 102, 0.16) !important;
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.24);
}
.about-approach-intro { color: var(--text); }


.form-notice--success {
  color: #ffd166;
  font-weight: 700;
}

:root {
  --cn-priority-support-panel-bg: #121727;
}

html body .emergency-contact__panel,
html body .emergency-contact__panel:hover,
html body .emergency-contact__panel:focus,
html body .emergency-contact__panel:focus-within {
  background: var(--cn-priority-support-panel-bg) !important;
  background-color: var(--cn-priority-support-panel-bg) !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body .emergency-contact__panel::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 820px) {
  html body .emergency-contact__field input,
  html body .emergency-contact__field textarea {
    font-size: 16px !important;
  }
}

html body .emergency-contact__panel,
html body .emergency-contact__panel:hover,
html body .emergency-contact__panel:focus,
html body .emergency-contact__panel:focus-within {
  border: 2px solid #ffd166 !important;
}

/* ==========================================================================
   Plan card feature lists (Homepage plans-preview + full Plans page) --
   CONSOLIDATED authoritative block.

   This one block replaces 13 separate scattered rules that had
   accumulated across many versions, each adding !important on top of the
   last without removing what came before. That stacking made the actual
   winning declaration unpredictable, and a maximum-specificity defensive
   fix still didn't resolve a reported text-overlap bug -- a strong sign
   the cascade itself had become too tangled to reason about reliably.

   This is now the ONLY place these properties are set. If a future
   change is needed, edit here rather than adding another override
   elsewhere -- that's what caused the original problem.
   ========================================================================== */
html body .plan-grid .plan-card__features,
html body.home #plans-preview .plan-card__features {
  display: grid !important;
  grid-auto-flow: row !important;
  grid-auto-rows: minmax(max-content, auto) !important;
  row-gap: 1.1rem !important;
  column-gap: 0 !important;
  align-content: start !important;
  width: 100% !important;
  margin: 0 0 1.6rem !important;
  padding: 0 !important;
  flex: 1 1 auto !important;
}

html body .plan-grid .plan-card__features li,
html body.home #plans-preview .plan-card__features li {
  display: grid !important;
  grid-template-columns: 19px minmax(0, 1fr) !important;
  column-gap: .72rem !important;
  align-items: start !important;
  align-content: start !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--muted);
  font-size: clamp(.88rem, .92vw, .96rem) !important;
  line-height: 1.52 !important;
}

html body .plan-grid .plan-card__features svg,
html body.home #plans-preview .plan-card__features svg {
  width: 18px !important;
  height: 18px !important;
  margin-top: .18em !important;
  flex: none !important;
}

html body .plan-grid .plan-card__features span,
html body.home #plans-preview .plan-card__features span {
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  html body .plan-grid .plan-card__features,
  html body.home #plans-preview .plan-card__features {
    row-gap: 1rem !important;
    margin-bottom: 1.35rem !important;
  }

  html body .plan-grid .plan-card__features li,
  html body.home #plans-preview .plan-card__features li {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    column-gap: .66rem !important;
    font-size: .92rem !important;
    line-height: 1.5 !important;
  }
}

/* Privacy statement shared by the Contact and Priority Cyber Help forms.
   Font family, style, weight, letter spacing and colour are deliberately
   identical in both locations; context-specific rules may adjust only size,
   line-height and margin where required for layout/phone viewport fit. */
.form-privacy-notice {
  margin: 14px 0 0;
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: var(--cn-global-intro-size) !important;
  font-weight: 400 !important;
  line-height: var(--cn-global-intro-line-height) !important;
  letter-spacing: 0 !important;
  color: var(--cn-global-intro-color) !important;
}

/* Privacy typography by context:
   Both forms share the same privacy font, weight and colour. The Contact
   statement uses a compact legal-copy scale so it aligns cleanly beneath
   the form without visually competing with the Contact intro. */
html body main#primary .contact-section .contact-panel .form-privacy-notice {
  width: 100% !important;
  max-width: 100% !important;
  margin: 4px 0 0 !important;
  padding: 0 !important;
  justify-self: start !important;
  align-self: start !important;
  text-align: left !important;
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: clamp(.78rem, .84vw, .88rem) !important;
  font-weight: 400 !important;
  line-height: 1.38 !important;
  letter-spacing: 0 !important;
  color: var(--cn-global-intro-color) !important;
}

html body .emergency-contact .form-privacy-notice {
  margin: 7px 0 0 !important;
  font-family: var(--cn-global-heading-font) !important;
  font-style: normal !important;
  font-size: clamp(.78rem, .84vw, .88rem) !important;
  font-weight: 400 !important;
  line-height: 1.38 !important;
  letter-spacing: 0 !important;
  color: var(--cn-global-intro-color) !important;
}

@media (max-height: 720px) and (min-width: 821px) {
  html body .emergency-contact .form-privacy-notice {
    font-size: .76rem !important;
    line-height: 1.34 !important;
  }
}

@media (max-width: 820px) {
  html body .emergency-contact__panel {
    width: min(360px, calc(100vw - 24px)) !important;
    max-height: calc(100dvh - 88px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  html body .emergency-contact .form-privacy-notice {
    margin: 7px 0 0 !important;
    font-size: .74rem !important;
    line-height: 1.32 !important;
  }
}

@media (max-width: 420px), (max-height: 600px) and (max-width: 820px) {
  html body .emergency-contact__panel {
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 76px) !important;
  }

  html body .emergency-contact .form-privacy-notice {
    margin-top: 6px !important;
  }
}


@media (min-width: 981px) {
  .footer-thin__item {
    text-align: right;
  }
}
