/* === Whitelabel PCI ASV Scan Landing Page === */

    body {
      box-sizing: border-box;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
      width: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: linear-gradient(135deg, #eff3fa 0%, #f8faff 100%);
      color: #2a3242;
      line-height: 1.6;
      overflow-x: hidden;
      letter-spacing: 0.02em;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ===== LAYOUT ===== */
    .page-wrapper {
      width: 100%;
      min-height: 100%;
    }

    .container {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ===== HEADER ===== */
    .site-header {
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 12px rgba(19, 34, 64, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
    }

    .header-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      min-width: fit-content;
    }

    .logo-text {
      font-size: 1.8em;
      font-weight: 800;
      color: #132240;
      letter-spacing: 0;
      font-family: Calibri, Arial, sans-serif;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
      justify-content: flex-end;
    }

    .nav-link {
      color: #2a3242;
      font-weight: 600;
      font-size: 0.98em;
      transition: color 0.2s ease;
    }

    .nav-link:hover {
      color: #2b63c7;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-cta-button,
    .header-secondary-button {
      padding: 12px 22px;
      border-radius: 8px;
      font-size: 0.95em;
      font-weight: 700;
      transition: all 0.3s ease;
      display: inline-block;
      white-space: nowrap;
    }

    .header-cta-button {
      background: #f59d2d;
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(245, 157, 45, 0.3);
    }

    .header-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(19, 34, 64, 0.25);
    }

    .header-secondary-button {
      background: #f59d2d;
      color: #ffffff;
      border: 1px solid #f59d2d;
      box-shadow: 0 4px 12px rgba(245, 157, 45, 0.3);
    }

    .header-secondary-button:hover {
      border-color: #f59d2d;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(19, 34, 64, 0.25);
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #132240;
      font-size: 1.5em;
      cursor: pointer;
      padding: 8px;
    }

    /* ===== HERO ===== */
    .hero-section {
      background: linear-gradient(135deg, #0f1729 0%, #1a2844 50%, #132240 100%);
      padding: 56px 0;
      margin-bottom: 50px;
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      position: relative;
      overflow: hidden;
      width: 100vw;
    }

    .hero-section::before {
      content: "";
      position: absolute;
      top: -40%;
      right: -15%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(245, 157, 45, 0.25) 0%, rgba(245, 157, 45, 0.08) 35%, transparent 70%);
      border-radius: 50%;
      animation: floatLarge 12s ease-in-out infinite;
      filter: blur(40px);
    }

    .hero-section::after {
      content: "";
      position: absolute;
      bottom: -25%;
      left: -8%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(43, 99, 199, 0.2) 0%, rgba(43, 99, 199, 0.05) 40%, transparent 70%);
      border-radius: 50%;
      animation: floatLarge 14s ease-in-out infinite reverse;
      filter: blur(40px);
    }

    @keyframes floatLarge {
      0%, 100% {
        transform: translateY(0) translateX(0);
      }
      50% {
        transform: translateY(-80px) translateX(60px);
      }
    }

    @keyframes accentPulse {
      0%, 100% {
        opacity: 0.08;
        transform: scale(1);
      }
      50% {
        opacity: 0.4;
        transform: scale(1.15);
      }
    }

    @keyframes shiftLeft {
      0%, 100% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(-60px);
      }
    }

    @keyframes shiftRight {
      0%, 100% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(80px);
      }
    }

    @keyframes orbitSlow {
      0% {
        transform: rotate(0deg) translateX(280px) rotate(0deg);
      }
      100% {
        transform: rotate(360deg) translateX(280px) rotate(-360deg);
      }
    }

    @keyframes orbitFast {
      0% {
        transform: rotate(0deg) translateX(320px) rotate(0deg);
      }
      100% {
        transform: rotate(-360deg) translateX(320px) rotate(360deg);
      }
    }

    @keyframes shimmer {
      0%, 100% {
        opacity: 0.1;
      }
      50% {
        opacity: 0.3;
      }
    }

    .floating-dots {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .dot {
      position: absolute;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(245, 157, 45, 0.4) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(30px);
    }

    .dot:nth-child(1) {
      top: 50%;
      left: 50%;
      animation: orbitSlow 20s linear infinite;
      animation-delay: 0s;
    }

    .dot:nth-child(2) {
      top: 50%;
      left: 50%;
      animation: orbitFast 25s linear infinite reverse;
      animation-delay: 0s;
    }

    .dot:nth-child(3) {
      top: 15%;
      right: 5%;
      animation: accentPulse 4s ease-in-out infinite, shiftRight 6s ease-in-out infinite;
      animation-delay: 0s, 0.5s;
    }

    .dot:nth-child(4) {
      bottom: 15%;
      left: 8%;
      animation: accentPulse 4s ease-in-out infinite, shiftLeft 7s ease-in-out infinite;
      animation-delay: 1s, 0s;
    }

    .dot:nth-child(5) {
      top: 35%;
      right: 15%;
      animation: accentPulse 4s ease-in-out infinite, shiftRight 5s ease-in-out infinite;
      animation-delay: 2s, 1.5s;
    }

    .dot:nth-child(6) {
      bottom: 25%;
      right: 25%;
      animation: accentPulse 4s ease-in-out infinite, shiftLeft 8s ease-in-out infinite;
      animation-delay: 0.5s, 2s;
    }

    .dot:nth-child(7) {
      top: 10%;
      left: 20%;
      animation: accentPulse 4s ease-in-out infinite, shiftRight 6.5s ease-in-out infinite;
      animation-delay: 1.5s, 1s;
    }

    .dot:nth-child(8) {
      bottom: 5%;
      right: 50%;
      animation: accentPulse 4s ease-in-out infinite, shimmer 5s ease-in-out infinite;
      animation-delay: 2.5s, 0.5s;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 36px;
      align-items: center;
    }

    .hero-text {
      max-width: 760px;
      text-align: left;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 157, 45, 0.15);
      color: #f59d2d;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.9em;
      font-weight: 600;
      margin-bottom: 24px;
      border: 1px solid rgba(245, 157, 45, 0.3);
      animation: fadeInUp 0.6s ease;
    }

    .hero-title {
      font-size: 3.8em;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 22px;
      line-height: 1.05;
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .hero-subtitle {
      font-size: 1.18em;
      color: #c8d0e2;
      margin-bottom: 24px;
      font-weight: 400;
      line-height: 1.7;
      animation: fadeInUp 0.8s ease 0.4s backwards;
    }

    .hero-cta-group {
      animation: fadeInUp 0.8s ease 0.6s backwards;
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .cta-button {
      display: inline-block;
      background: #f59d2d;
      color: #ffffff;
      padding: 18px 34px;
      border-radius: 12px;
      font-size: 1.05em;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(245, 157, 45, 0.3);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .cta-button::before {
      content: "";
      position: absolute;
      inset: 0;
      left: -100%;
      background: #132240;
      transition: left 0.4s ease;
      z-index: -1;
    }

    .cta-button:hover {
      color: #ffffff;
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 16px 40px rgba(19, 34, 64, 0.4);
    }

    .cta-button:hover::before {
      left: 0;
    }

    .cta-button-reverse {
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: none;
    }

    .cta-button-reverse::before {
      background: #f59d2d;
    }

    .hero-proof-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 18px;
      margin-top: 12px;
    }

    .hero-proof-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #e3eaf8;
      font-size: 0.98em;
      font-weight: 500;
    }

    .hero-proof-item span:first-child {
      color: #f59d2d;
      font-weight: 800;
      margin-top: 1px;
    }

    .hero-proof-link {
      margin-top: 18px;
      color: #ffffff;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: 0.95;
    }

    .hero-proof-link:hover {
      color: #f59d2d;
    }

    .hero-summary-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 20px 60px rgba(12, 26, 51, 0.2);
      animation: fadeInUp 0.9s ease 0.35s backwards;
      max-height: fit-content;
    }

    .summary-label {
      font-size: 0.72em;
      font-weight: 700;
      color: #c8d0e2;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .summary-title {
      font-size: 1.55em;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .summary-subtitle {
      color: #c8d0e2;
      font-size: 0.88em;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .summary-grid {
      display: grid;
      gap: 10px;
      margin-bottom: 16px;
    }

    .summary-item {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 12px 14px;
    }

    .summary-item-title {
      color: #ffffff;
      font-weight: 700;
      font-size: 0.9em;
      margin-bottom: 3px;
    }

    .summary-item-text {
      color: #c8d0e2;
      font-size: 0.82em;
      line-height: 1.4;
    }

    .summary-trust {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(23, 163, 74, 0.12);
      color: #9cf2b5;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.85em;
      font-weight: 700;
      border: 1px solid rgba(23, 163, 74, 0.2);
    }

    /* ===== TRUST STRIP ===== */
    .trust-strip {
      margin-bottom: 50px;
    }

    .trust-strip-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .trust-strip-item {
      background: #ffffff;
      border-radius: 18px;
      padding: 24px 20px;
      box-shadow: 0 8px 32px rgba(12, 26, 51, 0.08);
      border: 1px solid rgba(200, 208, 226, 0.32);
      text-align: center;
      transition: all 0.3s ease;
    }

    .trust-strip-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(43, 99, 199, 0.25);
      border-color: rgba(43, 99, 199, 0.3);
    }

    .trust-strip-icon {
      width: 46px;
      height: 46px;
      background: rgba(43, 99, 199, 0.12);
      border-radius: 12px;
      color: #2b63c7;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2em;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .trust-strip-text {
      font-size: 0.96em;
      color: #132240;
      font-weight: 700;
      line-height: 1.45;
    }

    /* ===== HIGHLIGHTS ===== */
    .highlights-section {
      margin-bottom: 40px;
    }

    .highlights-container {
      background: linear-gradient(135deg, #132240 0%, #1d2e59 100%);
      border-radius: 24px;
      padding: 40px 56px;
      box-shadow: 0 20px 60px rgba(12, 26, 51, 0.2);
    }

    .highlights-title {
      font-size: 3em;
      font-weight: 600;
      color: #ffffff;
      text-align: center;
      margin-bottom: 32px;
      position: relative;
      width: 100%;
    }

    .highlights-title::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: linear-gradient(90deg, transparent, #f59d2d, transparent);
      border-radius: 2px;
    }

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

    .highlight-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 30px 28px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }

    .highlight-item:nth-child(1) { animation-delay: 0.1s; }
    .highlight-item:nth-child(2) { animation-delay: 0.2s; }
    .highlight-item:nth-child(3) { animation-delay: 0.3s; }
    .highlight-item:nth-child(4) { animation-delay: 0.4s; }
    .highlight-item:nth-child(5) { animation-delay: 0.5s; }
    .highlight-item:nth-child(6) { animation-delay: 0.6s; }

    .highlight-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-8px) scale(1.03);
      border-color: rgba(245, 157, 45, 0.5);
      box-shadow: 0 12px 32px rgba(245, 157, 45, 0.22);
    }

    .highlight-icon {
      width: 48px;
      height: 48px;
      background: rgba(245, 157, 45, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: #f59d2d;
      font-size: 1.35em;
      font-weight: 700;
    }

    .highlight-text {
      font-size: 1.02em;
      color: #c8d0e2;
      font-weight: 500;
      line-height: 1.6;
    }

    /* ===== FEATURES ===== */
    .features-section {
      margin-bottom: 50px;
    }

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

    .feature-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 36px 28px;
      box-shadow: 0 8px 32px rgba(12, 26, 51, 0.08);
      border: 1px solid rgba(200, 208, 226, 0.32);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(12, 26, 51, 0.15);
      border-color: rgba(245, 157, 45, 0.3);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      background: #132240;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .feature-card:hover .feature-icon {
      background: #1d2e59;
    }

    .feature-title {
      font-size: 1.28em;
      font-weight: 600;
      color: #132240;
      margin-bottom: 14px;
      line-height: 1.35;
    }

    .feature-description {
      font-size: 0.98em;
      color: #6b7280;
      line-height: 1.65;
      flex-grow: 1;
    }

    /* ===== SECTIONS / CARDS ===== */
    .benefits-section {
      margin-bottom: 50px;
    }

    .section-title {
      font-size: 2.8em;
      font-weight: 600;
      color: #132240;
      text-align: center;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 1.1em;
      color: #6b7280;
      text-align: center;
      margin-bottom: 40px;
      line-height: 1.65;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .benefits-grid.four-column {
      grid-template-columns: repeat(4, 1fr);
    }

    .benefit-item {
      background: #ffffff;
      border-radius: 16px;
      padding: 28px 24px;
      box-shadow: 0 4px 16px rgba(12, 26, 51, 0.06);
      border: 1px solid rgba(200, 208, 226, 0.32);
      transition: all 0.3s ease;
    }

    .benefit-item:hover {
      transform: translateY(-4px);
      background: #132240;
      color: #ffffff;
      box-shadow: 0 12px 32px rgba(19, 34, 64, 0.4), 0 0 24px rgba(45, 100, 200, 0.25);
      border-color: rgba(45, 100, 200, 0.4);
    }

    .benefit-item:hover h3 {
      color: #ffffff;
    }

    .benefit-item:hover p {
      color: #c8d0e2;
    }

    .benefit-item h3 {
      font-size: 1.15em;
      font-weight: 700;
      color: #132240;
      margin-bottom: 10px;
    }

    .benefit-item p {
      font-size: 0.95em;
      color: #6b7280;
      line-height: 1.6;
    }

    /* ===== PROCESS ===== */
    .process-section {
      margin-bottom: 50px;
      background: linear-gradient(135deg, #132240 0%, #1d2e59 100%);
      border-radius: 24px;
      padding: 56px;
    }

    .process-section .section-title {
      color: #ffffff;
      margin-bottom: 16px;
    }

    .process-section .section-subtitle {
      color: #c8d0e2;
      text-align: left;
      margin-bottom: 40px;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
    }

    .process-content {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      align-items: flex-start;
    }

    .process-text {
      font-size: 1.05em;
      color: #c8d0e2;
      line-height: 1.75;
    }

    .process-text p {
      margin-bottom: 16px;
    }

    .process-visual {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .process-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .step-number {
      width: 48px;
      height: 48px;
      background: rgba(245, 157, 45, 0.2);
      border: 2px solid #f59d2d;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.3em;
      color: #f59d2d;
      flex-shrink: 0;
    }

    .step-content h4 {
      font-size: 1.1em;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
    }

    .step-content p {
      font-size: 0.95em;
      color: #c8d0e2;
      line-height: 1.6;
    }

    /* ===== FAQ ===== */
    .faq-section {
      margin-bottom: 50px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .faq-item {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid rgba(200, 208, 226, 0.32);
      box-shadow: 0 4px 16px rgba(12, 26, 51, 0.06);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      box-shadow: 0 8px 24px rgba(12, 26, 51, 0.12);
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      background: #ffffff;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-size: 1em;
      font-weight: 700;
      color: #132240;
      text-align: left;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      background: #f8faff;
    }

    .faq-icon {
      font-size: 1.4em;
      font-weight: 300;
      color: #f59d2d;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-question {
      background: linear-gradient(135deg, #132240 0%, #1d2e59 100%);
      color: #ffffff;
    }

    .faq-item.active .faq-icon {
      color: #f59d2d;
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 220px;
    }

    .faq-answer p {
      padding: 0 24px 20px 24px;
      font-size: 0.95em;
      color: #6b7280;
      line-height: 1.65;
      margin: 0;
    }

    /* ===== CTA / FOOTER ===== */
    .final-cta-section {
      margin-bottom: 40px;
    }

    .site-footer {
      background: linear-gradient(135deg, #132240 0%, #1d2e59 100%);
      padding: 48px 0 32px;
      margin-top: 60px;
      width: 100%;
      position: relative;
    }

    .footer-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 0 40px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 24px;
    }

    .footer-link {
      color: #c8d0e2;
      font-weight: 500;
      font-size: 1em;
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: #f59d2d;
    }

    .footer-copyright {
      color: #c8d0e2;
      font-size: 0.9em;
      padding-top: 24px;
      border-top: 1px solid rgba(200, 208, 226, 0.2);
      max-width: 960px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1180px) {
      .hero-content,
      .trust-strip-grid,
      .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-title {
        font-size: 3.2em;
      }

      .features-grid,
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .benefits-grid.four-column {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-content {
        grid-template-columns: 1fr;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 900px) {
      .main-nav,
      .header-actions {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 24px rgba(19, 34, 64, 0.1);
        z-index: 999;
      }

      .main-nav.active,
      .header-actions.active {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
      }

      .main-nav .nav-link,
      .header-actions a {
        width: 100%;
        border-bottom: 1px solid #eff3fa;
        padding: 16px 20px;
        border-radius: 0;
        margin: 0;
      }

      .header-actions {
        top: auto;
        left: 0;
        right: 0;
        bottom: auto;
        margin-top: 132px;
      }

      .mobile-menu-toggle {
        display: block;
        margin-left: auto;
      }

      .header-container {
        height: 64px;
        padding: 0 20px;
      }

      .hero-content {
        grid-template-columns: 1fr;
        padding: 0 24px;
      }

      .hero-text {
        max-width: none;
        text-align: center;
      }

      .hero-title,
      .hero-subtitle {
        text-align: center;
      }

      .hero-cta-group {
        justify-content: center;
      }

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

      .hero-proof-link {
        justify-content: center;
      }

      .trust-strip-grid,
      .highlights-grid,
      .features-grid,
      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .container {
        padding: 0 24px;
      }

      .hero-section {
        padding: 46px 0 56px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        margin-bottom: 32px;
      }

      .hero-title {
        font-size: 2.35em;
        line-height: 1.15;
      }

      .hero-subtitle {
        font-size: 1.03em;
      }

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

      .highlights-container {
        padding: 32px 24px;
      }

      .highlights-title {
        font-size: 1.9em;
        text-align: center;
      }

      .section-title {
        font-size: 2em;
      }

      .process-section {
        padding: 40px 24px;
      }

      .process-text {
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .container,
      .hero-content {
        padding: 0 20px;
      }

      .logo-text {
        font-size: 1.02em;
      }

      .hero-title {
        font-size: 1.95em;
      }

      .hero-subtitle {
        font-size: 0.98em;
      }

      .trust-strip-item,
      .hero-summary-card {
        padding: 22px 18px;
      }

      .highlights-container {
        padding: 28px 20px;
      }
    }

/* === End Whitelabel PCI ASV Scan Landing Page === */
