:root {
  --soft: #F8F9FC;
  --navy: #0F172A;
  --text: #1E293B;
  --muted: #64748B;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --link: #3B82F6;
  --premium: #D97706;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(59, 130, 246, 0.07), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(16, 185, 129, 0.06), transparent 50%),
    var(--soft);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--link); }

.prose-ete a { color: var(--link); }

.container-ycf {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .container-ycf { padding-inline: 1.5rem; }
}

/* Top trust strip */
.top-strip {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 0.75rem;
  line-height: 1.4;
}
.top-strip a:hover { color: #fff; }
.top-strip strong { color: #fff; font-weight: 600; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.site-header .brand span { color: var(--emerald); }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.35rem 0;
}
.nav-link:hover { color: var(--link); }
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--emerald);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(16, 185, 129, 0.25);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.btn-cta:hover { filter: brightness(1.08); color: #fff !important; }
.btn-cta-lg { padding: 0.85rem 1.4rem; font-size: 0.95rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn-outline:hover { border-color: var(--link); color: var(--navy) !important; box-shadow: var(--shadow); }
.btn-outline-lg { padding: 0.85rem 1.4rem; font-size: 0.95rem; }
.lang-switch {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--link);
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  border: 1px solid transparent;
}
.lang-switch:hover { background: #eff6ff; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem 1rem 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--navy);
}

/* Hero — YCF-style full-bleed commercial banner */
.hero {
  padding: 3rem 0 2.5rem;
}
@media (min-width: 768px) {
  .hero { padding: 4.5rem 0 3.5rem; }
}

.hero--banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2.75rem 0 3rem;
  color: #f8fafc;
  min-height: min(34rem, 88vh);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .hero--banner { padding: 4.25rem 0 4.5rem; min-height: 36rem; }
}
.hero-banner-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.45) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.55) 100%);
}
[dir="ltr"] .hero-banner-shade {
  background:
    linear-gradient(255deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.45) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.55) 100%);
}
.hero-banner-content {
  width: 100%;
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .hero-banner-content {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.95fr);
    gap: 2rem;
    align-items: start;
  }
}
.hero-banner-intro { max-width: 40rem; }
.hero-banner-utility {
  display: grid;
  gap: 1rem;
}
.hero-search-panel {
  width: 100%;
}
.hero--banner .hero-eyebrow {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(167, 243, 208, 0.25);
}
.hero--banner h1 {
  color: #fff;
  max-width: 16ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}
