/* ------------------------------------------------------------------
   Employer of Record landing page styles
   Every class is prefixed .eor- so nothing here can leak into or be
   overridden by the rest of the site. Colours match the existing
   green used across thehiringcompany.co.in.
------------------------------------------------------------------ */

.eor {
  --eor-green: #0e8a4d;
  --eor-green-dark: #0a6b3b;
  --eor-tint: #e7f4ec;
  --eor-tint-2: #f2f9f5;
  --eor-ink: #1b2b33;
  --eor-soft: #5d6f79;
  --eor-line: #e2e9e5;
  --eor-radius: 14px;

  color: var(--eor-ink);
  line-height: 1.6;
}

.eor *,
.eor *::before,
.eor *::after { box-sizing: border-box; }

.eor-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eor-section { padding: 74px 0; }
.eor-notop { padding-top: 0; }
.eor-tint { background: var(--eor-tint-2); }
.eor a { text-decoration: none; color: inherit; }
.eor :focus-visible { outline: 3px solid var(--eor-green); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  .eor * { transition: none !important; animation: none !important; }
}

/* buttons ---------------------------------------------------------- */
.eor-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 9px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .15s, color .15s;
}
.eor-btn-solid { background: var(--eor-green); color: #fff; }
.eor-btn-solid:hover:not(:disabled) { background: var(--eor-green-dark); }
.eor-btn-solid:disabled { opacity: .7; cursor: default; }
.eor-btn-ghost { border-color: var(--eor-green); color: var(--eor-green); background: #fff; }
.eor-btn-ghost:hover { background: var(--eor-tint); }
.eor-btn-lg { padding: 16px 34px; font-size: 16px; }
.eor-btn-block { width: 100%; margin-top: 20px; }

/* hero ------------------------------------------------------------- */
.eor-hero { background: linear-gradient(180deg, var(--eor-tint) 0%, #f4faf6 100%); padding: 64px 0 72px; }
.eor-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eor-hero h1 { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.1; font-weight: 700; letter-spacing: -1.3px; margin: 0; }
.eor-sub { font-size: 18px; color: var(--eor-soft); margin: 20px 0 0; max-width: 53ch; }
.eor-assure { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; font-size: 14.5px; font-weight: 500; }
.eor-assure span { display: flex; align-items: center; gap: 7px; }
.eor-tick {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--eor-green); color: #fff; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; font-style: normal;
}
.eor-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* enquiry form ----------------------------------------------------- */
.eor-quote {
  background: #fff; border-radius: 18px; padding: 30px;
  box-shadow: 0 14px 44px rgba(14,138,77,.13); border: 1px solid var(--eor-line);
}
.eor-quote h2 { font-size: 20px; font-weight: 600; letter-spacing: -.3px; margin: 0; }
.eor-hint { font-size: 14px; color: var(--eor-soft); margin: 6px 0 0; }
.eor-field { margin-top: 15px; }
.eor-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.eor-field input, .eor-field select {
  width: 100%; font: inherit; font-size: 15px; padding: 13px 14px;
  border: 1.5px solid var(--eor-line); border-radius: 9px; background: #fbfdfc; color: var(--eor-ink);
}
.eor-field input:focus, .eor-field select:focus { border-color: var(--eor-green); outline: none; background: #fff; }
.eor-fine { font-size: 12.5px; color: var(--eor-soft); margin: 12px 0 0; text-align: center; }
.eor-formerr { font-size: 13px; color: #b3261e; margin: 10px 0 0; text-align: center; }

/* section headings ------------------------------------------------- */
.eor-head { max-width: 66ch; margin-bottom: 38px; }
.eor-mid { margin-left: auto; margin-right: auto; text-align: center; }
.eor-title { font-size: clamp(27px, 3.2vw, 38px); line-height: 1.18; font-weight: 700; letter-spacing: -.9px; margin: 0; }
.eor-mb { margin-bottom: 22px; }
.eor-head p { color: var(--eor-soft); margin: 13px 0 0; font-size: 17px; }

/* pricing cards ---------------------------------------------------- */
.eor-prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.eor-pcard {
  background: #fff; border: 1px solid var(--eor-line); border-radius: var(--eor-radius);
  padding: 26px 22px; display: flex; flex-direction: column;
}
.eor-pcard.eor-lead { border: 2px solid var(--eor-green); position: relative; }
.eor-pcard.eor-lead::after {
  content: "Most enquiries"; position: absolute; top: -11px; left: 22px;
  background: var(--eor-green); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 20px;
}
.eor-pcard h3 { font-size: 17px; font-weight: 600; margin: 0; }
.eor-who { font-size: 14px; color: var(--eor-soft); margin: 8px 0 0; min-height: 66px; }
.eor-amt { font-size: 29px; font-weight: 700; color: var(--eor-green); letter-spacing: -1px; margin-top: 6px; }
.eor-per { font-size: 13px; color: var(--eor-soft); margin-top: 2px; }
.eor-pcard ul { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--eor-line); font-size: 14px; }
.eor-pcard li { padding-left: 20px; position: relative; margin-bottom: 8px; color: var(--eor-soft); }
.eor-pcard li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--eor-green);
}
.eor-pricenote { margin: 22px 0 0; font-size: 14.5px; color: var(--eor-soft); max-width: 82ch; }

/* you / we split --------------------------------------------------- */
.eor-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.eor-panel { border-radius: var(--eor-radius); padding: 30px 28px; background: #fff; border: 1px solid var(--eor-line); }
.eor-panel-us { background: var(--eor-green); color: #fff; border-color: var(--eor-green); }
.eor-panel h3 { font-size: 19px; font-weight: 600; margin: 0 0 18px; }
.eor-panel ul { list-style: none; margin: 0; padding: 0; font-size: 15.5px; }
.eor-panel li { padding-left: 28px; position: relative; margin-bottom: 12px; }
.eor-panel li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 8px;
  border-left: 2.5px solid var(--eor-green); border-bottom: 2.5px solid var(--eor-green);
  transform: rotate(-45deg);
}
.eor-panel-us li { color: #e4f4ea; }
.eor-panel-us li::before { border-color: #fff; }

/* steps ------------------------------------------------------------ */
.eor-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; list-style: none; margin: 0; padding: 0; }
.eor-step { padding: 0 26px 0 0; position: relative; }
.eor-step:not(:last-child)::after {
  content: ""; position: absolute; right: 13px; top: 16px; bottom: 6px; width: 1px; background: var(--eor-line);
}
.eor-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--eor-tint); color: var(--eor-green);
  display: grid; place-items: center; font-weight: 700; font-size: 15px; margin-bottom: 14px;
}
.eor-step h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.eor-step p { font-size: 14.5px; color: var(--eor-soft); margin: 0; }

/* cost table ------------------------------------------------------- */
.eor-costgrid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
.eor-table {
  width: 100%; border-collapse: collapse; font-size: 15px; background: #fff;
  border: 1px solid var(--eor-line); border-radius: var(--eor-radius); overflow: hidden;
}
.eor-table caption { text-align: left; font-size: 14px; color: var(--eor-soft); padding-bottom: 12px; }
.eor-table th {
  text-align: left; background: var(--eor-tint); color: var(--eor-green-dark);
  font-size: 12.5px; font-weight: 600; padding: 13px 18px; letter-spacing: .3px;
}
.eor-table td { padding: 13px 18px; border-top: 1px solid var(--eor-line); }
.eor-r { text-align: right; white-space: nowrap; }
.eor-sum td { background: var(--eor-tint-2); font-weight: 700; font-size: 16px; }
.eor-costnote { font-size: 14px; color: var(--eor-soft); margin: 14px 0 0; }
.eor-aside h3 { font-size: 20px; font-weight: 600; letter-spacing: -.4px; margin: 0 0 14px; }
.eor-aside p { font-size: 15.5px; color: var(--eor-soft); margin: 0 0 14px; }
.eor-pull { border-left: 3px solid var(--eor-green); padding: 4px 0 4px 18px; font-size: 15.5px; font-weight: 500; }

/* comparison ------------------------------------------------------- */
.eor-scroll { overflow-x: auto; }
.eor-cmp {
  width: 100%; min-width: 720px; border-collapse: collapse; font-size: 15px; background: #fff;
  border: 1px solid var(--eor-line); border-radius: var(--eor-radius); overflow: hidden;
}
.eor-cmp th {
  background: #fff; border-bottom: 2px solid var(--eor-line);
  font-size: 13.5px; font-weight: 600; text-align: left; padding: 16px 18px;
}
.eor-cmp th.eor-mine { background: var(--eor-tint); color: var(--eor-green-dark); }
.eor-cmp td { padding: 14px 18px; border-top: 1px solid var(--eor-line); color: var(--eor-soft); }
.eor-cmp td:first-child { color: var(--eor-ink); font-weight: 500; }
.eor-cmp td.eor-mine { background: var(--eor-tint-2); color: var(--eor-green-dark); font-weight: 600; }

/* dark callout ----------------------------------------------------- */
.eor-warn { background: var(--eor-ink); color: #dbe6ea; border-radius: 20px; padding: 48px 46px; }
.eor-warn h2 {
  color: #fff; font-size: clamp(24px, 2.8vw, 32px); font-weight: 700;
  letter-spacing: -.7px; line-height: 1.2; max-width: 24ch; margin: 0;
}
.eor-warn-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 24px; }
.eor-warn p { font-size: 15.5px; line-height: 1.65; margin: 0; }
.eor-warn strong { color: #fff; }

/* stats ------------------------------------------------------------ */
.eor-stats {
  background: var(--eor-green); border-radius: 20px; padding: 40px 30px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center;
}
.eor-stats b {
  display: block; font-size: clamp(28px, 3.4vw, 38px); font-weight: 700;
  color: #fff; letter-spacing: -1px; line-height: 1.1;
}
.eor-stats span { display: block; font-size: 14px; color: #cfe9da; margin-top: 7px; }

/* faq -------------------------------------------------------------- */
.eor-faq { max-width: 840px; margin: 0 auto; }
.eor-acc { background: #fff; border: 1px solid var(--eor-line); border-radius: 11px; margin-bottom: 12px; overflow: hidden; }
.eor-acc.eor-open { border-color: var(--eor-green); }
.eor-acc button {
  width: 100%; background: none; border: 0; cursor: pointer; font: inherit;
  padding: 19px 22px; font-weight: 600; font-size: 16px; text-align: left; color: var(--eor-ink);
  display: flex; justify-content: space-between; gap: 18px; align-items: flex-start;
}
.eor-acc button i { color: var(--eor-green); font-size: 22px; font-style: normal; line-height: 1; flex: none; }
.eor-acc p { padding: 0 22px 20px; color: var(--eor-soft); font-size: 15.5px; margin: 0; }

/* final cta -------------------------------------------------------- */
.eor-final { background: var(--eor-tint); border-radius: 20px; padding: 52px 44px; text-align: center; }
.eor-final h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -.8px; max-width: 22ch; margin: 0 auto; }
.eor-final p { color: var(--eor-soft); margin: 15px auto 28px; max-width: 60ch; font-size: 16.5px; }

/* responsive ------------------------------------------------------- */
@media (max-width: 960px) {
  .eor-hero-grid, .eor-costgrid { grid-template-columns: 1fr; gap: 38px; }
  .eor-prices, .eor-steps { grid-template-columns: 1fr 1fr; }
  .eor-step { padding: 0; }
  .eor-step::after { display: none; }
  .eor-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .eor-prices, .eor-steps, .eor-split, .eor-warn-cols, .eor-stats { grid-template-columns: 1fr; }
  .eor-section { padding: 52px 0; }
  .eor-warn, .eor-final, .eor-stats { padding: 32px 24px; }
  .eor-who { min-height: 0; }
}

/* ------------------------------------------------------------------
   Theme defence
   The Jobcy theme (assets/css/app.min.css) and Bootstrap are loaded
   before this file on every page. These rules re-assert the ones they
   would otherwise win, scoped to .eor so nothing else is touched.
------------------------------------------------------------------ */

.eor,
.eor h1, .eor h2, .eor h3, .eor h4,
.eor p, .eor li, .eor td, .eor th,
.eor input, .eor select, .eor button {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* the theme styles bare h1-h4 and table cells; re-assert ours */
.eor h1, .eor h2, .eor h3, .eor h4 { margin: 0; color: inherit; }
.eor p, .eor ul, .eor ol { margin: 0; }
.eor table { margin: 0; color: inherit; }
.eor th, .eor td { vertical-align: top; }
.eor-table th, .eor-cmp th { text-transform: none; }

/* .btn from Bootstrap would otherwise beat .eor-btn on padding and colour */
.eor .eor-btn { text-decoration: none; line-height: 1.2; }
.eor .eor-btn-solid { background: var(--eor-green); color: #fff; border-color: var(--eor-green); }
.eor .eor-btn-solid:hover:not(:disabled) { background: var(--eor-green-dark); color: #fff; }
.eor .eor-btn-ghost { background: #fff; color: var(--eor-green); border-color: var(--eor-green); }
.eor .eor-btn-ghost:hover { background: var(--eor-tint); color: var(--eor-green); }

/* ------------------------------------------------------------------
   Client logo strip
------------------------------------------------------------------ */
.eor-logos { border-bottom: 1px solid var(--eor-line); padding: 26px 0; background: #fff; }
.eor-logos p { text-align: center; font-size: 13px; color: var(--eor-soft); margin: 0 0 16px; }
.eor-logorow {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 18px 40px;
}
.eor-logorow img { max-height: 38px; width: auto; opacity: .75; }

/* ------------------------------------------------------------------
   FAQ — native <details>, so it is keyboard accessible with no JS
------------------------------------------------------------------ */
.eor-acc summary {
  cursor: pointer; padding: 19px 22px; font-weight: 600; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between;
  gap: 18px; align-items: flex-start; color: var(--eor-ink);
}
.eor-acc summary::-webkit-details-marker { display: none; }
.eor-acc summary::after { content: "+"; color: var(--eor-green); font-size: 22px; font-weight: 400; line-height: 1; flex: none; }
.eor-acc[open] { border-color: var(--eor-green); }
.eor-acc[open] summary::after { content: "\2013"; }

/* ------------------------------------------------------------------
   Enquiry form states
------------------------------------------------------------------ */
.eor-formok { font-size: 14px; color: var(--eor-green-dark); margin: 12px 0 0; text-align: center; font-weight: 600; }
.eor-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------
   Success popup (SweetAlert2)
   Rendered at the end of <body>, outside .eor, so these rules cannot be
   scoped under .eor - the .eor-swal class is what keeps them isolated.
------------------------------------------------------------------ */
.eor-swal {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  border-radius: 20px;
  max-width: calc(100vw - 32px);
}
.eor-swal .swal2-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -.6px;
  line-height: 1.25;
  color: #1b2b33;
  padding: 0 0 6px;
}
.eor-swal .swal2-html-container {
  margin: 12px 0 0;
  font-size: 16px;
}
.eor-swal .swal2-icon {
  width: 84px;
  height: 84px;
  margin: 4px auto 22px;
}
.eor-swal .swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(14, 138, 77, .3); }
.eor-swal .swal2-icon.swal2-success [class^="swal2-success-line"] { background-color: #0e8a4d; }
.eor-swal .swal2-actions { margin-top: 28px; }

/* The theme's Swal runs with buttonsStyling:false, so the button gets no
   styling of its own - this class supplies it. Colours are literal because
   the --eor-* custom properties are scoped to .eor and the popup renders
   outside it, at the end of <body>. */
.eor-swal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: #0e8a4d;
  border: 1.5px solid #0e8a4d;
  border-radius: 9px;
  padding: 15px 46px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(14, 138, 77, .25);
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.eor-swal-btn:hover {
  background: #0a6b3b;
  border-color: #0a6b3b;
  color: #fff;
}
.eor-swal-btn:focus-visible {
  outline: 3px solid #0e8a4d;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .eor-swal { padding: 1.75rem 1.25rem !important; }
  .eor-swal-btn { width: 100%; padding: 15px 20px; }
}
