*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", "Roboto", system-ui, sans-serif;
  color: #eaf6ff;
  background-color: #020712;
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* Footer sticks to bottom */
}

main {
  flex: 1;
}

/* ===== Page background images (per body class) ===== */

/* Home page */
body.home {
  background-color: #020712;
  background-image: url("../images/backgrounds/bg-home.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* Fallback for browsers that can't display WebP */
@supports not (background-image: url("../images/backgrounds/bg-home.webp")) {
  body.home {
    background-image: url("../images/backgrounds/bg-home.png");
  }
}

/* Services page */
body.page-services {
  background: #020712 url("../images/backgrounds/bg-services.png") center top
    no-repeat fixed;
  background-size: cover;
}

/* Why this matters page */
body.page-why {
  background: #020712 url("../images/backgrounds/bg-why.png") center top
    no-repeat fixed;
  background-size: cover;
}

/* How we work page */
body.page-how {
  background: #020712 url("../images/backgrounds/bg-how.png") center top
    no-repeat fixed;
  background-size: cover;
}

/* Cyber tools page */
body.page-tools {
  background: #020712 url("../images/backgrounds/bg-tools.png") center top
    no-repeat fixed;
  background-size: cover;
}

/* About InfraSafe page */
body.page-about {
  background: #020712 url("../images/backgrounds/bg-about.png") center top
    no-repeat fixed;
  background-size: cover;
}

/* FAQs page */
body.page-faqs {
  background: #020712 url("../images/backgrounds/bg-faqs.png") center top
    no-repeat fixed;
  background-size: cover;
}

/* Contact page */
body.page-contact {
  background: #020712 url("../images/backgrounds/bg-contact.png") center top
    no-repeat fixed;
  background-size: cover;
}

/* ===== Global container ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Generic glass card */
.glass {
  background:
    radial-gradient(circle at top left, rgba(120, 210, 255, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(111, 214, 255, 0.12), transparent 55%),
    rgba(5, 14, 26, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(159, 216, 255, 0.32);
  box-shadow:
    0 0 0 1px rgba(5, 34, 63, 0.9),
    0 20px 42px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    linear-gradient(
      120deg,
      rgba(159, 216, 255, 0.06) 0,
      transparent 40%,
      transparent 60%,
      rgba(72, 192, 255, 0.08) 100%
    ),
    url("https://www.transparenttextures.com/patterns/dust.png");
  opacity: 0.18;
  mix-blend-mode: screen;
}

/* Hover glow on main cards */
.hero-card:hover,
.founder-combined:hover {
  border-color: rgba(159, 216, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(15, 80, 120, 0.9),
    0 26px 56px rgba(0, 0, 0, 0.9);
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: radial-gradient(circle at 10% 0, #041226 0, #020712 55%, #01030a 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
}

/* Inner container for logo + nav */
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand (logo + text) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
  border-radius: 10px;
  display: block;
}

.brand span {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #e9f6ff;
}

/* Main nav row */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

/* Default nav pills */
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  white-space: normal;

  text-decoration: none;
  color: #cfe8ff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(3, 16, 32, 0.9);
  box-shadow: 0 0 0 1px rgba(3, 25, 48, 0.9);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.main-nav a:hover {
  color: #ffffff;
  background: rgba(0, 227, 255, 0.14);
  box-shadow:
    0 0 16px rgba(0, 227, 255, 0.6),
    0 0 0 1px rgba(0, 227, 255, 0.55);
  transform: translateY(-1px);
}

/* Active page pill */
.main-nav a.is-active {
  color: #020713;
  background: radial-gradient(circle at 50% 0, #00e3ff 0%, #0071ff 70%);
  border-color: rgba(0, 227, 255, 0.9);
  box-shadow:
    0 0 22px rgba(0, 227, 255, 0.9),
    0 0 0 1px rgba(0, 40, 70, 0.9);
}

/* Book a Call CTA */
.main-nav a.nav-cta {
  margin-left: 0.75rem;
  background: linear-gradient(135deg, #00e3ff, #00ffa3);
  color: #020713 !important;
  font-weight: 700;
  box-shadow:
    0 0 26px rgba(0, 255, 200, 0.75),
    0 0 0 1px rgba(0, 64, 58, 0.9);
}

.main-nav a.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #3af1ff, #43ffbe);
  box-shadow:
    0 0 30px rgba(0, 255, 220, 0.95),
    0 0 0 1px rgba(0, 80, 70, 0.95);
}
/* ===== Nav Badge for Resources ===== */
.nav-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-new {
  background: linear-gradient(135deg, #00e3ff, #0078ff);
  color: #ffffff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(0, 227, 255, 0.6);
  animation: pulseBadge 2s infinite ease-in-out;
}

/* Soft glow pulsing effect */
@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 6px rgba(0, 227, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 227, 255, 0.9);
    transform: scale(1.06);
  }
  100% {
    box-shadow: 0 0 6px rgba(0, 227, 255, 0.4);
    transform: scale(1);
  }
}
/* ===== Black Friday Banner ===== */
.bf-banner {
  margin: 40px auto;
  padding: 28px 30px;
  border-radius: 16px;
  background: rgba(0, 20, 40, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.18);
  text-align: center;
  animation: bf-glow 3s ease-in-out infinite alternate;
}

@keyframes bf-glow {
  0% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.15); }
  100% { box-shadow: 0 0 22px rgba(0, 255, 255, 0.45); }
}

.bf-banner-inner {
  max-width: 900px;
  margin: 0 auto;
}

.bf-banner-title {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #00e3ff;
  font-weight: 700;
}

.bf-banner-sub {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #e8f7ff;
}

.bf-banner-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bf-btn-primary,
.bf-btn-ghost {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.bf-btn-primary {
  background: #00e3ff;
  color: #00121f;
  font-weight: 600;
}

.bf-btn-primary:hover {
  background: #03bcd6;
}

.bf-btn-ghost {
  border: 1px solid #00e3ff;
  color: #00e3ff;
}

.bf-btn-ghost:hover {
  background: rgba(0, 227, 255, 0.1);
}

/* ===== Home hero ===== */
.hero-section {
  padding: 120px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.hero-grid > * {
  align-self: stretch;
}

/* Hero card */
.hero-card {
  padding: 32px 32px 26px;
  display: flex;
  flex-direction: column;
}

.hero-card h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.15;
  color: #f6fcff;
  text-shadow:
    0 0 14px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}

.hero-lead {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #d3e8ff;
}

.hero-tag {
  margin: 0 0 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cbe5ff;
}

.hero-sub {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #c7e1ff;
}

.hero-list {
  margin: 0 0 20px;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.hero-list li {
  margin-bottom: 4px;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

/* Buttons generic */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #6fd6ff, #00e3ff);
  color: #021725;
  box-shadow:
    0 0 16px rgba(159, 216, 255, 0.95),
    0 12px 30px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(159, 216, 255, 1),
    0 14px 34px rgba(0, 0, 0, 0.8);
}

.btn-ghost {
  background: rgba(5, 20, 35, 0.9);
  border: 1px solid rgba(159, 216, 255, 0.6);
  color: #e9f6ff;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.95),
    0 10px 24px rgba(0, 0, 0, 0.7);
}

.btn-ghost:hover {
  background: rgba(15, 40, 70, 0.98);
  transform: translateY(-2px);
}

/* Small meta chips under hero */
.hero-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #b7d5ea;
}

.hero-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 216, 255, 0.4);
  background: radial-gradient(
    circle at top right,
    rgba(159, 216, 255, 0.16),
    rgba(10, 24, 35, 0.95)
  );
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 6px 16px rgba(0, 0, 0, 0.55);
}

/* ===== Google reviews strip / marquee ===== */

.reviews-strip {
  padding: 10px 0 0;
}

.reviews-strip-inner {
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews-strip-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(5, 22, 40, 0.96);
  border: 1px solid rgba(159, 216, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 8px 18px rgba(0, 0, 0, 0.7);
  font-size: 12.5px;
}

.reviews-google-g {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews-google-text {
  font-weight: 700;
  color: #eaf6ff;
}

.reviews-google-score {
  font-weight: 800;
  color: #ffe48c;
}

.reviews-overline {
  font-size: 13px;
  color: #b7d5ea;
}

/* Marquee container */
.reviews-marquee {
  overflow: hidden;
  position: relative;
}

/* The moving track */
.reviews-marquee-track {
  display: flex;
  gap: 14px;
  animation: reviewsScroll 45s linear infinite;
}

/* Pause on hover or keyboard focus */
.reviews-marquee:hover .reviews-marquee-track,
.reviews-marquee:focus-within .reviews-marquee-track {
  animation-play-state: paused;
}

/* Individual review pill */
.review-pill {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 340px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(5, 22, 40, 0.96);
  border: 1px solid rgba(159, 216, 255, 0.4);
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 10px 22px rgba(0, 0, 0, 0.75);
}

.review-stars {
  font-size: 14px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffe48c, #ffd24a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-text {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 4px;
  color: #d3e8ff;
}

.review-meta {
  font-size: 12.5px;
  margin: 0;
  color: #9fd8ff;
  opacity: 0.9;
}

/* Smooth infinite scroll */
@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Founder combined card ===== */
.founder-combined {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.founder-photo {
  padding: 20px 20px 0;
  display: flex;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  display: block;
}

.founder-copy {
  padding: 22px 22px 20px;
}

.founder-copy h2 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #9fd8ff;
}

.founder-copy p {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

/* Certificate row */
.cert-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: radial-gradient(
    circle at top left,
    rgba(111, 214, 255, 0.2),
    rgba(5, 24, 38, 0.98)
  );
  border: 1px solid rgba(159, 216, 255, 0.65);
  font-weight: 800;
  font-size: 13px;
  color: #effbff;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 8px 18px rgba(0, 0, 0, 0.65);
}

.cert-image {
  flex: 0 0 auto;
  width: 160px;
  max-width: 35%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(106, 193, 140, 0.78);
  background: #02140a;
  box-shadow:
    0 0 0 1px rgba(5, 45, 18, 0.9),
    0 10px 24px rgba(0, 0, 0, 0.9);
  padding: 0;
  cursor: zoom-in;
  display: inline-flex;
}

.cert-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.25s ease;
}

.cert-image:hover img {
  transform: scale(1.12);
}

/* Hero stream card actions */
.stream-actions {
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.stream-tag {
  font-size: 12.5px;
  color: #b7d5ea;
}

/* Embedded Twitch preview inside hero card */
.stream-embed {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 14px 30px rgba(0, 0, 0, 0.85);
}

.stream-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Contact page Calendly card */
.contact-calendly {
  padding: 22px 22px 20px;
  margin-bottom: 22px;
}

.contact-calendly h1 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #f6fcff;
}

.contact-calendly p {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.calendly-wrapper {
  margin-top: 10px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 16px 32px rgba(0, 0, 0, 0.85);
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 640px;
}

@media (max-width: 640px) {
  .calendly-inline-widget {
    height: 720px;
  }
}

/* Optionally hide the embed on smaller screens */
@media (max-width: 900px) {
  .stream-embed {
    display: none;
  }
}

/* ===== Footer ===== */
#footersec {
  max-width: 1140px;
  margin: 40px auto 20px;
  padding: 28px 24px;
  text-align: center;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(6, 40, 68, 0.8),
    0 -12px 36px rgba(0, 0, 0, 0.55);
}

#footersec * {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  color: #ffffff;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.footer-text {
  font-size: 15.5px;
  margin: 0 0 8px;
  opacity: 0.85;
}

.footer-links {
  margin: 0;
  font-size: 15.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-link {
  color: #9fd8ff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #b8f4ff;
  text-shadow: 0 0 8px rgba(0, 227, 255, 0.5);
  transform: translateY(-1px);
}

.divider {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 2px;
}

.footer-about p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: #d3e8ff;
  opacity: 0.9;
}

/* ===== Privacy Modal ===== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-modal.open {
  display: flex;
}

.privacy-content.glass {
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  padding: 32px;
  text-align: left;
  position: relative;
  overflow-y: auto;
  color: #e9f6ff;
}

.privacy-content h2 {
  font-weight: 800;
  color: #9fd8ff;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 1;
}

.privacy-content h3 {
  color: #b8e6ff;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.privacy-content p {
  line-height: 1.55;
  margin-bottom: 14px;
  color: #cfe8ff;
  position: relative;
  z-index: 1;
}

/* Close button */
.privacy-content .close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: rgba(10, 24, 35, 0.9);
  border: 1px solid rgba(159, 216, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 8px 18px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
  z-index: 2;
}

.privacy-content .close:hover {
  background: rgba(20, 40, 60, 1);
  transform: scale(1.08);
}

/* Animated GDPR note */
.gdpr-note {
  background: rgba(10, 24, 35, 0.92);
  border: 1px solid rgba(159, 216, 255, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 18px;
  opacity: 0;
  transform: translateY(8px);
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 10px 26px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 1;
}

.gdpr-note p {
  margin: 0;
  color: #cfe8ff;
  font-size: 15px;
  line-height: 1.5;
}

.gdpr-note a {
  color: #9fd8ff;
  text-decoration: none;
  font-weight: 700;
}

.gdpr-note a:hover {
  color: #b8f4ff;
  text-shadow: 0 0 6px rgba(0, 227, 255, 0.4);
}

/* animation & soft pulse */
.gdpr-note.anim-on {
  animation: fadeSlideIn 0.45s ease forwards 0.08s,
    glowPulse 2.2s ease-in-out 1 0.6s;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(159, 216, 255, 0);
  }
  40% {
    box-shadow: 0 0 18px rgba(159, 216, 255, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(159, 216, 255, 0);
  }
}

.gdpr-footer {
  margin-top: 12px;
  font-size: 12.5px;
  color: #b7d5ea;
}

/* ===== Page hero (services / why / how we work / others) ===== */
.page-hero {
  padding: 110px 0 20px;
}

.page-hero-card {
  padding: 26px 26px 22px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: center;
}

.page-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 38px);
  color: #f6fcff;
}

.page-hero-copy p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #d3e8ff;
}

