:root {
  --org-orange: #ff7a00;
  --org-orange-dark: #e86c00;
  --org-ink: #18202f;
  --org-muted: #667085;
  --org-border: #e7eaf0;
  --org-soft: #f7f8fb;
  --org-white: #ffffff;
  --org-green: #168a4a;
  --org-shadow: 0 18px 50px rgba(24, 32, 47, 0.10);
}

.ecx-org-page {
  background: var(--org-soft);
  color: var(--org-ink);
}

.org-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.org-hero {
  padding: 70px 0 50px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 0, 0.16), transparent 32%),
    linear-gradient(135deg, #fff6ec 0%, #ffffff 45%, #f3f6fb 100%);
}

.org-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
}

.org-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.10);
  color: var(--org-orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.org-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.org-hero-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--org-muted);
  font-size: 18px;
  line-height: 1.7;
}

.org-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.org-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
}

.org-btn.primary {
  background: var(--org-orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.24);
}

.org-btn.primary:hover {
  background: var(--org-orange-dark);
}

.org-btn.secondary {
  background: #fff;
  color: var(--org-ink);
  border-color: var(--org-border);
}

.org-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.org-trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 234, 240, 0.95);
  color: #404a5c;
  font-size: 13px;
  font-weight: 800;
}

.org-hero-card {
  display: flex;
  justify-content: center;
}

.org-phone-card {
  width: min(100%, 390px);
  border-radius: 22px;
  padding: 18px;
  background: #151b28;
  box-shadow: var(--org-shadow);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.org-phone-top {
  display: flex;
  gap: 6px;
  padding: 4px 2px 14px;
}

.org-phone-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.org-listing-preview {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}

.org-preview-image {
  min-height: 190px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(24, 32, 47, 0.05), rgba(24, 32, 47, 0.42)),
    url('/assets/img/ec-logo.png') center/contain no-repeat,
    linear-gradient(135deg, #fff2e5, #eaf2ff);
  border: 1px solid var(--org-border);
}

.org-listing-preview strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

.org-listing-preview p {
  margin: 5px 0 12px;
  color: var(--org-muted);
}

.org-preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--org-border);
  color: var(--org-muted);
}

.org-preview-meta b {
  color: var(--org-ink);
}

.org-preview-meta b.green {
  color: var(--org-green);
}

.org-listing-preview button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--org-orange);
  color: #fff;
  font-weight: 900;
}

.org-section {
  padding: 54px 0;
}

.org-stats-section {
  padding-top: 34px;
}

.org-stats-grid,
.org-steps-grid,
.org-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.org-stats-grid article,
.org-steps-grid article,
.org-benefit-grid article,
.org-contact-card,
.org-form {
  border: 1px solid var(--org-border);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 32, 47, 0.05);
}

.org-stats-grid article {
  padding: 22px;
}

.org-stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--org-orange-dark);
  font-size: 24px;
}

.org-stats-grid span {
  color: var(--org-muted);
  line-height: 1.55;
}

.org-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.org-section-head h2,
.org-two-col h2,
.org-form-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.org-section-head p,
.org-two-col p,
.org-form-copy p {
  color: var(--org-muted);
  line-height: 1.7;
  font-size: 16px;
}

.org-steps-grid article,
.org-benefit-grid article {
  padding: 22px;
}

.org-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--org-orange);
  color: #fff;
  font-weight: 900;
}

.org-steps-grid h3,
.org-benefit-grid h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.org-steps-grid p,
.org-benefit-grid p {
  margin: 0;
  color: var(--org-muted);
  line-height: 1.65;
}

.org-light-section {
  background: #fff;
  border-top: 1px solid var(--org-border);
  border-bottom: 1px solid var(--org-border);
}

.org-two-col,
.org-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.org-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.org-check-grid div {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--org-border);
  border-radius: 6px;
  background: var(--org-soft);
  font-weight: 800;
  color: #344054;
}

.org-check-grid div::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.12);
  color: var(--org-orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.org-contact-card {
  margin-top: 22px;
  padding: 18px;
}

.org-contact-card strong {
  display: block;
  margin-bottom: 6px;
}

.org-contact-card p {
  margin: 0 0 12px;
  font-size: 14px;
}

.org-contact-card a {
  color: var(--org-orange-dark);
  font-weight: 900;
}

.org-contact-card button {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 6px;
  border: 1px solid var(--org-border);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.org-form {
  padding: 22px;
}

.org-form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.org-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.org-form label span {
  font-size: 13px;
  font-weight: 900;
  color: #344054;
}

.org-form input,
.org-form select,
.org-form textarea {
  width: 100%;
  border: 1px solid var(--org-border);
  border-radius: 6px;
  background: #fff;
  color: var(--org-ink);
  padding: 12px 13px;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.org-form input:focus,
.org-form select:focus,
.org-form textarea:focus {
  border-color: rgba(255, 122, 0, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.org-form textarea {
  resize: vertical;
  min-height: 130px;
}

.org-consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  margin-top: 4px;
}

.org-consent input {
  width: auto;
  margin-top: 3px;
}

.org-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  background: var(--org-orange);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.21);
}

.org-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.org-form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--org-muted);
  font-weight: 800;
}

.org-form-status.success {
  color: var(--org-green);
}

.org-form-status.error {
  color: #b42318;
}

.org-footer {
  padding: 36px 0 20px;
  background: #121826;
  color: #fff;
}

.org-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 24px;
}

.org-footer p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
}

.org-footer a {
  display: inline-flex;
  margin: 0 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
}

.org-footer a:hover {
  color: #fff;
}

.org-footer-bottom {
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

@media (max-width: 980px) {
  .org-hero-grid,
  .org-two-col,
  .org-form-grid {
    grid-template-columns: 1fr;
  }

  .org-stats-grid,
  .org-steps-grid,
  .org-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .org-wrap {
    width: min(100% - 22px, 1180px);
  }

  .org-hero {
    padding: 44px 0 36px;
  }

  .org-hero-copy h1 {
    font-size: 40px;
  }

  .org-hero-copy p {
    font-size: 16px;
  }

  .org-stats-grid,
  .org-steps-grid,
  .org-benefit-grid,
  .org-check-grid,
  .org-form-row.two {
    grid-template-columns: 1fr;
  }

  .org-footer-grid {
    display: block;
  }

  .org-footer a {
    display: block;
    margin: 10px 0 0;
  }
}
