*,
*::before,
*::after {
  box-sizing: border-box;
}


  html {
    overflow-x: hidden;
  }

  body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #f5f6f8;
      color: #222;
  }

  h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .top-accent-bar {
      height: 12px;
      background: #001028; /* hero navy */
  }

  .site-header {
      background: #123058;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 2000;
      background: #123058;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  }

  .site-header a {
      color: #fff;
      text-decoration: none;
      margin-right: 20px;
  }

  .overview {
      padding: 60px 0;
  }

  .overview .card {
      background: #fff;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 6px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    padding: 8px 32px;
  }

  .logo-img {
    height: 25px;
    width: auto;
    display: block;
  }

  .logo {
    margin-left: 4px;   /* or 8px if you want more breathing room */
  }

  .logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: none;
    margin-left: auto;   /* 🔑 pushes hamburger right */
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #001028;
    align-items: center;
    overflow: hidden;
    padding-top: 0px;      /* ← STANDARDIZED TOP OFFSET */
    padding-bottom: 0px;
  }

  .hero-text {
    max-width: 700px;
    margin-left: auto;
    padding: 0 48px;        /* horizontal only */
    color: #fff;
  }

  .hero-image {
    display: flex;
    align-items: center;              /* Center image vertically */
    justify-content: flex-end;        /* Push image to the right edge */
  }

  .hero-image img {
    max-height: 460px;
    object-fit: contain;
  }

  .hero h1 {
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -0.015em;
  }

  .hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #e6edf6;
  }

  .hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem); /* existing h1 size */
    line-height: 1.15;
  }

  .hero-title-emphasis {
    display: block;                /* ensures clean line break */
    font-size: clamp(4.4rem, 5vw, 3.4rem);
    font-weight: 500;
    margin-top: 0.2em;
  }

  .cta-btn {
    display: inline-block;
    background: #f4a21d;
    color: #000000;
    padding: 14px 28px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }

  .cta-btn:hover {
    background: #ffb33a;
    transform: translateY(-1px);
  }

  a:focus-visible,
  button:focus-visible {
    outline: 2px solid #c9a23f;
    outline-offset: 2px;
  }

  .diagnostic-gap {
    background: #f0f3f8;
    text-align: center;
    padding: 72px 0;
  }

  .diagnostic-gap h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
  }

  .diagnostic-subtext {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #444;
    line-height: 1.6;
  }

  .diagnostic-icons {
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;   /* KEY LINE */
    justify-items: center;
  }

  .diagnostic-cta {
    margin-top: 48px;
    text-align: center;
  }


  .diagnostic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: #0b1c36;
  }

  .diagnostic-item img {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
  }

  .service-summary {
    background: linear-gradient(
      180deg,
      #f1f3f8 0%,
      #e9ecf3 100%
    );
    padding: 72px 0;
    text-align: center;
  }

  .service-summary h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .service-summary-text {
    max-width: 820px;
    margin: 0 auto 40px;
    color: #444;
    line-height: 1.6;
  }

  .service-pillars {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .service-pillar {
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  }

  .pillar-icon {
    font-size: 1.5rem;
  }

  .pillar-label {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }


  .service-trust {
    font-size: 0.95rem;
    color: #555;
  }

  .site-footer {
    text-align: center;
    padding: 24px 0;
    color: #666;
    font-size: 0.9rem;
  }

  .homepage-cta {
    background: linear-gradient(135deg, #0b1c36, #123c8c);
    padding: 64px 0;
    text-align: center;
  }

  .homepage-cta h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
  }

  .homepage-cta .cta-btn {
    font-size: 1.05rem;
    padding: 14px 32px;
  }

  .page-hero {
    background: linear-gradient(135deg, #0b1c36, #123c8c);
    color: #ffffff;
    padding: 72px 0;
    text-align: center;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 12px;
  }

  .page-tagline {
    max-width: 720px;
    margin: 0 auto;
    color: #e6edf6;
    font-size: 1.05rem;
  }

  .coming-soon {
    padding: 72px 0;
    background: #f5f6f8;
  }

  .coming-soon-card {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    text-align: center;
  }

  .coming-soon-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .coming-soon-card p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .coming-soon-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 32px;
  }

  /* ============================= */
  /* MEMBERSHIPS PAGE              */
  /* ============================= */

  .membership-explainer {
    background: #eef1f6; /* slightly darker than page background */
    padding: 64px 0;
    text-align: center;
  }

  .membership-explainer p {
    max-width: 820px;
    margin: 12px auto;
    line-height: 1.6;
    color: #333;
  }

  .membership-options {
    background: #f6f7fa;
    padding: 72px 0;
  }

  .membership-options h2 {
    text-align: center;
    margin-bottom: 48px;
  }

  .membership-who {
    font-size: 0.9rem;
    color: #555;
  }

  .membership-flow {
    background: linear-gradient(180deg, #eef1f6 0%, #e4e8f0 100%);
    padding: 64px 0;
    text-align: center;
  }

  .flow-sequence {
    font-size: 1.2rem;
    margin-top: 16px;
    color: #0b1c36;
  }

  .memberships-cta {
    background: #001028;
    color: #fff;
    padding: 64px 0;
    text-align: center;
  }

  .memberships-cta h2 {
    margin-bottom: 24px;
  }

  /* =========================
    TOOLS SECTION
    ========================= */

  .tools {
    background: #f6f7fa;
    padding: 72px 0;
  }

  .tools h2,
  .tools .tools-subtext {
    text-align: center;
  }

  .tools .tools-subtext {
    max-width: 720px;
    margin: 12px auto 48px;
    color: #444;
  }

  .tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
  }

  /* Header bar */
  .tool-card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    margin: -32px -28px 24px;
    border-radius: 16px 16px 0 0;
    color: #fff;
    font-weight: 700;
  }

  /* Detect */
  .tool-card.detect .card-header {
    background: linear-gradient(135deg, rgb(1, 71, 1), rgb(1, 71, 1));
  }

  /* Protect */
  .tool-card.protect .card-header {
    background: linear-gradient(135deg, rgb(39, 39, 119), rgb(39, 39, 119));
  }

  /* Govern */
  .tool-card.govern .card-header {
    background: linear-gradient(135deg, rgb(95, 38, 95), rgb(95, 38, 95));
  }

  /* SC/IDS Tool */
  .tool-card.scids .card-header {
    background: linear-gradient(135deg, #9F2D2D, #9F2D2D);
  }

  /* SC/Firewall Tool */
  .tool-card.scfirewall .card-header {
    background: linear-gradient(135deg, #9F2D2D, #9F2D2D);
  }

  /* SC/Repository Tool */
  .tool-card.screpository .card-header {
    background: linear-gradient(135deg, #9F2D2D, #9F2D2D);
  }

  /* Icon */
  .tool-card .card-icon {
    font-size: 1.8rem;
    line-height: 1;
  }

  /* Support line */
  .tool-support {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #555;
  }

  /* CTA alignment */
  .tool-card .cta-btn {
    margin-top: auto;
    align-self: center;
  }

  .hero-memberships {
    background: linear-gradient(
      135deg,
      #001028 0%,
      #0b1c36 100%
    );
    height: 300px;
  }

  .hero-memberships .hero-image img {
    max-height: 300px;
  }

  .hero-memberships .hero-text p {
    margin-bottom: 20px;
  }

  .hero-tools {
    height: 300px;
  }

  .hero-proof {
    height: 300px;
  }

  .proof-section {
    margin-bottom: 50px;
  }

  .proof-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .proof-cta {
    margin-top: 14px;
    display: inline-block;
  }

  .proof-divider {
    padding: 48px 0 32px;
    background: transparent;
  }

  .proof-divider p {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #d8dde6;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
  }


  .proof-intro {
    padding: 18px 0 24px;
  }

  /* ============================= */
  /* ABOUT PAGE                    */
  /* ============================= */

  .hero-about {
    height: 300px;
  }

  .hero-about .hero-image img {
    max-height: 300px;
  }

  .about-section {
    padding: 64px 0;
    background: #ffffff;
  }

  .about-section.alt {
    background: #f0f3f8;
  }

  .about-section h2 {
    margin-bottom: 20px;
  }

  .about-section p {
    max-width: 820px;
    line-height: 1.6;
    color: #333;
  }

  .about-list {
    margin: 24px 0;
    padding-left: 20px;
  }

  .about-list li {
    margin-bottom: 10px;
  }

  /* ============================= */
  /* CONTACT PAGE                  */
  /* ============================= */

  .hero-contact {
    height: 300px;
  }

  .hero-contact .hero-image img {
    max-height: 300px;
  }

  .contact-section {
    padding: 64px 0;
    background: #ffffff;
  }

  .contact-section.alt {
    background: #f0f3f8;
  }

  .contact-section h2 {
    margin-bottom: 20px;
  }

  .contact-section p {
    max-width: 820px;
    line-height: 1.6;
    color: #333;
  }

  .contact-list {
    margin: 24px 0;
    padding-left: 20px;
  }

  .contact-list li {
    margin-bottom: 10px;
  }

  .contact-methods {
    margin-top: 16px;
  }

  .contact-methods a {
    color: #123c8c;
    font-weight: 600;
    text-decoration: none;
  }

  .contact-methods a:hover {
    text-decoration: underline;
  }

  /* ============================= */
  /* SYMPLECYBER PROGRAM PAGE      */
  /* ============================= */

  .hero-program {
    height: 300px;
    background: linear-gradient(135deg, #001028, #0b1c36);
  }

  .program-intro {
    background: #f0f3f8;
    padding: 72px 0;
    text-align: center;
  }

  .program-intro p {
    max-width: 820px;
    margin: 12px auto;
    line-height: 1.6;
  }

  .program-structure {
    background: #ffffff;
    padding: 72px 0;
  }

  .structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .structure-card {
    background: #f6f7fa;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  }

  .program-functions {
    background: #f6f7fa;
    padding: 72px 0;
  }

  .function-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .function-card {
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  }

  .function-focus {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #555;
  }

  .program-tools {
    background: #eef1f6;
    padding: 72px 0;
    text-align: center;
  }

  .tools-intro {
    max-width: 820px;
    margin: 0 auto 24px;
  }

  .tools-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }

  .tools-list li {
    margin-bottom: 12px;
  }

  .program-membership {
    background: #ffffff;
    padding: 72px 0;
    text-align: center;
  }

  .program-flow {
    margin-top: 24px;
    font-size: 1.1rem;
    color: #0b1c36;
  }

  .program-cta {
    background: linear-gradient(135deg, #0b1c36, #123c8c);
    padding: 72px 0;
    text-align: center;
    color: #fff;
  }

  .program-cta p {
    max-width: 720px;
    margin: 12px auto 32px;
    color: #dbe4f2;
  }

  .cta-group {
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  .cta-btn.secondary {
    background: transparent;
    border: 2px solid #f4a21d;
    color: #f4a21d;
  }

  .program-diagram {
    padding: 20px 0;
    text-align: center;
  }

  .program-diagram-img {
    max-width: 100%;
    height: auto;
  }

  /* ============================= */
  /* DETECT MEMBERSHIP PAGE        */
  /* ============================= */

  /* Hero variant */
  .hero-detect {
    background: linear-gradient(
      135deg,
      #001028 0%,
      #0b1c36 100%
    );
    height: 300px;
  }

  .detect-intro {
    background: #ffffff;
    padding: 18px 0 24px;
  }

  /* Intro / overview */
  .detect-overview {
    background: #ffffff;
    padding: 72px 0;
  }

  .detect-overview p {
    max-width: 820px;
    margin: 12px auto;
    line-height: 1.6;
    color: #333;
  }

  /* Membership scope */
  /*.detect-membership {
    background: #f0f3f8;
    padding: 18px 0 24px;
    text-align: left;
  }*/

  .detect-membership {
    background: #ffffff;
    padding: 18px 0 24px;
  }

  .detect-membership2 p {
    max-width: 820px;
    margin: 12px auto;
    line-height: 1.6;
  }

  /* Capability grid */
  .detect-capabilities {
    background: #ffffff;
    padding: 1px 0 28px;
  }

  .detect-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .detect-capability {
    background: #f6f7fa;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  }

  .detect-capability h3 {
    margin-bottom: 12px;
    color: #0b1c36;
  }

  /* Example outputs */
  .detect-outputs {
    background: #eef1f6;
    padding: 72px 0;
    text-align: center;
  }

  .detect-output-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
  }

  .detect-chart {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  }

  .detect-chart-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #e6eaf2;
  }

  .detect-chart-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  /* Escalation flow */
  .detect-escalation {
    background: #ffffff;
    padding: 72px 0;
  }

  .detect-escalation ol {
    max-width: 820px;
    margin: 24px auto 0;
    padding-left: 20px;
  }

  .detect-escalation li {
    margin-bottom: 16px;
    line-height: 1.6;
  }

  /* CTA */
  .detect-cta {
    background: linear-gradient(135deg, #0b1c36, #123c8c);
    color: #ffffff;
    padding: 72px 0;
    text-align: center;
  }

  /* ============================= */
  /* DETECT MEMBERSHIP COMPONENTS  */
  /* ============================= */

  .detect-components {
    background: #ffffff;
    padding: 72px 0;
  }

  .detect-components h2 {
    text-align: center;
    margin-bottom: 48px;
  }

  .detect-component-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .detect-component {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    background: #f6f7fa;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  }

  .component-text h3 {
    margin-bottom: 10px;
    color: #0b1c36;
  }

  .component-text p {
    line-height: 1.6;
    color: #333;
  }

  .component-image img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-left: auto;
  }

  /* ================================
    DETECT Membership Pricing
    ================================ */

  .pricing-section {
    padding: 4rem 1.5rem;
    background-color: #f7f9fc;
  }

  .pricing-container {
    max-width: 960px;
    margin: 0 auto;
  }

  .pricing-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: #0b1c36; /* Netabin navy */
  }

  .pricing-card {
    background: #ffffff;
    border: 1px solid #dfe4ec;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  .pricing-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0b1c36;
  }

  .price-term {
    font-size: 1.1rem;
    color: #4a5568;
  }

  .pricing-install {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #2d3748;
  }

  .install-label {
    font-weight: 500;
  }

  .install-amount {
    font-weight: 600;
    margin-left: 0.25rem;
  }

  .pricing-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    color: #2d3748;
  }

  .pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.75rem;
  }

  .pricing-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #1f2933;
  }

  .pricing-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a227; /* subtle gold accent */
    font-size: 1.25rem;
    line-height: 1;
  }

  .pricing-footnote {
    font-size: 0.95rem;
    color: #4a5568;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
  }

  /* ============================= */
  /* PROOF OF CONCEPT CTA          */
  /* ============================= */

  .poc-cta {
    background: linear-gradient(135deg, #001028, #0b1c36);
    padding: 72px 0;
    text-align: center;
    color: #ffffff;
  }

  .poc-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .poc-cta p {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #dbe4f2;
    line-height: 1.6;
  }

  .poc-cta {
    display: flex;
    justify-content: center;
  }

  .poc-cta .cta-btn {
    font-size: 1.05rem;
    padding: 14px 32px;
  }

  /* ============================= */
  /* ABOUT PAGE CTA                */
  /* ============================= */

  .about-cta {
    background: linear-gradient(135deg, #001028, #0b1c36);
    padding: 72px 0;
    text-align: center;
    color: #ffffff;
  }

  .about-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .about-cta p {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #dbe4f2;
    line-height: 1.6;
  }

  /* ============================= */
  /* CONTACT PAGE CTA              */
  /* ============================= */

  .contact-cta {
    background: linear-gradient(135deg, #001028, #0b1c36);
    padding: 72px 0;
    text-align: center;
    color: #ffffff;
  }

  .contact-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .contact-cta p {
    max-width: 760px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }

  .contact-cta-secondary {
    font-size: 0.95rem;
  }

  .contact-cta-secondary a {
    color: #123c8c;
    font-weight: 600;
    text-decoration: none;
  }

  .contact-cta-secondary a:hover {
    text-decoration: underline;
  }

  /* ============================= */
  /* TOOL ENVIRONMENT REQUIREMENTS */
  /* ============================= */

  .tool-requirements {
    background: #f6f7fa;
    padding: 64px 0;
  }

  .tool-requirements h2 {
    text-align: center;
    margin-bottom: 24px;
  }

  .tool-requirements h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: #0b1c36;
  }

  .tool-requirements p {
    margin: 12px auto;
    line-height: 1.6;
    color: #333;
  }

  .tool-requirements ul {
    margin: 12px auto;
    padding-left: 24px;
    list-style-position: inside;
  }

  .tool-requirements li {
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .requirements-note {
    font-size: 0.95rem;
    color: #555;
    margin-top: 24px;
  }

  .membership-requirements-note {
    max-width: 820px;
    margin: 32px auto 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
  }

/* ============================= */
/* SC/FIREWALL CONTENTS SECTION  */
/* ============================= */

.tool-contents {
  background: #ffffff;
  padding: 64px 0;
}

.tool-contents h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contents-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
  color: #333;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.contents-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
}

.contents-block h3 {
  margin-bottom: 10px;
  color: #0b1c36;
}

.contents-block ul {
  margin: 0;
  padding-left: 18px;
}

.contents-block li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.contents-note {
  max-width: 820px;
  margin: 40px auto 0;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* =========================================
   Inline Link (Contextual References)
   ========================================= */

.inline-link {
  color: #123058;              /* Netabin primary blue */
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  font-family: courier;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.inline-link:hover {
  color: green;              /* Darker navy for hover */
  text-decoration-color: #0b1c36;
}

.inline-link:focus {
  outline: none;
  text-decoration-thickness: 2px;
}

/* =========================================
   Governance Notice Callout
   ========================================= */

.governance-note {
  margin: 1.5rem 0;
  padding: 0.85rem 1.1rem;
  border-left: 4px solid #123058;   /* Netabin primary blue */
  background-color: #f3f6fa;        /* Very light neutral blue */
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1f2933;                   /* Neutral dark text */
}

.governance-note strong {
  color: #0b1c36;                   /* Darker navy for label */
  font-weight: 600;
}

.governance-note a.inline-link {
  font-weight: 600;
}

/* =========================================
   Pricing Note (Scope & Exclusions)
   ========================================= */

.pricing-note {
  margin: 0.75rem 0 1.25rem;
  padding-left: 0.75rem;
  border-left: 3px solid #c3cbd6;   /* Muted neutral divider */
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4b5563;                  /* Neutral gray text */
}

.pricing-note strong {
  color: #1f2933;
  font-weight: 600;
}

.pricing-note a.inline-link {
  font-weight: 600;
}

  .memberships {
    background: #f6f7fa;
    padding: 72px 0;
  }

  .membership-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .membership-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
  }

  .membership-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
    
  .membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .membership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
  }

  .card-header {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 10px;
    padding: 18px 24px;
    margin: -32px -28px 24px; /* 🔥 FIX IS HERE */
    border-radius: 16px 16px 0 0;
    color: #fff;
    font-weight: 700;
  }

  .card-header-black {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    margin: -32px -28px 24px; 
    border-radius: 16px 16px 0 0;
    color: #000;
    font-weight: 700;
  }

  .card-icon {
    font-size: 2rem;          /* Icon size */
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .membership-card.detect .card-header {
    background: linear-gradient(135deg, #1f7a5a, #145a43);
  }

  .membership-card.protect .card-header {
    background: linear-gradient(135deg, #1f7a5a, #145a43);
  }

  .membership-card.govern .card-header {
    background: linear-gradient(135deg, #1f7a5a, #145a43);
  }

  .membership-card p,
  .membership-card .cta-btn {
    align-self: center;
  }

  .memberships h2,
  .memberships .memberships-subtext {
    text-align: center;
  }

  .memberships .memberships-subtext {
    max-width: 700px;
    margin: 12px auto 48px;
    color: #444;
  }

  /* ============================= */
  /* TOOLS PAGE                    */
  /* ============================= */
  .tools-hero {
    background: #001028;
    color: #fff;
    padding: 72px 0;
    text-align: center;
  }

  .tools-hero-text {
    max-width: 820px;
    margin: 16px auto 0;
    color: #dbe4f2;
    line-height: 1.6;
  }

  .tools-explainer {
    background: #f0f3f8;
    padding: 64px 0;
    text-align: center;
  }

  .tools-explainer p {
    max-width: 820px;
    margin: 12px auto;
    line-height: 1.6;
    color: #333;
  }

  .tools-cta {
    background: linear-gradient(135deg, #0b1c36, #123c8c);
    color: #fff;
    padding: 64px 0;
    text-align: center;
  }

  .tools-cta p {
    max-width: 720px;
    margin: 12px auto 28px;
    color: #dbe4f2;
  }

  /* =========================
    TOOLS SECTION
    ========================= */

  /* Card grid */
  .tool-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: stretch;
  }

  /* Tool card base */
  .tool-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  /* SC/IDS Tool */
  .tool-card.scids .card-header {
    background: linear-gradient(135deg, #9F2D2D, #9F2D2D);
  }

  /* SC/Firewall Tool */
  .tool-card.scfirewall .card-header {
    background: linear-gradient(135deg, #9F2D2D, #9F2D2D);
  }

  /* SC/Repository Tool */
  .tool-card.screpository .card-header {
    background: linear-gradient(135deg, #9F2D2D, #9F2D2D);
  }

  /* Icon */
  .tool-card .card-icon {
    font-size: 1.8rem;
    line-height: 1;
  }

  /* Support line */
  .tool-support {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #555;
  }

  /* CTA alignment */
  .tool-card .cta-btn {
    margin-top: auto;
    align-self: center;
  }

  .hero-memberships {
    background: linear-gradient(
      135deg,
      #001028 0%,
      #0b1c36 100%
    );
    height: 300px;
  }

  .hero-memberships .hero-image img {
    max-height: 300px;
  }

  .hero-memberships .hero-text p {
    margin-bottom: 20px;
  }

  .hero-tools {
    height: 300px;
  }

  .hero-proof {
    height: 300px;
  }

  .program-diagram {
    padding: 20px 0;
    text-align: center;
  }

  .program-diagram-img {
    max-width: 100%;
    height: auto;
  }

  /* ============================= */
  /* NAV DROPDOWNS (DESKTOP)       */
  /* ============================= */

  .main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .nav-item {
    width: 100%;
    position: relative;
  }

  .nav-label {
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
  }

  /* ============================= */
  /* NAV DROPDOWN (DESKTOP)        */
  /* ============================= */

  .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .nav-dropdown .nav-parent {
    cursor: pointer;
  }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  background: #0b1c36; /* SOLID */
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 2000;
}

/* Dropdown links */
  .dropdown-menu a {
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
  }

/* ============================= */
/* SC/FIREWALL CONTENTS SECTION  */
/* ============================= */

.problem-solution {
  background: #f5f6f8;
  padding: 70px 0;
}

.problem-solution h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: #444;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.problem-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #001028;
}

.problem-desc {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #333;
}

.problem-solution-text {
  font-size: 0.9rem;
  color: #222;
}

.problem-solution-text span {
  font-weight: 600;
  color: #123058;
}

.problem-summary {
  margin-top: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #001028;
}

.hero-program,
.hero-detect,
.hero-memberships,
.hero-tools,
.hero-proof,
.hero-about,
.hero-contact {
  min-height: 260px;
}

.hero-program .hero-text {
  padding-top: 0;
}


/* ============================= */
/* TOOL VISUAL BLOCK             */
/* ============================= */

.tool-visual-section {
  padding: 3rem 0;
  text-align: center;
}

.tool-visual-section .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tool-visual {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: #f9fafb;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  text-align: center;

  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.tool-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.tool-visual-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;     /* 🔑 HARD CLIP */
}

.tool-visual-image img {
  display: block;       /* 🔑 removes inline overflow */
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ============================= */
/* VISUAL CAPTION                */
/* ============================= */

.visual-capture { /* alias to prevent breakage */
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #555;
  font-style: italic;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================= */
/* DISPLAY CONTAINER             */
/* ============================= */

.diagram-container {
  display: flex;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical centering if needed */
  width: 100%;
  margin: 3rem 0;            /* breathing room above and below */
}

.diagram-container img {
  max-width: 100%;
  height: auto;
}

.diagram-block {
  display: flex;
  flex-direction: column;   /* stack image + caption */
  align-items: center;      /* center horizontally */
  width: 100%;
  margin: 3rem 0;
}

.diagram-block img {
  max-width: 100%;
  height: auto;
}

.diagram-caption {
  margin-top: 1rem;
  max-width: 900px;
  font-size: 0.9rem;
  color: #444;
  text-align: center;
  line-height: 1.4;
}


/* ============================= */
/* CALL OIUT BOX                 */
/* ============================= */

  .callout-box {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.2rem 1.5rem;
    background: #f0f6ff;
    border-left: 5px solid #1f4fd8;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #222;
    line-height: 1.5;
  }

  .callout-box .callout-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }

  .callout-box ul {
    margin: 0.75rem 0 0 1.1rem;
    padding: 0;
  }

  .callout-box li {
    margin: 0.35rem 0;
  }


.scids-report-download .report-cover img {
  max-width: 480px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.scids-report-download .report-cover img:hover {
  transform: scale(1.02);
}

.report-cta-group {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================= */
/* SC CONTROL TOOL SERVICES      */
/* ============================= */

.services-sc {
  padding: 80px 20px;
  background: #f7f9fc;
}

.services-sc h2 {
  text-align: center;
  margin-bottom: 15px;
}

.section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  align-items: left;
  justify-content: left;
  text-align: left;
  padding: 0px;
  border-radius: 10px;
}

.service-card-VOID:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-top: 0;
  color: #1b2a41;
}

.service-card h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #3a4b63;
}

.service-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.service-card li {
  margin-bottom: 6px;
  color: #444;
}

.service-desc {
  color: #555;
  margin-bottom: 10px;
}


  /* ============================= */
  /* Small laptop                        */
  /* ============================= */
  @media (max-width: 1400px) {

    .header-inner {
      padding: 8px 20px;   /* tighter but not crushed */
    }

    .main-nav {
      gap: 16px;           /* reduce spacing */
    }

    .main-nav a {
      font-size: 0.9rem;  /* slight reduction */
    }

  }


  /* ============================= */
  /* MOBILE                        */
  /* ============================= */
  @media (max-width: 768px) {

    .hero-home {
      min-height: 60svh;
      contain: layout;
    }

    .tool-visual {
      padding: 1rem;
    }

    .tool-visual-section .container {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .tool-visual img {
      max-height: 55vh;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    .tool-visual-image img {
      max-height: 55vh;
      object-fit: contain;
    }

    .nav-toggle {
      display: block;
    }

    .membership-list {
      grid-template-columns: 1fr;
    }

    .hero {
      grid-template-columns: 1fr;
      height: auto;                 /* Critical */
      overflow: visible;
      padding: 40px 20px;
    }

    .hero-text {
      max-width: 100%;
      padding-top: 0;
      padding: 0 16px;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    }
    
    .hero-image img {
      max-height: 260px;
      width: auto;
    }

    .hero h1 {
      font-size: 1.9rem;
    }

    .membership-cards {
      grid-template-columns: 1fr;
      padding: 0 16px;
      box-sizing: border-box;
    }

    .service-pillars {
      gap: 24px;
    }

    .structure-grid,
    .function-cards {
      grid-template-columns: 1fr;
    }

    .detect-capability-grid {
      grid-template-columns: 1fr;
    }

    .detect-output-grid {
      grid-template-columns: 1fr;
    }
    
    .detect-component {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .component-image img {
      margin: 0 auto;
    }
    


  /* Hide desktop nav by default */
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #123058;
  }

  /* Show nav when hamburger toggles it */
  .main-nav.active {
    display: flex;
  }

  /* Kill desktop spacing */
  .site-header a {
    margin-right: 0;
  }

  .main-nav > * {
    border-bottom: 0px solid rgba(255,255,255,0.25);
  }

  .main-nav > * {
    display: block;
    width: 100%;
    padding: 1px 1px;
    text-align: center;
    color: #ffffff;
  }

  .main-nav > * > a,
  .main-nav > * > .nav-parent {
    display: block;
    padding: 0;
  }

  .main-nav > *:last-child {
    margin-bottom: 20px
  }

  /* Parent label inside dropdown */
  .nav-parent {
    display: block;
    font-weight: 600;
    cursor: pointer;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
  }

  /* Open state */
  .nav-item.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  /* Submenu links */
  .dropdown-menu a {
    padding: 12px 28px;
    text-align: left;
    font-size: 0.9rem;
    color: #e6edf6;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .dropdown-menu a:first-child {
    border-top: none;
  }

  /* Mobile nav should overlay below header */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1200;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;   /* full-width buttons */
    gap: 16px;
  }

  .cta-group .cta-btn {
    width: 100%;
    text-align: center;
  }

  .program-cta,
  .homepage-cta,
  .detect-cta,
  .memberships-cta,
  .tools-cta,
  .about-cta,
  .contact-cta,
  .poc-cta {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

}

/* ============================= */
/* DESKTOP HEADER (CLEAN FIX)    */
/* ============================= */
@media (min-width: 769px) {

  .header-inner {
    display: flex;
    align-items: center;
  }

  .logo {
    flex-shrink: 0;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    position: static;
    width: auto;
    background: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-item:hover .dropdown-menu {
    display: flex;
  }

}