.page-hero-visual img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* ===== Content images inside service-style cards (all pages) ===== */
.service-media {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.service-media img {
  width: 70%;
  max-width: 340px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
}
/* ===== Insights / LinkedIn Articles Section ===== */

.insights-section {
  padding: 40px 0 50px;
}

.insights-card {
  padding: 28px 24px;
}

.insights-card h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: #5ec8ff;
}

.insights-intro {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #c4e4ff;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Single insight “card” that is fully clickable */
.insight-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border-radius: 12px;
  background: rgba(2, 7, 18, 0.85);
  border: 1px solid rgba(94, 200, 255, 0.25);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.insight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(0, 227, 255, 0.35);
  border-color: rgba(0, 227, 255, 0.7);
}

.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.insight-copy h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: #ffffff;
}

.insight-copy p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cfe7ff;
}

.insight-cta {
  font-size: 0.93rem;
  font-weight: 600;
  color: #5ec8ff;
}
.insights-footer {
  margin-top: 20px;
  text-align: right;
}

.insights-btn {
  font-size: 0.95rem;
  padding-inline: 18px;
}

/* Responsive tweak */
@media (max-width: 640px) {
  .insight-item {
    grid-template-columns: 1fr;
  }

  .insight-thumb img {
    max-height: 180px;
  }
}

