﻿/* Corporate service / consultation pages â€” ECOMHUTSY */

.eh-corp-head {
  max-width: 42rem;
}
.eh-corp-head .svc-section-title {
  text-align: left;
}

.eh-corp-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.eh-corp-split--rev {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.eh-corp-split--rev .eh-corp-split__copy {
  order: 2;
}
.eh-corp-split--rev .eh-corp-split__media {
  order: 1;
}
@media (max-width: 900px) {
  .eh-corp-split,
  .eh-corp-split--rev {
    grid-template-columns: 1fr;
  }
  .eh-corp-split--rev .eh-corp-split__copy,
  .eh-corp-split--rev .eh-corp-split__media {
    order: initial;
  }
}
.eh-corp-split__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 40, 80, 0.1);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  background: #0f172a;
}
.eh-corp-split__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.eh-corp-split__media figcaption {
  padding: 12px 16px 14px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #cbd5e1;
  background: #0f172a;
}

.eh-corp-ticks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.eh-corp-ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0f172a;
}
.eh-corp-ticks .material-symbols-outlined {
  color: #ff6a00;
  font-size: 22px;
}

.eh-process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1000px) {
  .eh-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .eh-process-grid {
    grid-template-columns: 1fr;
  }
}
.eh-process-card {
  position: relative;
  padding: 22px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 40, 80, 0.1);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.eh-process-card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #94a3b8;
}
.eh-process-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  margin-bottom: 12px;
  font-size: 22px;
}
.eh-process-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.eh-process-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted-text, #5b6472);
}

.eh-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) {
  .eh-related-grid {
    grid-template-columns: 1fr;
  }
}
.eh-related-card {
  display: grid;
  grid-template-rows: 160px auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 40, 80, 0.1);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.eh-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}
.eh-related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.eh-related-card > div {
  padding: 18px 18px 20px;
}
.eh-related-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 600;
}
.eh-related-card p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted-text, #5b6472);
}
.eh-related-card span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ff6a00;
}
.eh-related-card span .material-symbols-outlined {
  font-size: 18px;
}

.eh-faq-grid {
  display: grid;
  gap: 12px;
  max-width: 52rem;
}
.eh-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(15, 40, 80, 0.1);
  background: #fff;
  padding: 14px 18px;
}
.eh-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.eh-faq-item summary::-webkit-details-marker {
  display: none;
}
.eh-faq-item p {
  margin: 10px 0 4px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-text, #5b6472);
}

.eh-inq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 900px) {
  .eh-inq-layout {
    grid-template-columns: 1fr;
  }
}
.eh-inq-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.eh-inq-aside__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}
.eh-inq-aside__list .material-symbols-outlined {
  color: #ff6a00;
  font-size: 22px;
}

/* Hide sitewide centered TM promo on service consultation pages (float badge remains) */
body.services-premium .eh-tm-flash-inline {
  display: none !important;
}

.eh-inq-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  margin-bottom: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(15, 60, 140, 0.04));
  color: inherit;
}
.eh-inq-banner .material-symbols-outlined {
  color: #ff6a00;
  font-size: 28px;
  line-height: 1;
}
.eh-inq-banner strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.eh-inq-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted-text, #5b6472);
}

.eh-inq-panel {
  padding: 28px 24px 32px;
  border-radius: 22px;
  border: 1px solid rgba(15, 40, 80, 0.1);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.eh-inq-flash {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
}
.eh-inq-flash--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.eh-inq-flash--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.eh-inq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) {
  .eh-inq-grid {
    grid-template-columns: 1fr;
  }
}
.eh-inq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #334155;
}
.eh-inq-field--full {
  grid-column: 1 / -1;
}
.eh-inq-field input,
.eh-inq-field select,
.eh-inq-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 60, 140, 0.16);
  background: #f8fafc;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: #0f172a;
}
.eh-inq-field input:focus,
.eh-inq-field select:focus,
.eh-inq-field textarea:focus {
  outline: 2px solid rgba(255, 106, 0, 0.35);
  border-color: #ff6a00;
  background: #fff;
}

.eh-inq-submit {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eh-inq-fine {
  margin: 12px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
}
.eh-inq-form .eh-captcha-field,
.eh-inq-form .eh-turnstile-wrap {
  display: none;
}
.eh-inq-form .eh-altcha-wrap {
  margin: 1rem 0 0.25rem;
  min-height: 52px;
}
.eh-inq-form .eh-altcha-wrap altcha-widget {
  display: block;
  max-width: 360px;
}

.eh-req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.eh-req-card {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 40, 80, 0.1);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.eh-req-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  margin-bottom: 12px;
}
.eh-req-card__icon .material-symbols-outlined {
  font-size: 24px;
}
.eh-req-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.eh-req-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted-text, #5b6472);
}

.eh-doc-warn {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(185, 28, 28, 0.22);
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.92rem;
  line-height: 1.55;
}
.eh-doc-warn .material-symbols-outlined {
  flex-shrink: 0;
  color: #c2410c;
}

.eh-offer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 800px) {
  .eh-offer-split {
    grid-template-columns: 1fr;
  }
}
.eh-offer-col {
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(15, 40, 80, 0.1);
  background: #fff;
}
.eh-offer-col--docs {
  background: linear-gradient(180deg, #f0fdf4, #fff);
  border-color: rgba(22, 163, 74, 0.22);
}
.eh-offer-col--bundle {
  background: linear-gradient(180deg, #fff7ed, #fff);
  border-color: rgba(255, 106, 0, 0.25);
}
.eh-offer-col h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.eh-offer-col > p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--muted-text, #5b6472);
}
.eh-offer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.eh-offer-col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.45;
}
.eh-offer-col li .material-symbols-outlined {
  color: #16a34a;
  font-size: 20px;
  margin-top: 1px;
}
.eh-offer-col--bundle li .material-symbols-outlined {
  color: #ff6a00;
}

.eh-split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) {
  .eh-split-cta {
    grid-template-columns: 1fr;
  }
}
.eh-split-cta a {
  display: block;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 40, 80, 0.12);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.eh-split-cta a:hover {
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.eh-split-cta__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.12);
  color: #ff6a00;
  margin-bottom: 14px;
}
.eh-split-cta h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.eh-split-cta p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-text, #5b6472);
}

/* Subagent page variants */
.eh-inq-banner__icon {
  color: #ff6a00 !important;
  font-size: 28px !important;
  flex-shrink: 0;
}
.eh-inq-banner__title {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
}
.eh-inq-banner__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted-text, #5b6472);
}
.eh-req-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.eh-req-card .eh-req-card__icon.material-symbols-outlined,
.eh-req-card > .material-symbols-outlined.eh-req-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  margin-bottom: 12px;
  font-size: 24px;
}

.eh-hub-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .eh-hub-duo {
    grid-template-columns: 1fr;
  }
}
.eh-hub-duo__card {
  display: block;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 40, 80, 0.12);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}
.eh-hub-duo__card:hover {
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}
.eh-hub-duo__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.12);
  color: #ff6a00;
  margin-bottom: 14px;
  font-size: 26px;
}
.eh-hub-duo__title {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.eh-hub-duo__desc {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-text, #5b6472);
}
.eh-hub-duo__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff6a00;
}
.eh-hub-duo__link .material-symbols-outlined {
  font-size: 18px;
}
