:root {
      --brand-blue: #3322ee;
      --dark-navy: #2b2b45;
      --field-line: #e3e3ec;
      --chip-bg: #f4f4f8;
      --chip-text: #2b2b45;
      --asterisk: #ff3b5c;
      --placeholder: #9a9aae;
    }
 
    /* ---------- Device frame ---------- */
    .device {
      position: relative;
      width: 100%;
      max-width: 515px;
      background: #050505;
      border-radius: 38px;
      padding: 26px 16px 16px;
          transform: matrix(0.8, 0, 0, 0.8, 0, 0);
      box-shadow:
        inset 0 0 0 2px #2a2a2a,
        0 30px 60px rgba(0, 0, 0, 0.55);
            border: 1px solid #ffffffd1;
        position: relative;
    }
 
    /* subtle inner bezel highlight line */
    .device::before {
      content: "";
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 30px;
      pointer-events: none;
    }
 
    /* camera dot at top center */
    .device::after {
      content: "";
      position: absolute;
      top: 13px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #3a3a3a;
    }
 
    /* ---------- White card screen ---------- */
    .screen {
      position: relative;
      z-index: 2;
      background: #ffffff;
      border-radius: 26px;
      width: 100%;
      padding: clamp(26px, 6%, 42px) clamp(22px, 6%, 44px);
      display: flex;
      flex-direction: column;
    }
 
    /* ---------- Title ---------- */
    .form-title {
      text-align: center;
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.5px;
      margin-bottom: clamp(20px, 4.5%, 34px);
      font-size: clamp(28px, 8.5vw, 44px);
    }
    .form-title .line1 { color: var(--dark-navy); display: block; }
    .form-title .line2 { color: var(--brand-blue); display: block; }
 
    /* ---------- Service chips ---------- */
    .service-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(10px, 2.5%, 16px);
      margin-bottom: clamp(20px, 5%, 36px);
    }
    .chip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--chip-bg);
      color: var(--chip-text);
      border: 1.5px solid transparent;
      border-radius: 12px;
      padding: clamp(11px, 2.6vw, 15px) 10px;
      font-size: clamp(12px, 3vw, 14px);
      font-weight: 500;
      cursor: pointer;
      text-align: center;
      transition: all 0.18s ease;
      user-select: none;
    }
    .chip:hover { background: #ececf3; }
    .chip.active {
      background: #ffffff;
      border-color: var(--dark-navy);
      font-weight: 600;
    }
    .chip .arrow {
      color: var(--brand-blue);
      font-weight: 700;
      display: inline-flex;
    }
    .chip:not(.active) .arrow { display: none; }
 
    /* ---------- Form fields (underline style) ---------- */
    .form-fields { margin-top: 2px; }
 
    .field-wrap {
      position: relative;
      border-bottom: 1.5px solid var(--field-line);
      margin-bottom: clamp(20px, 4.5%, 30px);
      transition: border-color 0.18s ease;
    }
    .field-wrap:focus-within { border-bottom-color: var(--brand-blue); }
 
    .field-label {
      display: block;
      font-size: clamp(13px, 3.4vw, 16px);
      font-weight: 500;
      color: var(--dark-navy);
      margin-bottom: 6px;
    }
    .field-label .req { color: var(--asterisk); }
 
    .field {
      border: none;
      border-radius: 0;
      padding: 0 0 8px 0;
      width: 100%;
      font-size: clamp(13px, 3.4vw, 16px);
      font-weight: 500;
      color: var(--dark-navy);
      background: transparent;
      outline: none;
    }
    .field::placeholder { color: var(--placeholder); font-weight: 500; }
 
    textarea.field { resize: none; }
 
    /* ---------- Submit button ---------- */
    .submit-btn {
      margin-top: clamp(8px, 2%, 16px);
      width: 100%;
      background: var(--brand-blue);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: clamp(14px, 3.4vw, 18px);
      font-weight: 700;
      letter-spacing: 0.5px;
      font-size: clamp(13px, 3.4vw, 16px);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      cursor: pointer;
      transition: background 0.18s ease, transform 0.1s ease;
    }
    .submit-btn:hover { background: #2616d0; }
    .submit-btn:active { transform: scale(0.99); }
 
    /* Small screens */
    @media (max-width: 420px) {
      body { padding: 12px; }
      .device { padding: 22px 10px 10px; border-radius: 30px; }
      .device::before { inset: 7px; border-radius: 24px; }
    }

     /* ===== Section wrapper ===== */
    .faqx-section {
      max-width: 1170px;
      margin: 0 auto;
    }
 
    .faqx-heading {
      text-align: center;
      font-weight: 800;
      color: #2b2b45;
      letter-spacing: -0.3px;
      font-size: clamp(24px, 4.5vw, 34px);
      margin: 0 0 clamp(26px, 4vw, 44px);
    }
 
    /* ===== Accordion list ===== */
    .faqx-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
 
    /* ===== Single item card ===== */
    .faqx-item {
      position: relative;
      background: #ffffff;
      border: 1px solid #ececf2;
      border-radius: 10px;
      transition: box-shadow 0.25s ease, border-color 0.25s ease;
    }
 
    /* open card gets a soft elevated shadow (CSS :has, no JS) */
    .faqx-item:has(.faqx-toggle:checked) {
      border-color: #f0f0f5;
      box-shadow: 0 16px 40px rgba(40, 30, 120, 0.10),
                  0 4px 12px rgba(40, 30, 120, 0.05);
    }
 
    /* hidden checkbox that drives the open/close state */
    .faqx-toggle {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
      pointer-events: none;
    }
 
    /* clickable header row (the label) */
    .faqx-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      cursor: pointer;
      margin: 0;
      padding: clamp(18px, 2.4vw, 24px) clamp(20px, 2.6vw, 28px);
    }
 
    .faqx-question {
      font-weight: 700;
      color: #1b1b2f;
      line-height: 1.4;
      font-size: clamp(14px, 2.1vw, 16px);
    }
 
    /* circular toggle icon */
    .faqx-icon {
      flex: 0 0 auto;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid #d9d6f7;
      color: #3322ee;
      background: #ffffff;
      transition: transform 0.3s ease, background 0.25s ease,
                  color 0.25s ease, border-color 0.25s ease;
    }
    .faqx-icon svg { width: 14px; height: 14px; display: block; }
 
    /* open state: filled blue circle, white chevron, flipped up */
    .faqx-item:has(.faqx-toggle:checked) .faqx-icon {
      background: #3322ee;
      border-color: #3322ee;
      color: #ffffff;
      transform: rotate(180deg);
      box-shadow: 0 6px 14px rgba(51, 34, 238, 0.35);
    }
 
    /* keyboard focus visibility on the header */
    .faqx-toggle:focus-visible ~ .faqx-head .faqx-icon {
      outline: 2px solid #3322ee;
      outline-offset: 2px;
    }
 
    .faqx-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faqx-item:has(.faqx-toggle:checked) .faqx-body {
      max-height: 400px;
    }
 
    .faqx-answer {
      color: #6c6c80;
      line-height: 1.7;
      font-weight: 400;
      font-size: clamp(13px, 2vw, 15px);
      margin: 0;
      padding: 0 clamp(20px, 2.6vw, 28px) clamp(20px, 2.4vw, 24px);
    }
 
    /* on small screens keep the icon from shrinking the text too much */
    @media (max-width: 420px) {
      .faqx-head { gap: 12px; }
      .faqx-icon { width: 28px; height: 28px; }
    }

    .location-map {
    position: absolute;
    top: 2%;
    right: -16%;
}