/* ===== Services section (and similar grids) ===== */
.services-section {
  padding: 10px 0 40px;
}

.section-title {
  margin: 26px 0 14px;
  font-size: 20px;
  color: #9fd8ff;
}

.section-title-spacing {
  margin-top: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #f2fbff;
}

.service-intro {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.service-list {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #c5ddf5;
}

.service-list li {
  margin-bottom: 4px;
}

.service-meta {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #bcd4ee;
}

/* Service CTA */
.service-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(5, 24, 42, 0.95);
  border: 1px solid rgba(159, 216, 255, 0.75);
  color: #e9f6ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.95),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.service-cta:hover {
  background: rgba(15, 44, 72, 0.98);
  transform: translateY(-1px);
  box-shadow:
    0 0 16px rgba(159, 216, 255, 0.8),
    0 10px 24px rgba(0, 0, 0, 0.8);
}

/* Support note block (used on many pages) */
.support-note {
  margin-top: 26px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.support-note p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.support-note-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6fd6ff, #00e3ff);
  color: #021725;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow:
    0 0 14px rgba(159, 216, 255, 0.9),
    0 10px 22px rgba(0, 0, 0, 0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.support-note-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 20px rgba(159, 216, 255, 1),
    0 12px 28px rgba(0, 0, 0, 0.9);
}

/* ===== Pricing grid (services page – core services) ===== */
.pricing-section {
  margin-top: 30px;
}

.pricing-card {
  padding: 22px 22px 20px;
}

.pricing-intro {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.pricing-item {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(5, 24, 42, 0.96);
  border: 1px solid rgba(159, 216, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.95),
    0 12px 26px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-item h3 {
  margin: 0;
  font-size: 15.5px;
  color: #f2fbff;
}

.pricing-price {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.pricing-subprice {
  font-size: 13px;
  font-weight: 600;
  color: #d3e8ff;
}

.pricing-note {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #bcd4ee;
}

.pricing-footnote {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #bcd4ee;
}

/* Additional guide pricing band for Website Reviews & Reminder Systems (option C) */
.pricing-section-additional {
  margin-top: 26px;
}

.pricing-card-additional {
  padding-top: 24px;
}

.pricing-card-additional h3 {
  margin: 16px 0 6px;
  font-size: 16px;
  color: #e9f6ff;
}

.pricing-card-additional ul {
  margin: 4px 0 8px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #cfe8ff;
}

.pricing-card-additional ul li {
  margin-bottom: 4px;
}

/* Responsive layout for pricing grid */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-card,
  .pricing-card-additional {
    padding: 20px 18px 18px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== Cyber tools (2x2 grid) ===== */
.tools-hero {
  padding: 100px 0 26px;
}

.tools-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 22px 22px 20px;
}

.tools-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 38px);
  color: #f6fcff;
}

.tools-hero-copy p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #d3e8ff;
}

.tools-hero-media img {
  width: 70%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: 18px;
  display: block;
}

.tools-grid-section {
  padding: 10px 0 30px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tool-card {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
}

.tool-img {
  width: 65%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: block;
}

.tool-card h3 {
  margin: 4px 0 10px;
  font-size: 18px;
  color: #f2fbff;
}

.tool-card p {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.tool-card ul {
  margin: 0 0 10px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #c5ddf5;
}

.tool-card ul li {
  margin-bottom: 4px;
}

/* Tool buttons */
.tool-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(5, 24, 42, 0.95);
  border: 1px solid rgba(159, 216, 255, 0.75);
  color: #e9f6ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.95),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.tool-btn:hover {
  background: rgba(15, 44, 72, 0.98);
  transform: translateY(-1px);
  box-shadow:
    0 0 16px rgba(159, 216, 255, 0.8),
    0 10px 24px rgba(0, 0, 0, 0.8);
}

/* Support box under tools */
.tools-support {
  max-width: 1140px;
  margin: 0 auto 40px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tools-support p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.tool-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6fd6ff, #00e3ff);
  color: #021725;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow:
    0 0 14px rgba(159, 216, 255, 0.9),
    0 10px 22px rgba(0, 0, 0, 0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tool-support-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 20px rgba(159, 216, 255, 1),
    0 12px 28px rgba(0, 0, 0, 0.9);
}

/* ===== FAQ interactive cards ===== */
.faq-section .section-title {
  margin-top: 22px;
}

.faq-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.18s ease;
}

.faq-card:hover {
  border-color: rgba(159, 216, 255, 0.6);
  box-shadow:
    0 0 0 1px rgba(15, 80, 120, 0.9),
    0 22px 48px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

.faq-card.is-open {
  border-color: rgba(159, 216, 255, 0.8);
  box-shadow:
    0 0 0 1px rgba(18, 98, 150, 0.95),
    0 26px 56px rgba(0, 0, 0, 0.95);
}

.faq-header {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  border-radius: 20px 20px 0 0;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #f2fbff;
}

.faq-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(159, 216, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 8px 18px rgba(0, 0, 0, 0.7);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #9fd8ff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::before {
  width: 2px;
  height: 12px;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.faq-icon::after {
  width: 12px;
  height: 2px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-card.is-open .faq-icon::before {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-body {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(159, 216, 255, 0.3);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.faq-body p {
  margin: 10px 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.faq-body .service-meta {
  margin-bottom: 0;
}

.faq-card.is-open .faq-body {
  opacity: 1;
  transform: translateY(0);
  max-height: 800px;
}

/* ===== Contact page ===== */
.contact-section {
  padding: 10px 0 40px;
}

.contact-intro {
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.contact-highlight {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #e8f5ff;
  font-weight: 600;
}

.contact-card {
  display: flex;
  flex-direction: column;
}

/* Form layout */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 8px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #dbeeff;
}

.contact-form-group small {
  font-size: 12.5px;
  color: #b7d5ea;
}

/* Inputs, selects, textarea */
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(159, 216, 255, 0.55);
  background: rgba(3, 16, 30, 0.96);
  color: #eaf6ff;
  font-size: 14px;
  outline: none;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.95),
    0 8px 18px rgba(0, 0, 0, 0.75);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: rgba(191, 217, 242, 0.7);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: rgba(0, 227, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(0, 227, 255, 0.7),
    0 10px 24px rgba(0, 0, 0, 0.9);
  background: rgba(4, 20, 36, 0.98);
}

.contact-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Actions row and helper text */
.contact-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.contact-helper {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #bcd4ee;
  max-width: 520px;
}

/* Submit button */
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  background: linear-gradient(90deg, #6fd6ff, #00e3ff);
  color: #021725;
  box-shadow:
    0 0 16px rgba(159, 216, 255, 0.95),
    0 12px 28px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 22px rgba(159, 216, 255, 1),
    0 16px 32px rgba(0, 0, 0, 0.95);
}

.contact-submit:active {
  transform: translateY(0);
  box-shadow:
    0 0 12px rgba(159, 216, 255, 0.85),
    0 10px 22px rgba(0, 0, 0, 0.9);
}

/* Message-sent modal */
.message-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.message-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.message-modal-card.glass {
  max-width: 440px;
  width: 100%;
  padding: 24px 22px 20px;
  text-align: left;
  position: relative;
  animation: messagePop 0.32s ease forwards;
}

.message-modal-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #e9f6ff;
}

.message-modal-card p {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

.message-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(10, 24, 35, 0.9);
  border: 1px solid rgba(159, 216, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 8px 18px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

.message-modal-close:hover {
  background: rgba(20, 40, 60, 1);
  transform: scale(1.08);
}

@keyframes messagePop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Contact responsive tweaks */
@media (max-width: 720px) {
  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form-group.full-width {
    grid-column: 1 / -1;
  }

  .contact-actions {
    align-items: flex-start;
  }
}

/* ===== Cookie banner & toast ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none; /* JS will show it */
  padding: 1rem;
  transform: translateY(0);
}

.cookie-inner {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
}

.cookie-banner[aria-hidden="false"] {
  animation: slideUp 0.35s ease-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

/* Toast container – glowing pop effect */
.cookie-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;

  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #eaf6ff;

  background:
    radial-gradient(circle at top left, rgba(0, 227, 255, 0.35), transparent 60%),
    rgba(10, 15, 30, 0.9);
  border: 1px solid rgba(0, 227, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 16px 32px rgba(0, 0, 0, 0.9);

  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Circular glowing icon with centred tick */
.cookie-toast-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 227, 255, 0.9);
  box-shadow: 0 0 12px rgba(0, 227, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
}

.cookie-toast-icon::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #00e3ff;
  border-bottom: 2px solid #00e3ff;
  transform: rotate(-45deg) translateY(-1px);
}

/* Visible state with pop */
.cookie-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: toastPop 0.38s ease-out;
}

@keyframes toastPop {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.9);
    box-shadow:
      0 0 0 0 rgba(0, 227, 255, 0),
      0 8px 18px rgba(0, 0, 0, 0.7);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
    box-shadow:
      0 0 20px rgba(0, 227, 255, 0.9),
      0 18px 32px rgba(0, 0, 0, 0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 12px rgba(0, 227, 255, 0.6),
      0 14px 26px rgba(0, 0, 0, 0.9);
  }
}

/* ===== Cyber Health Check quiz ===== */

#cyber-quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

#cyber-quiz-overlay[aria-hidden="false"] {
  display: flex;
}

#cyber-quiz-modal {
  max-width: 720px;
  width: 100%;
  padding: 24px 24px 20px;
  border-radius: 20px;
  position: relative;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

#cyber-quiz-modal h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #f6fcff;
}

#cyber-quiz-modal h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  color: #9fd8ff;
}

#cyber-quiz-modal p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #cfe8ff;
}

/* Close button */
#cyber-quiz-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(10, 24, 35, 0.9);
  border: 1px solid rgba(159, 216, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.9),
    0 8px 18px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

#cyber-quiz-close:hover {
  background: rgba(20, 40, 60, 1);
  transform: scale(1.06);
}

