/* TheJobBharat landing styles.
   Extracted verbatim from the original standalone index.html <style> block.
   Do not restyle — this file preserves the original design pixel-for-pixel. */

    /* ==========================================================================
       1. CSS VARIABLES & DESIGN SYSTEM (Premium Light Modern Theme)
       ========================================================================== */
    :root {
      /* Brand Palette */
      --color-primary: #1d4ed8;       /* Trustworthy Royal Blue */
      --color-primary-hover: #1e40af;
      --color-primary-light: #eff6ff;
      --color-primary-subtle: #dbeafe;
      
      /* Accents & States */
      --color-accent-green: #059669;  /* Emerald Verified */
      --color-accent-green-bg: #ecfdf5;
      --color-accent-amber: #d97706;
      --color-accent-amber-bg: #fffbeb;
      --color-error: #dc2626;
      --color-error-bg: #fef2f2;

      /* Surfaces */
      --bg-body: #ffffff;
      --bg-surface: #ffffff;
      --bg-muted: #f8fafc;
      --bg-alt: #f1f5f9;
      
      /* Typography */
      --text-heading: #0f172a;       /* Slate 900 */
      --text-body: #334155;          /* Slate 700 */
      --text-muted: #64748b;         /* Slate 500 */
      --text-light: #94a3b8;         /* Slate 400 */
      
      /* Borders & Radii */
      --border-subtle: #e2e8f0;
      --border-focus: #3b82f6;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 22px;
      --radius-full: 9999px;
      
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.07), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
      --shadow-modal: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
      --shadow-sticky: 0 -4px 20px rgba(0, 0, 0, 0.08);

      --max-width: 1180px;
      --transition-base: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ==========================================================================
       2. RESET & BASE STYLES (Zero Horizontal Slide / Overflow)
       ========================================================================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background-color: var(--bg-body);
      color: var(--text-body);
      line-height: 1.55;
      font-size: 16px;
      overflow-x: hidden;
      width: 100%;
      position: relative;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Scroll Lock when Modal is open */
    body.modal-open {
      overflow: hidden !important;
      height: 100vh !important;
    }

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

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

    button, input, select {
      font-family: inherit;
      font-size: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* ==========================================================================
       3. NON-DISMISSIBLE FIRST-LOAD LANGUAGE MODAL
       ========================================================================== */
    .language-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(15, 23, 42, 0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .language-modal-overlay.is-active {
      opacity: 1;
      pointer-events: auto;
    }

    .language-modal-card {
      background: #ffffff;
      width: 100%;
      max-width: 460px;
      border-radius: var(--radius-xl);
      padding: 2.25rem 1.75rem;
      box-shadow: var(--shadow-modal);
      border: 1px solid var(--border-subtle);
      text-align: center;
      position: relative;
      transform: scale(0.95);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .language-modal-overlay.is-active .language-modal-card {
      transform: scale(1);
    }

    .lang-modal-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.75rem;
      background: var(--color-primary-light);
      border: 1px solid var(--color-primary-subtle);
      color: var(--color-primary);
      font-size: 0.78rem;
      font-weight: 700;
      border-radius: var(--radius-full);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.85rem;
    }

    .lang-modal-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-heading);
      letter-spacing: -0.025em;
      margin-bottom: 0.35rem;
      line-height: 1.25;
    }

    .lang-modal-subtitle {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 1.6rem;
    }

    .lang-options-grid {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .lang-select-card {
      width: 100%;
      background: #ffffff;
      border: 2px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 0.95rem 1.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: var(--transition-base);
      text-align: left;
      outline: none;
    }

    .lang-select-card:hover {
      border-color: var(--color-primary);
      background: var(--color-primary-light);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(29, 78, 216, 0.1);
    }

    .lang-select-card:focus-visible {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
    }

    .lang-card-main {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text-heading);
      letter-spacing: -0.01em;
    }

    .lang-card-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .lang-card-arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--bg-muted);
      color: var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition-base);
    }

    .lang-select-card:hover .lang-card-arrow {
      background: var(--color-primary);
      color: #ffffff;
      transform: translateX(3px);
    }

    /* ==========================================================================
       4. NAVIGATION HEADER (Redesigned - Zero Overlap at All Widths)
       ========================================================================== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 900;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      width: 100%;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 0.5rem;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--text-heading);
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .brand-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
      color: #fff;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.05rem;
      box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
    }

    /* Desktop Navigation Links */
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
    }

    .desktop-nav a {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: var(--transition-base);
    }

    .desktop-nav a:hover {
      color: var(--color-primary);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-shrink: 0;
    }

    /* Desktop Segmented Language Control */
    .lang-switcher-segmented {
      display: inline-flex;
      align-items: center;
      background: var(--bg-muted);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-full);
      padding: 2px;
      gap: 2px;
    }

    .lang-switch-btn {
      background: transparent;
      border: none;
      padding: 0.35rem 0.65rem;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: var(--transition-base);
      line-height: 1;
    }

    .lang-switch-btn:hover {
      color: var(--text-heading);
    }

    .lang-switch-btn.is-active {
      background: var(--color-primary);
      color: #ffffff;
      box-shadow: 0 1px 4px rgba(29, 78, 216, 0.3);
    }

    /* Mobile Compact Language Switcher Pill */
    .btn-mobile-lang-pill {
      display: none;
      align-items: center;
      gap: 0.3rem;
      padding: 0.35rem 0.6rem;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--color-primary);
      background: var(--color-primary-light);
      border: 1px solid var(--color-primary-subtle);
      border-radius: var(--radius-full);
      cursor: pointer;
      line-height: 1;
      white-space: nowrap;
    }

    .btn-header-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 1.1rem;
      font-size: 0.86rem;
      font-weight: 700;
      color: #ffffff;
      background: var(--color-primary);
      border-radius: var(--radius-full);
      box-shadow: 0 2px 8px rgba(29, 78, 216, 0.2);
      transition: var(--transition-base);
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-header-cta:hover {
      background: var(--color-primary-hover);
      transform: translateY(-1px);
    }

    /* Mobile Menu Toggle Button */
    .btn-mobile-menu {
      display: none;
      width: 38px;
      height: 38px;
      background: var(--bg-muted);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--text-heading);
      transition: var(--transition-base);
      flex-shrink: 0;
    }

    /* Mobile Drawer */
    .mobile-drawer {
      display: none;
      position: absolute;
      top: 64px;
      left: 0;
      width: 100%;
      background: #ffffff;
      border-bottom: 1px solid var(--border-subtle);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      padding: 1.2rem;
      flex-direction: column;
      gap: 1.1rem;
      animation: fadeIn 0.2s ease-out forwards;
    }

    .mobile-drawer.is-open {
      display: flex;
    }

    .mobile-drawer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .mobile-drawer-links a {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-heading);
      display: block;
      padding: 0.35rem 0;
    }

    .mobile-drawer-lang-section {
      padding-top: 0.85rem;
      border-top: 1px solid var(--border-subtle);
    }

    .mobile-drawer-lang-label {
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.55rem;
    }

    .mobile-drawer-lang-btns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.4rem;
    }

    .drawer-lang-btn {
      padding: 0.5rem;
      background: var(--bg-muted);
      border: 1.5px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-heading);
      text-align: center;
      cursor: pointer;
    }

    .drawer-lang-btn.is-active {
      background: var(--color-primary);
      color: #ffffff;
      border-color: var(--color-primary);
    }

    /* ==========================================================================
       5. HERO SECTION & FORM-FIRST LAYOUT
       ========================================================================== */
    .hero-section {
      position: relative;
      padding: 2.2rem 0 3.2rem;
      background: radial-gradient(circle at 15% 10%, rgba(219, 234, 254, 0.45) 0%, rgba(255, 255, 255, 0) 50%),
                  radial-gradient(circle at 85% 60%, rgba(238, 242, 255, 0.4) 0%, rgba(255, 255, 255, 0) 40%);
      border-bottom: 1px solid var(--border-subtle);
      width: 100%;
      overflow-x: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.98fr;
      gap: 2.5rem;
      align-items: start;
    }

    .hero-left {
      padding-top: 0.4rem;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.35rem 0.85rem;
      background: var(--color-primary-light);
      border: 1px solid var(--color-primary-subtle);
      color: var(--color-primary);
      font-size: 0.8rem;
      font-weight: 700;
      border-radius: var(--radius-full);
      margin-bottom: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .trust-pill svg {
      width: 14px;
      height: 14px;
    }

    .hero-title {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 800;
      line-height: 1.18;
      color: var(--text-heading);
      letter-spacing: -0.03em;
      margin-bottom: 0.9rem;
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--text-body);
      margin-bottom: 1.3rem;
      font-weight: 500;
      line-height: 1.55;
    }

    .salary-notice-box {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      background: #f8fafc;
      border: 1px solid var(--border-subtle);
      border-left: 4px solid var(--color-primary);
      padding: 0.85rem 1.05rem;
      border-radius: var(--radius-md);
      margin-bottom: 1.6rem;
    }

    .salary-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      color: var(--color-primary);
      margin-top: 2px;
    }

    .salary-notice-box p {
      font-size: 0.88rem;
      color: var(--text-heading);
      font-weight: 500;
      line-height: 1.45;
    }

    .salary-notice-box strong {
      color: var(--color-primary);
      font-weight: 700;
    }

    .hero-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 1.8rem;
    }

    .hero-checklist li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-body);
    }

    .check-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--color-accent-green-bg);
      color: var(--color-accent-green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .recruiter-card {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      background: #ffffff;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 0.85rem 1.15rem;
      box-shadow: var(--shadow-sm);
      max-width: 480px;
    }

    .recruiter-img-wrap {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid #ffffff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      background: #e2e8f0;
      position: relative;
    }

    .recruiter-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .recruiter-info h4 {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 0.15rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .recruiter-badge {
      display: inline-block;
      width: 7px;
      height: 7px;
      background-color: var(--color-accent-green);
      border-radius: 50%;
    }

    .recruiter-info p {
      font-size: 0.79rem;
      color: var(--text-muted);
      line-height: 1.35;
    }

    /* Lead Form Card */
    .hero-form-wrapper {
      position: relative;
      z-index: 10;
      width: 100%;
    }

    .form-card {
      background: var(--bg-surface);
      border: 1px solid rgba(226, 232, 240, 0.95);
      border-radius: var(--radius-xl);
      padding: 2rem 1.85rem;
      box-shadow: var(--shadow-card);
      position: relative;
      transition: var(--transition-base);
      width: 100%;
    }

    .form-header {
      margin-bottom: 1.3rem;
      text-align: left;
    }

    .form-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: var(--color-accent-green-bg);
      color: var(--color-accent-green);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.2rem 0.65rem;
      border-radius: var(--radius-full);
      margin-bottom: 0.45rem;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .form-header h2 {
      font-size: 1.38rem;
      font-weight: 800;
      color: var(--text-heading);
      letter-spacing: -0.02em;
      line-height: 1.25;
      margin-bottom: 0.25rem;
    }

    .form-header p {
      font-size: 0.86rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .form-group {
      margin-bottom: 1.1rem;
      position: relative;
      width: 100%;
    }

    .form-label {
      display: block;
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 0.35rem;
    }

    .form-label .required {
      color: var(--color-error);
      margin-left: 2px;
    }

    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
    }

    .input-icon {
      position: absolute;
      left: 12px;
      color: var(--text-light);
      pointer-events: none;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-base);
    }

    .phone-prefix {
      position: absolute;
      left: 12px;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--text-heading);
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .phone-prefix::after {
      content: "";
      display: inline-block;
      width: 1px;
      height: 16px;
      background: var(--border-subtle);
      margin-left: 0.15rem;
    }

    .form-control {
      width: 100%;
      height: 48px;
      padding: 0 0.85rem 0 2.5rem;
      background: #ffffff;
      border: 1.5px solid var(--border-subtle);
      border-radius: var(--radius-md);
      font-size: 0.94rem;
      color: var(--text-heading);
      transition: var(--transition-base);
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-control::placeholder {
      color: var(--text-light);
      font-size: 0.88rem;
      font-weight: 400;
    }

    .form-control.phone-input {
      padding-left: 3.9rem;
      letter-spacing: 0.02em;
    }

    .form-control:focus {
      border-color: var(--border-focus);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
    }

    .select-wrapper {
      position: relative;
    }

    .select-wrapper select {
      cursor: pointer;
      padding-right: 2.5rem;
    }

    .select-chevron {
      position: absolute;
      right: 12px;
      pointer-events: none;
      color: var(--text-muted);
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-group.has-error .form-control {
      border-color: var(--color-error);
      background-color: #fffbfa;
    }

    .error-msg {
      display: none;
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--color-error);
      margin-top: 0.3rem;
      line-height: 1.3;
    }

    .form-group.has-error .error-msg {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .btn-submit {
      width: 100%;
      height: 50px;
      background: var(--color-primary);
      color: #ffffff;
      font-size: 1.02rem;
      font-weight: 700;
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: var(--transition-base);
      box-shadow: 0 4px 14px rgba(29, 78, 216, 0.28);
      margin-top: 1.25rem;
    }

    .btn-submit:hover:not(:disabled) {
      background: var(--color-primary-hover);
      transform: translateY(-1.5px);
    }

    .btn-submit:disabled {
      opacity: 0.72;
      cursor: not-allowed;
      transform: none;
    }

    .spinner {
      display: none;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: #ffffff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }

    .btn-submit.is-loading .spinner {
      display: inline-block;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .form-disclaimer {
      text-align: center;
      font-size: 0.74rem;
      color: var(--text-muted);
      line-height: 1.4;
      margin-top: 0.8rem;
    }

    .form-security-tag {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      margin-top: 0.55rem;
      font-size: 0.72rem;
      color: var(--text-light);
      font-weight: 600;
    }

    .form-state-success {
      display: none;
      text-align: center;
      padding: 2.2rem 0.5rem;
      animation: fadeIn 0.4s ease-out forwards;
    }

    .success-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--color-accent-green-bg);
      color: var(--color-accent-green);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      box-shadow: 0 4px 16px rgba(5, 150, 105, 0.18);
    }

    .success-icon-wrap svg {
      width: 32px;
      height: 32px;
    }

    .form-state-success h3 {
      font-size: 1.38rem;
      font-weight: 800;
      color: var(--text-heading);
      margin-bottom: 0.5rem;
    }

    .form-state-success p {
      font-size: 0.92rem;
      color: var(--text-body);
      line-height: 1.55;
      max-width: 340px;
      margin: 0 auto 1.5rem;
    }

    .success-next-steps {
      background: var(--bg-muted);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 0.95rem 1.1rem;
      text-align: left;
      font-size: 0.84rem;
      color: var(--text-body);
      margin-bottom: 1.4rem;
    }

    .success-next-steps strong {
      display: block;
      color: var(--text-heading);
      margin-bottom: 0.3rem;
      font-size: 0.86rem;
    }

    .btn-reset-form {
      display: inline-block;
      padding: 0.6rem 1.35rem;
      background: #ffffff;
      border: 1.5px solid var(--border-subtle);
      border-radius: var(--radius-full);
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--text-heading);
      cursor: pointer;
      transition: var(--transition-base);
    }

    .btn-reset-form:hover {
      background: var(--bg-muted);
    }

    .form-alert-error {
      display: none;
      background: var(--color-error-bg);
      border: 1px solid #fecaca;
      border-radius: var(--radius-md);
      padding: 0.75rem 0.95rem;
      font-size: 0.82rem;
      color: #991b1b;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

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

    /* ==========================================================================
       6. SECTIONS: PROCESS, BENEFITS, SALARY, FAQ, FINAL CTA
       ========================================================================== */
    .section-process {
      padding: 4rem 0;
      background: var(--bg-surface);
      width: 100%;
      overflow-x: hidden;
    }

    .section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 2.75rem;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--color-primary);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.55rem;
    }

    .section-title {
      font-size: clamp(1.6rem, 2.7vw, 2.2rem);
      font-weight: 800;
      color: var(--text-heading);
      letter-spacing: -0.025em;
      line-height: 1.25;
      margin-bottom: 0.7rem;
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .step-card {
      background: #ffffff;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 1.8rem 1.5rem;
      transition: var(--transition-base);
    }

    .step-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-card);
      border-color: #cbd5e1;
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: var(--radius-md);
      background: var(--color-primary-light);
      color: var(--color-primary);
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 1.2rem;
    }

    .step-card h3 {
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 0.55rem;
    }

    .step-card p {
      font-size: 0.9rem;
      color: var(--text-body);
      line-height: 1.5;
    }

    .section-benefits {
      padding: 4rem 0;
      background: var(--bg-muted);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      width: 100%;
      overflow-x: hidden;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.35rem;
    }

    .benefit-card {
      background: #ffffff;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 1.65rem 1.3rem;
      transition: var(--transition-base);
    }

    .benefit-card:hover {
      border-color: #cbd5e1;
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      background: #f1f5f9;
      color: var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .benefit-icon svg {
      width: 22px;
      height: 22px;
    }

    .benefit-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-heading);
      margin-bottom: 0.45rem;
    }

    .benefit-card p {
      font-size: 0.86rem;
      color: var(--text-body);
      line-height: 1.48;
    }

    .section-salary {
      padding: 4rem 0;
      background: var(--bg-surface);
      width: 100%;
      overflow-x: hidden;
    }

    .salary-banner-card {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      border-radius: var(--radius-xl);
      padding: 2.75rem 2.25rem;
      color: #ffffff;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .salary-banner-card::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0) 70%);
      pointer-events: none;
    }

    .salary-content-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 2.25rem;
      position: relative;
      z-index: 2;
    }

    .salary-tag {
      display: inline-block;
      padding: 0.28rem 0.75rem;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-full);
      font-size: 0.76rem;
      font-weight: 700;
      color: #93c5fd;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
    }

    .salary-content-header h2 {
      font-size: clamp(1.55rem, 2.6vw, 2.15rem);
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.02em;
      margin-bottom: 0.6rem;
    }

    .salary-content-header p {
      font-size: 0.95rem;
      color: #cbd5e1;
      line-height: 1.5;
    }

    .salary-highlight-stat {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-lg);
      padding: 1.35rem;
      max-width: 500px;
      margin: 0 auto 2.25rem;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .salary-stat-label {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #94a3b8;
      font-weight: 700;
      margin-bottom: 0.35rem;
    }

    .salary-stat-value {
      font-size: clamp(1.75rem, 3.2vw, 2.5rem);
      font-weight: 800;
      color: #38bdf8;
      letter-spacing: -0.02em;
    }

    .qual-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.15rem;
      position: relative;
      z-index: 2;
      margin-bottom: 1.6rem;
    }

    .qual-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      padding: 1.25rem;
    }

    .qual-box h4 {
      font-size: 1.02rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.35rem;
    }

    .qual-salary {
      font-size: 0.92rem;
      font-weight: 700;
      color: #38bdf8;
      margin-bottom: 0.45rem;
    }

    .qual-roles {
      font-size: 0.8rem;
      color: #94a3b8;
      line-height: 1.45;
    }

    .salary-disclaimer-note {
      text-align: center;
      font-size: 0.76rem;
      color: #94a3b8;
      position: relative;
      z-index: 2;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.4;
    }

    .section-faq {
      padding: 4rem 0;
      background: var(--bg-muted);
      border-top: 1px solid var(--border-subtle);
      width: 100%;
      overflow-x: hidden;
    }

    .faq-container {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .faq-item {
      background: #ffffff;
      border: 1.5px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-base);
    }

    .faq-item.is-open {
      border-color: #cbd5e1;
      box-shadow: var(--shadow-sm);
    }

    .faq-trigger {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 1.15rem 1.3rem;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-heading);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      cursor: pointer;
      line-height: 1.4;
      transition: var(--transition-base);
    }

    .faq-trigger:hover {
      color: var(--color-primary);
    }

    .faq-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--bg-muted);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease;
    }

    .faq-item.is-open .faq-icon {
      transform: rotate(180deg);
      background: var(--color-primary-light);
      color: var(--color-primary);
    }

    .faq-content {
      display: none;
      padding: 0 1.3rem 1.15rem;
      font-size: 0.91rem;
      color: var(--text-body);
      line-height: 1.6;
    }

    .faq-item.is-open .faq-content {
      display: block;
      animation: fadeIn 0.25s ease-out;
    }

    .section-final-cta {
      padding: 4rem 0;
      background: #ffffff;
      text-align: center;
      border-top: 1px solid var(--border-subtle);
      width: 100%;
      overflow-x: hidden;
    }

    .final-cta-card {
      background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
      border: 1.5px solid var(--color-primary-subtle);
      border-radius: var(--radius-xl);
      padding: 3.2rem 1.8rem;
      max-width: 820px;
      margin: 0 auto;
      box-shadow: var(--shadow-sm);
    }

    .final-cta-card h2 {
      font-size: clamp(1.65rem, 2.9vw, 2.25rem);
      font-weight: 800;
      color: var(--text-heading);
      letter-spacing: -0.025em;
      line-height: 1.25;
      margin-bottom: 0.7rem;
    }

    .final-cta-card p {
      font-size: 1.02rem;
      color: var(--text-body);
      max-width: 540px;
      margin: 0 auto 1.6rem;
    }

    .btn-large-scroll {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.9rem 2.1rem;
      font-size: 1.02rem;
      font-weight: 700;
      color: #ffffff;
      background: var(--color-primary);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
      transition: var(--transition-base);
      border: none;
      cursor: pointer;
    }

    .btn-large-scroll:hover {
      background: var(--color-primary-hover);
      transform: translateY(-2px);
    }

    /* ==========================================================================
       7. FOOTER WITH COMPLETE LEGAL COMPLIANCE & FRAUD PROTECTION
       ========================================================================== */
    .site-footer {
      background: #0f172a;
      color: #94a3b8;
      padding: 3rem 0 2rem;
      font-size: 0.84rem;
      width: 100%;
      overflow-x: hidden;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.25rem;
      padding-bottom: 1.75rem;
      border-bottom: 1px solid #1e293b;
    }

    .footer-brand {
      color: #ffffff;
      font-weight: 800;
      font-size: 1.15rem;
    }

    /* Prominent Anti-Fraud Warning Box in Footer */
    .footer-fraud-alert {
      margin-top: 1.5rem;
      padding: 1.1rem 1.25rem;
      background: rgba(220, 38, 38, 0.12);
      border: 1px solid rgba(239, 68, 68, 0.35);
      border-radius: var(--radius-md);
      color: #fca5a5;
      font-size: 0.82rem;
      line-height: 1.5;
    }

    .footer-fraud-alert strong {
      color: #fecaca;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.86rem;
      margin-bottom: 0.3rem;
    }

    /* Clickable Legal Policies Navigation */
    .footer-legal-nav {
      margin-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.4rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #1e293b;
    }

    .legal-nav-link {
      color: #93c5fd;
      font-size: 0.84rem;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      transition: var(--transition-base);
    }

    .legal-nav-link:hover {
      color: #ffffff;
    }

    .footer-disclaimer-box {
      margin-top: 1.5rem;
      padding: 1.15rem;
      background: #1e293b;
      border-radius: var(--radius-md);
      font-size: 0.77rem;
      line-height: 1.5;
      color: #94a3b8;
    }

    .footer-bottom {
      margin-top: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.85rem;
      font-size: 0.77rem;
      color: #64748b;
    }

    /* ==========================================================================
       8. LEGAL POLICY MODAL (Accessible, Scrollable, Full Legal Text)
       ========================================================================== */
    .legal-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .legal-modal-overlay.is-open {
      display: flex;
    }

    .legal-modal-card {
      background: #ffffff;
      width: 100%;
      max-width: 680px;
      max-height: 85vh;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-modal);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      animation: fadeIn 0.25s ease-out;
    }

    .legal-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border-subtle);
      background: var(--bg-muted);
    }

    .legal-modal-header h3 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text-heading);
    }

    .btn-close-legal {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--border-subtle);
      background: #ffffff;
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: var(--transition-base);
    }

    .btn-close-legal:hover {
      background: var(--color-error-bg);
      color: var(--color-error);
      border-color: #fca5a5;
    }

    .legal-modal-body {
      padding: 1.5rem;
      overflow-y: auto;
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--text-body);
    }

    .legal-modal-body h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-heading);
      margin: 1.1rem 0 0.35rem;
    }

    .legal-modal-body h4:first-child {
      margin-top: 0;
    }

    .legal-modal-body p, .legal-modal-body ul {
      margin-bottom: 0.85rem;
    }

    .legal-modal-body ul {
      padding-left: 1.3rem;
    }

    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-top: 1px solid var(--border-subtle);
      padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
      z-index: 85;
      box-shadow: var(--shadow-sticky);
      display: none;
      transform: translateY(100%);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-sticky-cta.is-visible {
      transform: translateY(0);
    }

    .btn-mobile-sticky {
      width: 100%;
      height: 48px;
      background: var(--color-primary);
      color: #ffffff;
      font-size: 0.96rem;
      font-weight: 700;
      border: none;
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
    }

    /* ==========================================================================
       9. RESPONSIVE ARCHITECTURE — MOBILE FORM AT VERY STARTING & OVERFLOW FIX
       ========================================================================== */
    @media (max-width: 991px) {
      .header-inner {
        height: 60px;
      }

      .desktop-nav,
      .btn-header-cta,
      .lang-switcher-segmented {
        display: none; /* Prevents header row overflow on mobile screens */
      }

      .btn-mobile-lang-pill,
      .btn-mobile-menu {
        display: inline-flex;
      }

      /* STRICT MOBILE FORM-FIRST: Form is placed at the VERY STARTING (order: 1) */
      .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
      }

      /* 1. FORM IS ABSOLUTE FIRST CONTENT AT TOP ON MOBILE */
      .hero-form-wrapper {
        order: 1 !important;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
      }

      /* 2. Hero left (Headline, subtitle, trust elements) follows under the form on mobile */
      .hero-left {
        order: 2 !important;
        margin-top: 0.75rem;
      }

      .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
      }

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

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

      .mobile-sticky-cta {
        display: block;
      }
    }

    @media (max-width: 640px) {
      .container {
        padding: 0 1rem;
      }

      .hero-section {
        padding: 0.9rem 0 2rem;
      }

      .form-card {
        padding: 1.35rem 1.05rem;
        border-radius: var(--radius-lg);
      }

      .form-header h2 {
        font-size: 1.22rem;
      }

      .hero-title {
        font-size: 1.7rem;
        margin-bottom: 0.55rem;
      }

      .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 0.8rem;
      }

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

      .salary-banner-card {
        padding: 1.85rem 1.15rem;
        border-radius: var(--radius-lg);
      }

      .final-cta-card {
        padding: 2.1rem 1.15rem;
      }

      .footer-top, .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* Smallest screens (320px - 360px): Zero overflow guaranteed */
    @media (max-width: 360px) {
      .container {
        padding: 0 0.75rem;
      }

      .brand-logo {
        font-size: 1.08rem;
      }

      .brand-icon {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
      }

      .btn-mobile-lang-pill {
        padding: 0.3rem 0.45rem;
        font-size: 0.72rem;
      }

      .btn-mobile-menu {
        width: 34px;
        height: 34px;
      }

      .hero-title {
        font-size: 1.5rem;
      }

      .form-card {
        padding: 1.15rem 0.8rem;
      }

      .phone-prefix {
        font-size: 0.82rem;
        left: 10px;
      }

      .form-control.phone-input {
        padding-left: 3.55rem;
      }

      .form-control {
        padding-left: 2.3rem;
        font-size: 0.88rem;
      }
    }
  

    /* ==========================================================================
       WORDPRESS INTEGRATION: HONEYPOT FIELD
       Visually hidden, never focusable, zero layout impact. Real users never
       see or fill it; automated spam bots typically do.
       ========================================================================== */
    .jc-hp-field {
      position: absolute !important;
      left: -9999px !important;
      top: auto !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
  