[dir="ltr"] .hero--banner h1 { max-width: 20ch; }
.hero--banner .hero-lead {
  color: #cbd5e1;
  max-width: 38rem;
}
.hero--banner .hero-checks li { color: #e2e8f0; }
.hero--banner .hero-checks .check {
  background: rgba(16, 185, 129, 0.28);
  color: #ecfdf5;
}
.hero--banner .eteform-company-search--hero {
  max-width: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  border-color: transparent;
}
.hero-panel--on-banner {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-dark);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 18ch;
}
[dir="ltr"] .hero h1 { max-width: 22ch; }
.hero-lead {
  margin-top: 1.15rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 42rem;
}
.hero-checks {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}
.hero-checks li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text);
}
.hero-checks .check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
}
.hero-panel .price-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.hero-panel .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 0.25rem;
}
.hero-panel .price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-panel .ch-fee {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--premium);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero--banner {
    min-height: 0;
    padding: 2rem 0 2.25rem;
  }
  .hero--banner .hero-banner-shade {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.78) 55%, rgba(15, 23, 42, 0.7) 100%);
  }
  .hero--banner h1 {
    max-width: none;
    color: #fff;
  }
  .hero--banner .hero-lead { color: #e2e8f0; }
  .hero--banner .hero-checks { gap: 0.5rem; }
  .hero--banner .hero-checks li { font-size: 0.86rem; color: #e2e8f0; }
}

/* Trust bar */
.trust-bar {
  background: #fff;
  border-block: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-bar-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.trust-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-item p {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: #fff; border-block: 1px solid var(--border); }
.section-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.section-head .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.section-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.section-head p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Feature cards */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.feature-card .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.feature-card p {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Package cards */
.pkg-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}
.pkg-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pkg-card.featured {
  border-color: var(--emerald);
  box-shadow: 0 0 0 1px var(--emerald), var(--shadow-lg);
}
.pkg-badge {
  position: absolute;
  top: -0.7rem;
  inset-inline-start: 1rem;
  background: var(--emerald);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.pkg-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.pkg-card .tagline {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  min-height: 2.6em;
}
.pkg-price {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.pkg-price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.pkg-ch {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--premium);
  margin-top: 0.2rem;
}
.pkg-list {
  margin-top: 1rem;
  flex: 1;
  display: grid;
  gap: 0.45rem;
}
.pkg-list li {
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  gap: 0.45rem;
  line-height: 1.45;
}
.pkg-list .yes { color: var(--emerald-dark); font-weight: 700; }
.pkg-list .no { color: #94a3b8; }
.pkg-actions {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.5rem;
}

/* Process steps */
.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
}
.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.step p { margin-top: 0.4rem; font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* Banking logos strip */
.bank-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.bank-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* FAQ */
.faq-list { max-width: 48rem; margin-inline: auto; display: grid; gap: 0.65rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--emerald);
  font-weight: 500;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  text-align: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat .num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat .label {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Testimonials */
.t-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .t-grid { grid-template-columns: repeat(3, 1fr); }
}
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.t-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}
.t-card .who {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}
.t-card .where { font-size: 0.75rem; color: var(--muted); }

/* Need cards */
.need-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .need-grid { grid-template-columns: repeat(3, 1fr); }
}
.need-card {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.need-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.need-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* Page hero (inner) */
.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.page-hero p {
  margin-top: 0.75rem;
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Compare table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 0.7rem 0.65rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: start;
  font-weight: 600;
  color: var(--navy);
  position: sticky;
  inset-inline-start: 0;
  background: #fff;
  min-width: 10rem;
}
.compare-table thead th {
  background: var(--soft);
  font-weight: 700;
  color: var(--navy);
}
.compare-table .yes { color: var(--emerald-dark); font-weight: 700; }
.compare-table .no { color: #cbd5e1; }

/* Disclaimer */
.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  background: rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  margin-top: 0;
  padding-top: 3rem;
}
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.site-footer ul { display: grid; gap: 0.45rem; font-size: 0.84rem; }
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.footer-brand {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid #334155;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
}

/* Content density helpers */
.content-block {
  max-width: 48rem;
  margin-inline: auto;
}
.content-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.content-block p,
.content-block li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}
.content-block ul { margin-top: 0.75rem; display: grid; gap: 0.45rem; padding-inline-start: 1.1rem; }
.content-block li::marker { color: var(--emerald); }

.order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 36rem;
  margin-inline: auto;
}
.order-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.order-card select,
.order-card input,
.order-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--text);
  margin-bottom: 1rem;
}
.order-card select:focus,
.order-card input:focus,
.order-card textarea:focus {
  outline: 2px solid rgba(16, 185, 129, 0.35);
  border-color: var(--emerald);
}

/* Company name search + multi-step order */
.eteform-company-search {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem 1rem;
}
.eteform-company-search--hero { max-width: 36rem; }
.eteform-company-search-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.eteform-company-search-field {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}
.eteform-company-search-input {
  flex: 1 1 12rem;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 2.2rem 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--text);
}
.eteform-company-search-input:focus {
  outline: 2px solid rgba(16, 185, 129, 0.35);
  border-color: var(--emerald);
}
.eteform-company-search-clear {
  position: absolute;
  inset-inline-end: 8.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}