/* Steps */
.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

/* Radio row on first step */
.quiz-radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-size: 14.5px;
  color: #d3e8ff;
}

/* Sections + questions */
.quiz-section {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(159, 216, 255, 0.35);
}

.quiz-question {
  margin: 8px 0 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(5, 20, 36, 0.9);
  border: 1px solid rgba(159, 216, 255, 0.3);
}

.quiz-question p {
  margin: 0 0 6px;
}

.quiz-question label {
  margin-right: 12px;
  font-size: 13.5px;
  color: #cfe8ff;
}

/* Buttons in quiz */
.quiz-primary-btn,
.quiz-secondary-btn,
.risk-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
}

.quiz-primary-btn,
.risk-submit-btn {
  background: linear-gradient(90deg, #6fd6ff, #00e3ff);
  color: #021725;
  box-shadow:
    0 0 16px rgba(159, 216, 255, 0.95),
    0 12px 28px rgba(0, 0, 0, 0.8);
}

.quiz-primary-btn:hover,
.risk-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 22px rgba(159, 216, 255, 1),
    0 16px 32px rgba(0, 0, 0, 0.95);
}

.quiz-secondary-btn {
  background: rgba(5, 20, 35, 0.9);
  border: 1px solid rgba(159, 216, 255, 0.6);
  color: #e9f6ff;
}

