/* =====================================================================
       GIRIRAJ DIGITAL BRAND SYSTEM
       ===================================================================== */
    :root {
      --gd-navy-900:   #0C1626;
      --gd-navy-700:   #16284D;
      --gd-navy-600:   #1e3660;

      --gd-blue-500:   #0FA1DB;
      --gd-blue-600:   #0d8ec2;
      --gd-blue-50:    #E6F5FC;

      --gd-teal-500:   #14B69E;
      --gd-teal-300:   #3DE0C9;
      --gd-teal-50:    #E8FBF7;

      --gd-amber-500:  #FFB020;
      --gd-amber-50:   #FFF6E5;

      --gd-white:      #FFFFFF;
      --gd-gray-50:    #F7F9FC;
      --gd-gray-100:   #EDF0F5;
      --gd-gray-200:   #D9DEE7;
      --gd-gray-400:   #8A94A6;
      --gd-gray-600:   #4A5468;
      --gd-gray-800:   #1F2937;

      --success-500:   #14B69E;
      --success-50:    #E8FBF7;
      --info-500:      #0FA1DB;
      --info-50:       #E6F5FC;
      --warning-500:   #FFB020;
      --warning-50:    #FFF6E5;
      --danger-500:    #E24B4A;
      --danger-50:     #FCEBEB;

      --radius-sm:   6px;
      --radius-md:   10px;
      --radius-lg:   16px;
      --radius-xl:   24px;

      --shadow-soft:  0 2px 8px rgba(12, 22, 38, 0.06);
      --shadow-card:  0 4px 16px rgba(12, 22, 38, 0.08);
      --shadow-hover: 0 8px 24px rgba(15, 161, 219, 0.18);

      --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* =====================================================================
       BASE
       ===================================================================== */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      color: var(--gd-gray-800);
      background: var(--gd-gray-50);
      line-height: 1.6;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* =====================================================================
       HERO
       ===================================================================== */
    .hero {
      text-align: center;
      margin-bottom: 40px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--gd-navy-900);
      color: var(--gd-teal-300);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      background: var(--gd-teal-300);
      border-radius: 50%;
    }
    .hero h1 {
      font-size: 40px;
      font-weight: 700;
      color: var(--gd-navy-900);
      margin-bottom: 16px;
      line-height: 1.15;
      letter-spacing: -1px;
    }
    .hero h1 .accent { color: var(--gd-blue-500); }
    .hero p {
      font-size: 17px;
      color: var(--gd-gray-600);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.55;
    }
    .credentials-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--gd-gray-200);
      font-size: 13px;
      font-weight: 500;
      color: var(--gd-navy-700);
    }
    .credentials-bar span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .cred-dot {
      width: 8px; height: 8px;
      background: var(--gd-blue-500);
      border-radius: 50%;
    }
    .cred-dot.teal  { background: var(--gd-teal-500); }
    .cred-dot.amber { background: var(--gd-amber-500); }

    /* =====================================================================
       QUIZ CARD
       ===================================================================== */
    .quiz-card {
      background: var(--gd-white);
      padding: 40px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--gd-gray-200);
      position: relative;
      overflow: hidden;
    }
    .quiz-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gd-blue-500) 0%, var(--gd-teal-500) 100%);
    }

    /* =====================================================================
       INTRO STATE
       ===================================================================== */
    .intro {
      text-align: center;
      padding: 20px 0;
    }
    .intro-icon {
      width: 72px; height: 72px;
      background: var(--gd-blue-50);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .intro-icon svg {
      width: 36px; height: 36px;
      color: var(--gd-blue-500);
    }
    .intro h2 {
      font-size: 26px;
      font-weight: 700;
      color: var(--gd-navy-900);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .intro p {
      font-size: 15.5px;
      color: var(--gd-gray-600);
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .intro-facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin: 28px 0;
    }
    .intro-fact {
      background: var(--gd-gray-50);
      border: 1px solid var(--gd-gray-200);
      border-radius: var(--radius-md);
      padding: 16px 12px;
      text-align: center;
    }
    .intro-fact-num {
      font-size: 22px;
      font-weight: 700;
      color: var(--gd-blue-500);
      display: block;
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .intro-fact-lbl {
      font-size: 12px;
      color: var(--gd-gray-600);
      line-height: 1.4;
    }

    /* =====================================================================
       QUIZ STATE
       ===================================================================== */
    .quiz {
      display: none;
    }
    .quiz.show { display: block; }

    .progress-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gd-gray-400);
    }
    .progress-header .q-num {
      color: var(--gd-navy-900);
      font-weight: 600;
    }
    .progress-bar {
      height: 5px;
      background: var(--gd-gray-100);
      border-radius: 100px;
      overflow: hidden;
      margin-bottom: 32px;
    }
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gd-blue-500) 0%, var(--gd-teal-500) 100%);
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 100px;
    }

    .question-text {
      font-size: 21px;
      font-weight: 600;
      color: var(--gd-navy-900);
      line-height: 1.4;
      margin-bottom: 24px;
      letter-spacing: -0.3px;
    }

    .options {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .option {
      display: block;
      width: 100%;
      text-align: left;
      padding: 16px 20px;
      font-size: 15px;
      font-weight: 500;
      background: var(--gd-white);
      border: 1.5px solid var(--gd-gray-200);
      border-radius: var(--radius-md);
      cursor: pointer;
      color: var(--gd-gray-800);
      transition: var(--transition);
      line-height: 1.5;
      position: relative;
      padding-left: 52px;
    }

    .option::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      border: 2px solid var(--gd-gray-200);
      border-radius: 50%;
      transition: var(--transition);
      background: var(--gd-white);
    }

    .option:hover {
      border-color: var(--gd-blue-500);
      background: var(--gd-blue-50);
      color: var(--gd-navy-900);
    }
    .option:hover::before {
      border-color: var(--gd-blue-500);
    }

    .option.selected {
      background: var(--gd-navy-900);
      border-color: var(--gd-navy-900);
      color: var(--gd-white);
    }
    .option.selected::before {
      border-color: var(--gd-blue-500);
      background: var(--gd-blue-500);
      box-shadow: inset 0 0 0 3px var(--gd-navy-900);
    }

    /* Navigation buttons */
    .nav-row {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 12px;
    }

    /* =====================================================================
       BUTTONS
       ===================================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 28px;
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--radius-md);
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-decoration: none;
      text-align: center;
      letter-spacing: 0.3px;
    }
    .btn-primary {
      background: var(--gd-blue-500);
      color: var(--gd-white);
      width: 100%;
      box-shadow: 0 2px 6px rgba(15, 161, 219, 0.25);
    }
    .btn-primary:hover:not(:disabled) {
      color:#ffffff;
      background: var(--gd-blue-600);
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }
    .btn-primary:disabled {
      background: var(--gd-gray-200);
      color: var(--gd-gray-400);
      cursor: not-allowed;
      box-shadow: none;
    }
    .btn-navy {
      background: var(--gd-navy-900);
      color: var(--gd-white);
    }
    .btn-navy:hover {
      background: var(--gd-navy-700);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(12, 22, 38, 0.2);
    }
    .btn-secondary {
      background: var(--gd-white);
      color: var(--gd-navy-900);
      border: 1.5px solid var(--gd-gray-200);
    }
    .btn-secondary:hover:not(:disabled) {
      border-color: var(--gd-blue-500);
      color: var(--gd-blue-500);
    }
    .btn-secondary:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    /* =====================================================================
       RESULTS
       ===================================================================== */
    .qzresults {
      display: none;
      animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .qzresults.show { display: block; }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .risk-banner {
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      margin-bottom: 24px;
      text-align: center;
      color: var(--gd-white);
      position: relative;
      overflow: hidden;
    }
    .risk-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.1;
      background: radial-gradient(circle at top right, var(--gd-white), transparent 60%);
      pointer-events: none;
    }
    .risk-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      opacity: 0.85;
      margin-bottom: 8px;
      font-weight: 600;
    }
    .risk-level {
      font-size: 44px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -1px;
      margin-bottom: 10px;
    }
    .risk-score {
      font-size: 14px;
      opacity: 0.9;
    }

    .risk-low        { background: linear-gradient(135deg, #14B69E 0%, #0a7d6b 100%); }
    .risk-moderate   { background: linear-gradient(135deg, #0FA1DB 0%, #084a72 100%); }
    .risk-high       { background: linear-gradient(135deg, #FFB020 0%, #b8770b 100%); }
    .risk-critical   { background: linear-gradient(135deg, #E24B4A 0%, #a02320 100%); }

    .result-section {
      background: var(--gd-white);
      border: 1px solid var(--gd-gray-200);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      margin-bottom: 20px;
    }
    .result-section h3 {
      font-size: 17px;
      color: var(--gd-navy-900);
      margin-bottom: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .result-section h3::before {
      content: "";
      width: 4px;
      height: 20px;
      background: var(--gd-blue-500);
      border-radius: 2px;
    }
    .result-section p {
      font-size: 15px;
      color: var(--gd-gray-800);
      line-height: 1.7;
      margin: 0;
    }
    .result-section ol {
      padding-left: 0;
      margin: 0;
      counter-reset: action-counter;
      list-style: none;
    }
    .result-section ol li {
      counter-increment: action-counter;
      padding: 12px 0 12px 44px;
      position: relative;
      font-size: 14.5px;
      color: var(--gd-gray-800);
      line-height: 1.6;
      border-bottom: 1px solid var(--gd-gray-100);
    }
    .result-section ol li:last-child { border-bottom: none; }
    .result-section ol li::before {
      content: counter(action-counter);
      position: absolute;
      left: 0;
      top: 12px;
      width: 30px;
      height: 30px;
      background: var(--gd-navy-900);
      color: var(--gd-teal-300);
      border-radius: 50%;
      font-weight: 700;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .deadline-callout {
      background: var(--gd-navy-900);
      color: var(--gd-white);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      margin-bottom: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .deadline-icon {
      flex-shrink: 0;
      width: 40px; height: 40px;
      background: var(--gd-amber-500);
      color: var(--gd-navy-900);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
    }
    .deadline-content h4 {
      font-size: 15px;
      color: var(--gd-teal-300);
      margin-bottom: 6px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }
    .deadline-content p {
      font-size: 14px;
      color: var(--gd-gray-200);
      line-height: 1.6;
    }

    .cta-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    .share-hint {
      text-align: center;
      font-size: 13px;
      color: var(--gd-gray-400);
      margin-top: 16px;
      font-style: italic;
    }

    /* =====================================================================
       GLOBAL OFFICES FOOTER
       ===================================================================== */
    .global-footer {
      margin-top: 48px;
      padding: 32px;
      background: var(--gd-navy-900);
      color: var(--gd-white);
      border-radius: var(--radius-lg);
    }
    .footer-tagline {
      text-align: center;
      font-size: 13px;
      color: var(--gd-teal-300);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      font-weight: 600;
    }
    .offices {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: center;
    }
    .office { padding: 12px; }
    .office-city {
      font-size: 14px;
      font-weight: 700;
      color: var(--gd-white);
      margin-bottom: 4px;
      letter-spacing: 0.5px;
    }
    .office-country {
      font-size: 12px;
      color: var(--gd-gray-400);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }
    .office-detail {
      font-size: 12.5px;
      color: var(--gd-gray-200);
      line-height: 1.55;
    }

  /* Recommended site CSS — reproduce this in your site's stylesheet. */
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
  .stats-grid .stat { background: #d6e5fd; color: white; border-radius: 12px; padding: 24px 16px; text-align: center; }
  .stats-grid .stat-value { font-size: 32px; font-weight: 700; color: #000000; line-height: 1.1; margin-bottom: 6px; }
  .stats-grid .stat-label { font-size: 12px; color: #756868; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 500; }

  .credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
  .credential-card { background: #F7F9FC; border: 1px solid #D9DEE7; border-left: 4px solid #0FA1DB; padding: 24px; border-radius: 12px; }
  .credential-card h4 { margin-top: 0; }
  .credential-card p { margin-bottom: 0; font-size: 14.5px; color: #4A5468; }
  
  blockquote { border-left: 4px solid #0FA1DB; margin: 20px 0; padding: 16px 20px; background: #F7F9FC; color: #4A5468; }


    /* =====================================================================
       RESPONSIVE
       ===================================================================== */
    @media (max-width: 640px) {
      .hero h1 { font-size: 28px; }
      .hero p { font-size: 15px; }
      .quiz-card { padding: 24px 20px; }
      .intro-facts { grid-template-columns: 1fr; gap: 10px; }
      .cta-row { grid-template-columns: 1fr; }
      .nav-row { grid-template-columns: 1fr; }
      .credentials-bar { gap: 12px; font-size: 12px; }
      .offices { grid-template-columns: 1fr; gap: 16px; }
      .global-footer { padding: 24px 20px; }
      .risk-level { font-size: 34px; }
      .question-text { font-size: 18px; }
    }
    @media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .credentials-grid { grid-template-columns: 1fr; }
  }