.eteform-company-search-btn { white-space: nowrap; }
.eteform-company-search-hint,
.eteform-company-search-note {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.55rem;
  line-height: 1.5;
}
.eteform-company-search-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}
.eteform-company-search__results { margin-top: 0.75rem; }
.eteform-company-search-status {
  border-radius: 0.5rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.eteform-ch-available {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.eteform-ch-taken {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.eteform-ch-error {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}
.eteform-company-search-actions { margin-top: 0.75rem; }
.eteform-wizard-congrats {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: #065f46;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.order-card-wide { max-width: 64rem; }
.order-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.order-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}
.order-steps li span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #cbd5e1;
  color: #0f172a;
  font-size: 0.75rem;
}
.order-steps li.active {
  background: #ecfdf5;
  color: #065f46;
}
.order-steps li.active span { background: #10b981; color: #fff; }
.order-steps li.done { color: #0f172a; }
.order-steps li.done span { background: #0f172a; color: #fff; }

.order-pkg-select { margin-top: 0.5rem; }
.order-pkg-option {
  cursor: pointer;
  position: relative;
  display: block;
}
.order-pkg-option input[type="radio"] {
  position: absolute;
  inset-inline-start: 0.85rem;
  top: 0.85rem;
  accent-color: #10b981;
}
.order-pkg-option.selected {
  outline: 2px solid #10b981;
  border-color: #10b981;
}
.order-pkg-option h3 { padding-inline-start: 1.5rem; }

.order-review {
  display: grid;
  gap: 0.75rem;
}
.order-review > div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.order-review dt {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
.order-review dd {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 640px) {
  .eteform-company-search-clear { inset-inline-end: 0.6rem; top: 1.1rem; transform: none; }
  .eteform-company-search-btn { width: 100%; }
}

/* 8-step formation wizard */
.order-steps-8 { gap: 0.35rem; }
.order-steps-8 li { font-size: 0.72rem; padding: 0.35rem 0.55rem; }
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: 1.5rem;
  align-items: start;
}
.order-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 1rem;
}
.order-summary h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.order-summary dl { display: grid; gap: 0.65rem; }
.order-summary dt { font-size: 0.72rem; color: #64748b; font-weight: 600; }
.order-summary dd { margin: 0.1rem 0 0; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.order-summary .summary-total dd { font-size: 1.15rem; color: #065f46; }
.summary-note { margin-top: 0.85rem; font-size: 0.72rem; color: #64748b; line-height: 1.45; }
.summary-addons { margin: 0; padding-inline-start: 1rem; font-size: 0.85rem; font-weight: 500; }
.addon-grid { display: grid; gap: 0.65rem; }
.addon-card {
  display: flex; gap: 0.75rem; align-items: flex-start;
  border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.85rem;
  background: #fff; cursor: pointer;
}
.addon-card input { margin-top: 0.25rem; accent-color: #10b981; }
.addon-card-body { display: grid; gap: 0.2rem; }
.addon-price { font-weight: 700; color: #065f46; font-size: 0.9rem; }
.addon-desc { font-size: 0.78rem; color: #64748b; line-height: 1.45; }
.partner-block {
  border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem;
  margin-bottom: 1rem; background: #f8fafc;
}
.office-grid { display: grid; gap: 0.65rem; }
.office-card {
  display: grid; gap: 0.25rem; border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 0.85rem 0.85rem 0.85rem 2.2rem; position: relative; cursor: pointer; background: #fff;
}
.office-card input { position: absolute; inset-inline-start: 0.75rem; top: 1rem; accent-color: #10b981; }
.office-card.selected { outline: 2px solid #10b981; border-color: #10b981; }
.office-addr { font-size: 0.78rem; color: #64748b; }
.office-badge { font-size: 0.7rem; font-weight: 700; color: #065f46; }
.pay-gateways { display: grid; gap: 0.5rem; }
.pay-gateway {
  display: flex; gap: 0.65rem; align-items: center; border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 0.85rem; background: #fff; cursor: pointer;
}
.pay-gateway small { color: #64748b; font-weight: 500; }
@media (max-width: 960px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; order: -1; }
}

/* SIC activity typeahead (order step 5) */
.sic-picker .sic-count {
  font-weight: 500;
  color: #64748b;
  font-size: 0.8rem;
}
.sic-search-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}
.sic-search-input {
  margin-bottom: 0 !important;
}
.sic-suggestions {
  position: absolute;
  z-index: 40;
  inset-inline: 0;
  top: calc(100% + 0.25rem);
  max-height: 16rem;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.sic-suggestion {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.65rem;
  width: 100%;
  text-align: start;
  padding: 0.65rem 0.85rem;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}
.sic-suggestion:last-child { border-bottom: 0; }
.sic-suggestion:hover,
.sic-suggestion.is-active {
  background: #ecfdf5;
}
.sic-suggestion.is-selected {
  opacity: 0.55;
  cursor: default;
}
.sic-suggestion-code {
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.sic-suggestion-title {
  font-size: 0.86rem;
  color: #334155;
  display: grid;
  gap: 0.15rem;
}
.sic-suggestion-ar {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}
.sic-suggestion-status {
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  color: #64748b;
}
.sic-suggestion-status.is-error { color: #9a3412; }
.sic-limit-msg {
  color: #9a3412;
  font-size: 0.82rem;
  margin: -0.35rem 0 0.85rem;
  font-weight: 600;
}
.sic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 2.5rem;
  margin-bottom: 1rem;
  padding: 0.55rem;
  border: 1px dashed var(--border);
  border-radius: 0.65rem;
  background: #f8fafc;
}
.sic-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #064e3b;
  border-radius: 999px;
  padding: 0.35rem 0.55rem 0.35rem 0.7rem;
  font-size: 0.8rem;
}
.sic-chip-code {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.sic-chip-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 14rem;
}
.sic-chip-remove {
  border: 0;
  background: transparent;
  color: #047857;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.2rem;
  border-radius: 999px;
}
.sic-chip-remove:hover { background: #d1fae5; }

/* Guide index + article (formal dense) */
.guide-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.guide-index__item {
  border-bottom: 1px solid var(--border);
}
.guide-index__link {
  display: block;
  padding: 0.85rem 0.15rem;
  color: inherit;
}
.guide-index__link:hover { background: rgba(59, 130, 246, 0.03); }
.guide-index__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}
.guide-index__link:hover .guide-index__title { color: var(--link); }
.guide-index__excerpt {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52rem;
}

.guide-article__header { padding-top: 2.5rem; padding-bottom: 1rem; }
.guide-article__hero {
  margin: 1.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.guide-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 22rem;
  object-fit: cover;
}

.prose-guide {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}
.prose-guide h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 0.65rem;
}
.prose-guide h3 {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--navy);
  margin: 1.35rem 0 0.5rem;
}
.prose-guide p { margin: 0.65rem 0; color: var(--muted); }
.prose-guide ul,
.prose-guide ol {
  margin: 0.65rem 0;
  padding-inline-start: 1.2rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}
.prose-guide li::marker { color: var(--emerald); }
.prose-guide a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
.prose-guide img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  margin: 1rem 0;
}
.prose-guide table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 1rem 0;
}
.prose-guide th,
.prose-guide td {
  border: 1px solid var(--border);
  padding: 0.45rem 0.6rem;
  text-align: start;
}
.prose-guide th { background: #f8fafc; color: var(--navy); font-weight: 600; }
.prose-guide blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-inline-start: 3px solid var(--emerald);
  background: #f8fafc;
  color: var(--muted);
}

.guide-faqs { margin-top: 2.5rem; max-width: 48rem; }
.guide-faqs__list { margin-top: 0.85rem; display: grid; gap: 0.5rem; }
.guide-faqs__item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.7rem 0.9rem;
}
.guide-faqs__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.guide-faqs__item p {
  margin: 0.55rem 0 0.15rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.text-navy { color: var(--navy); }