.quiz-secondary-btn:hover {
  background: rgba(15, 40, 70, 0.98);
}

/* Results */
.result-block {
  margin: 8px 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(5, 22, 40, 0.95);
  border: 1px solid rgba(159, 216, 255, 0.5);
  font-size: 14px;
  line-height: 1.55;
  color: #d3e8ff;
}

.result-block strong {
  display: block;
  margin-bottom: 4px;
  color: #f2fbff;
}

.result-offer {
  margin-top: 12px;
}

/* Email capture row */
.risk-form {
  margin-top: 10px;
}

.risk-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.risk-form-row input[type="text"],
.risk-form-row input[type="email"] {
  flex: 1 1 160px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(159, 216, 255, 0.55);
  background: rgba(3, 16, 30, 0.96);
  color: #eaf6ff;
  font-size: 14px;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 0.95),
    0 8px 18px rgba(0, 0, 0, 0.75);
}

/* Floating quiz button */
#quiz-fab {
  position: fixed;
  left: 18px;
  bottom: 90px;
  z-index: 9000;
  padding: 10px 20px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: radial-gradient(
    circle at top left,
    rgba(0, 227, 255, 0.32),
    rgba(0, 89, 122, 0.9)
  );
  color: #ffffff;
  box-shadow:
    0 0 16px rgba(159, 216, 255, 0.95),
    0 12px 28px rgba(0, 0, 0, 0.8);
}

#quiz-fab:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 22px rgba(159, 216, 255, 1),
    0 16px 32px rgba(0, 0, 0, 0.95);
}

/* Mobile tweaks for quiz */
@media (max-width: 640px) {
  #cyber-quiz-modal {
    padding: 20px 18px 18px;
    max-height: calc(100vh - 40px);
  }

  .risk-form-row {
    flex-direction: column;
  }
}

/* ===== Floating CTA Buttons (collapsed menu – text pills) ===== */
.cta-float-wrap {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* Main toggle pill ("Contact & Links") */
.cta-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid rgba(0, 227, 255, 0.65);
  color: #eaf6ff;
  background:
    radial-gradient(circle at top left, rgba(0, 227, 255, 0.3), rgba(5, 22, 40, 0.96));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 1),
    0 12px 28px rgba(0, 0, 0, 0.9);
  transition: all 0.2s ease;
}

.cta-toggle:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at top left, rgba(0, 227, 255, 0.45), rgba(8, 52, 82, 0.98));
  box-shadow:
    0 0 20px rgba(0, 227, 255, 1),
    0 16px 36px rgba(0, 0, 0, 0.95);
}

/* Container that holds the individual buttons */
.cta-float-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;

  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* Show the list when hovering over the wrapper or focusing inside */
.cta-float-wrap:hover .cta-float-list,
.cta-float-wrap:focus-within .cta-float-list {
  max-height: 360px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Individual CTA pill buttons */
.glass-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #eaf6ff;
  text-decoration: none;
  cursor: pointer;

  background:
    radial-gradient(circle at top left, rgba(0, 227, 255, 0.22), rgba(5, 22, 40, 0.96));
  border: 1px solid rgba(0, 227, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 1),
    0 10px 24px rgba(0, 0, 0, 0.9);
  transition: all 0.2s ease;
}

.glass-cta:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at top left, rgba(0, 227, 255, 0.4), rgba(8, 52, 82, 0.98));
  box-shadow:
    0 0 18px rgba(0, 227, 255, 0.95),
    0 14px 32px rgba(0, 0, 0, 0.95);
}

/* Back to top – extra class for hiding at top of page */
#cta-backtotop.is-hidden {
  display: none;
}

@media (max-width: 640px) {
  .cta-float-wrap {
    right: 12px;
    bottom: 14px;
  }

  .cta-toggle {
    padding: 8px 16px;
    font-size: 12.5px;
  }

  .glass-cta {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* ===== Floating Icon CTA Menu (WhatsApp / Book / Twitter etc.) ===== */
.cta-icon-wrap {
  position: fixed;
  right: 20px;
  bottom: 110px; /* moved up so Chatbase bubble can sit below */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 227, 255, 0.65);
  background: rgba(4, 24, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 1),
    0 12px 26px rgba(0, 0, 0, 0.9);
  transition: all 0.2s ease;
}

.cta-icon-toggle:hover {
  transform: translateY(-2px);
  background: rgba(0, 227, 255, 0.25);
  box-shadow:
    0 0 18px rgba(0, 227, 255, 1),
    0 16px 36px rgba(0, 0, 0, 0.95);
}

/* Hidden list */
.cta-icon-list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.25s ease;
}

/* Expand on hover */
.cta-icon-wrap:hover .cta-icon-list,
.cta-icon-wrap:focus-within .cta-icon-list {
  opacity: 1;
  max-height: 400px;
  pointer-events: auto;
  transform: translateY(0);
}

/* Individual icon buttons */
.cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 227, 255, 0.6);
  background: rgba(4, 24, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(4, 30, 53, 1),
    0 10px 24px rgba(0, 0, 0, 0.9);
  transition: all 0.25s ease;
}

.cta-icon:hover {
  transform: translateY(-2px);
  background: rgba(0, 227, 255, 0.22);
  box-shadow:
    0 0 14px rgba(0, 227, 255, 1),
    0 14px 32px rgba(0, 0, 0, 0.95);
}

.cta-icon svg {
  pointer-events: none;
}

/* ===== Google Reviews widget (Places API block further down pages) ===== */

.reviews-section {
  padding: 40px 0 10px;
}

.reviews-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 22px 22px 20px;
}

.reviews-card h2 {
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.reviews-list {
  list-style: none;
  margin: 18px 0 10px;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .reviews-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-card {
  background: rgba(4, 18, 40, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(122, 199, 255, 0.35);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.review-author {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #9fb7d3;
}

.review-empty,
.review-error {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #9fb7d3;
}

.reviews-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #7ac7ff;
  text-decoration: none;
}

.reviews-link:hover {
  text-decoration: underline;
}

/* ===== Responsive tweaks (shared) ===== */
@media (max-width: 960px) {
  .hero-section {
    padding-top: 100px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-combined {
    margin-top: 16px;
  }

  .page-hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .tools-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tools-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mobile tweaks for reviews strip */
@media (max-width: 640px) {
  .reviews-strip-inner {
    padding: 12px 14px 14px;
  }

  .review-pill {
    min-width: 220px;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 24px 20px;
  }

  .founder-copy {
    padding: 20px 18px 18px;
  }

  .page-hero {
    padding-top: 100px;
  }

  .page-hero-card {
    padding: 20px 18px;
  }

  .service-card {
    padding: 20px 18px;
  }

  .support-note {
    padding: 16px 16px;
  }

  .tools-hero-inner {
    padding: 20px 18px;
  }

  .tools-support {
    padding: 16px 16px;
  }

  #footersec {
    padding: 24px 16px;
  }

  .footer-text,
  .footer-links {
    font-size: 14.5px;
  }

  .faq-header {
    padding: 14px 16px;
  }

  .faq-body {
    padding: 0 16px 16px;
  }
}
/* === Guide Pricing – visual polish === */

/* More space above the section title and below the cards above */
.pricing-section {
  margin-top: 44px;
}

/* Keep the Guide Pricing card slightly narrower and centred */
.pricing-card {
  max-width: 1040px;
  margin: 0 auto 10px;       /* centre it under the two cards above */
  padding: 26px 32px 22px;   /* a little more breathing room */
}

/* Section title spacing just for pricing block */
.pricing-section .section-title {
  margin-bottom: 14px;
}

/* Main intro paragraph – slightly softer and narrower */
.pricing-intro {
  max-width: 780px;
  font-size: 14px;
  color: #d0e4ff;
}

/* Turn bold labels inside the pricing card into mini headings */
.pricing-card strong {
  display: block;
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 14.5px;
  font-weight: 700;
  color: #f6fcff;
}

/* Bullet lists – a bit more air and slightly smaller text */
.pricing-card ul {
  margin: 4px 0 8px 20px;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #c7ddf7;
}

.pricing-card ul li {
  margin-bottom: 4px;
}

/* Small caption under each group (e.g. “Ideal for trades…”) */
.pricing-footnote {
  margin-top: 10px;
  font-size: 13px;
  color: #b9d2f0;
}

/* On smaller screens, keep it full width but with softer padding */
@media (max-width: 768px) {
  .pricing-card {
    max-width: 100%;
    padding: 22px 18px 18px;
  }

  .pricing-intro {
    max-width: 100%;
  }
}
/* === Clean vertical spacing between stacked cards === */
/* Only add vertical spacing when cards are stacked in a column */
.stacked-cards .glass + .glass {
  margin-top: 26px;
}


/* === Improve layout of the Guide Pricing card === */
.pricing-card {
  max-width: 1080px;
  margin: 32px auto 0 !important;  /* clean stop/start */
  padding: 36px 32px 26px !important;
  border-radius: 22px;
}

/* Make sure the section title inside doesn’t stick to the top */
.pricing-section .section-title,
.pricing-card h2 {
  margin-top: 0;
}
/* ============================================================
   RESOURCES PAGE — FULL STYLING
   ============================================================ */

body.page-resources {
  background-color: #020712;
  color: #eaf6ff;
}

/* ===== Hero Section ===== */

.page-resources .resources-hero {
  padding: 40px 0 20px;
}

.page-resources .resources-hero-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(2, 7, 18, 0.55);
  border: 1px solid rgba(94, 200, 255, 0.3);
  box-shadow: 0 0 22px rgba(0, 227, 255, 0.06);
}

.page-resources .resources-hero-card h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #5ec8ff;
}

.page-resources .resources-hero-card p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #cfe7ff;
}

/* ===== List Section ===== */

.page-resources .resources-list {
  padding: 10px 0 50px;
}

/* Container for the cards */
.page-resources .resource-grid.glass {
  padding: 22px 20px;
  background: rgba(2, 7, 18, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(94, 200, 255, 0.2);
}

/* ===== Resource Card ===== */

.page-resources .resource-card {
  display: block;
  padding: 20px 18px;
  border-radius: 14px;
  background: rgba(2, 7, 18, 0.85);
  border: 1px solid rgba(94, 200, 255, 0.25);
  color: #eaf6ff;
  text-decoration: none;
  margin-bottom: 18px;

  transition: transform 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}

/* Remove underline on all text inside */
.page-resources .resource-card h2,
.page-resources .resource-card p,
.page-resources .resource-card span {
  text-decoration: none;
}

/* Hover effect */
.page-resources .resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 227, 255, 0.75);
  box-shadow: 0 0 32px rgba(0, 227, 255, 0.28);
}

/* ===== Labels, Titles & Text ===== */

.page-resources .resource-type {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  margin-bottom: 8px;
  border-radius: 999px;

  background: rgba(94, 200, 255, 0.12);
  color: #5ec8ff;
}

.page-resources .resource-card h2 {
  font-size: 1.18rem;
  margin: 6px 0 10px;
  color: #ffffff;
}

.page-resources .resource-card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.55;
  color: #cfe7ff;
}

.page-resources .resource-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5ec8ff;
}

.page-resources .resource-card:hover .resource-cta {
  text-decoration: underline;
}


/* ===== Responsive Grid ===== */

@media (min-width: 768px) {
  .page-resources .resource-grid.glass {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .page-resources .resource-card {
    margin-bottom: 0;
  }
}
/* ============================================================
   RESOURCES PAGE — BACKGROUND IMAGE
   ============================================================ */

/* Add your generated AI background image to assets/images/backgrounds/bg-resources.webp */

body.page-resources {
  background-color: #020712;
  background-image: url("../images/backgrounds/bg-resources.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Creates that premium ‘depth’ effect */
  color: #eaf6ff;
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url("../images/backgrounds/bg-resources.png")) {
  body.page-resources {
    background-image: url("../images/backgrounds/bg-resources.png");
  }
}


