:root {
  --bg: #ffffff;
  --card: #ffffff;
  --ink: #0b1f3a;
  --muted: #496281;
  --accent: #2a6ea6;
  --accent-2: #215b8a;
  --border: #c9d8ea;
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body.site-header-with-note {
  padding-top: 77px;
}

body.site-header-compact {
  padding-top: 61px;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

p,
a,
label,
button,
h1,
h2,
h3,
h4,
h5,
h6,
summary,
.footer-disclaimer,
.footer-copyright,
.order-detail-line,
.review-row {
  overflow-wrap: anywhere;
}


.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--accent-2);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
}


.bg-grid {
  position: fixed;
  inset: 0;
  background: none;
  z-index: -1;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 24px 0 60px;
}

#main-content.container {
  flex: 1 0 auto;
}

.site-header {
  background: var(--accent);
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  color: #ffffff;
  box-shadow: 0 1px 10px rgba(11, 31, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

body.landing-homepage .site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
  box-shadow: none;
}

.site-header-note {
  background: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-align: center;
  color: #31455f;
  padding: 4px 12px;
  border-bottom: 1px solid #d8dde4;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 14px;
}

.header-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  border-radius: 3px;
}

.header-help-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

.logo-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1.05;
}

.logo-subtitle {
  font-size: 0.54rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

nav a {
  margin-left: 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

nav a:hover {
  color: rgba(255, 255, 255, 0.84);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(13, 45, 85, 0.12);
}

.application-card {
  width: min(742px, 100%);
  max-width: 742px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: none;
  padding: 18px 16px 28px;
}

.application-header {
  text-align: center;
  margin-bottom: 10px;
}

.application-header h1 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.18;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.application-progress-card {
  border: 1px solid #d8dde4;
  border-radius: 4px;
  padding: 16px 16px 10px;
  margin-bottom: 12px;
}

.application-progress-bar {
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #eceff3 0 24.5%,
      #dfe4ea 24.5% 25.5%,
      #eceff3 25.5% 49.5%,
      #dfe4ea 49.5% 50.5%,
      #eceff3 50.5% 74.5%,
      #dfe4ea 74.5% 75.5%,
      #eceff3 75.5% 100%
    );
  border: 0;
  overflow: hidden;
}

.application-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #5a95ef 0%, #4b86df 100%);
  border-radius: 999px 0 0 999px;
}

.application-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  font-size: 0.84rem;
  color: #4b5563;
}

.application-step-title {
  margin-top: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8dde4;
}

.application-step-title h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.18;
  color: #111827;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.application-step-title p {
  display: none;
}

.application-card .form-grid {
  margin-top: 0;
}

.application-card fieldset {
  border: none;
  padding: 0;
}

.application-card fieldset + fieldset {
  border-top: 1px solid #d8dde4;
  margin-top: 24px;
  padding-top: 24px;
}

.application-card legend {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 14px;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
}

.application-card label {
  gap: 8px;
  font-weight: 500;
  color: #374151;
  font-size: 0.95rem;
}

.application-card input,
.application-card select,
.application-card textarea {
  border-radius: 4px;
  border-color: #d2d9e3;
  padding: 12px 13px;
  box-shadow: none;
  min-height: 46px;
  font-size: 0.95rem;
  color: #111827;
  background: #ffffff;
}

.application-step-form-intro {
  margin-bottom: 18px;
}

.application-card .checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 500;
}

.application-card .checkbox input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border-radius: 2px;
}

.application-card .small,
.application-card .field-note {
  margin: -2px 0 0;
  color: #6b7280;
  line-height: 1.6;
}

.application-card .guide-toggle {
  margin-top: -4px;
}

.application-card .form-actions {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #d8dde4;
}

.application-card .form-actions .secondary,
.application-card .form-actions .primary {
  min-width: 80px;
  min-height: 38px;
  border-radius: 4px;
  font-size: 0.92rem;
}

.llc-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.llc-question-grid {
  gap: 18px;
}

.llc-radio-group {
  display: grid;
  gap: 8px;
}

.llc-radio-group > span {
  color: #374151;
  font-weight: 500;
  line-height: 1.55;
}

.llc-radio-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #374151;
}

.llc-radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  min-width: 18px;
  margin: 0;
}

.llc-inline-question {
  margin-top: 4px;
}

.llc-processing-options {
  display: grid;
  gap: 14px;
}

.llc-processing-choice {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #d2d9e3;
  padding: 14px 16px;
}

.llc-processing-choice.selected {
  border-color: #2f6faa;
  background: #f8fbff;
}

.llc-processing-choice span {
  display: grid;
  gap: 3px;
}

.llc-processing-choice strong {
  color: #1f2937;
  font-size: 1rem;
}

.llc-processing-choice small {
  color: #6b7280;
  font-size: 0.88rem;
}

.llc-processing-choice em {
  color: #1f2937;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}

.service-request-list {
  display: grid;
  gap: 10px;
}

.service-request-option {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 500;
}

.service-request-option span {
  color: #374151;
}

.split-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.application-card textarea[readonly] {
  background: #ffffff;
  color: #111827;
}

.step-header h1 {
  margin: 12px 0 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--accent-2);
}

.step-pill {
  display: none;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.form-grid > *,
.conditional,
.option-guide,
.step-header,
.card {
  min-width: 0;
  max-width: 100%;
}

label {
  display: grid;
  gap: 4px;
  min-width: 0;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

fieldset {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-inline-size: 0;
  margin: 0;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 16px;
}

legend {
  padding: 0 8px;
  font-weight: 600;
  color: var(--muted);
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}

button, .primary, .secondary, .danger {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary {
  background: var(--accent);
  color: #fff;
}

.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}

.danger {
  background: var(--danger);
  color: #fff;
}

.notice {
  background: rgba(0, 94, 162, 0.08);
  border: 1px solid rgba(0, 94, 162, 0.25);
  padding: 14px;
  border-radius: 10px;
  margin-top: 14px;
}

.members-block {
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
}

.member-row {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 10px;
  margin-bottom: 10px;
}

.summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.tight-summary {
  gap: 0;
  margin: 0;
}

.tight-summary > div {
  padding: 0;
}

.summary-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.summary-value {
  font-weight: 700;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.step-support-note {
  margin: 2px 0 0;
  color: var(--accent-2);
  line-height: 1.6;
  font-weight: 600;
}

.step-context-note {
  margin: -2px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.flow-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.flow-support-grid article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #f9fbfd;
  display: grid;
  gap: 6px;
}

.flow-support-grid strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.flow-support-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.site-footer {
  margin-top: auto;
  padding: 14px 0 8px;
  background: #ffffff;
  border-top: 1px solid #d8dde4;
  color: #1f2937;
  text-align: center;
}

.site-footer .container {
  width: min(1400px, 96vw);
  padding: 0;
}

.footer-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-support p {
  margin: 0;
}

.footer-support-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 4px;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-disclaimer {
  margin: 6px auto 0;
  max-width: 920px;
  width: min(920px, 92vw);
  font-size: 0.66rem;
  line-height: 1.35;
}

.footer-disclaimer a {
  color: inherit;
}

.footer-copyright {
  font-size: 0.72rem;
}


.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

.admin-list {
  display: grid;
  gap: 16px;
}

.admin-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.admin-ui .admin-card {
  border-radius: 0;
  padding: 18px 20px;
}

.admin-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.admin-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-actions form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-detail details {
  margin-top: 10px;
}

.admin-header .container {
  gap: 18px;
}

.admin-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.admin-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.admin-user {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.admin-logout .secondary {
  border-color: var(--border);
  color: var(--ink);
}

.admin-logout .secondary:hover {
  background: #f5f8fc;
}

.admin-ui {
  background: #ffffff;
}

.admin-ui .bg-grid {
  display: none;
}

.admin-ui .container {
  width: min(1120px, 94vw);
}

.admin-ui .site-header.admin-header {
  position: static;
  background: #ffffff;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
}

.admin-ui .admin-header .container {
  gap: 22px;
  padding: 16px 0;
}

.admin-ui .logo {
  color: var(--ink);
  letter-spacing: 0.08em;
}

.admin-ui .admin-nav {
  gap: 20px;
  flex-wrap: wrap;
}

.admin-ui .admin-nav a {
  margin-left: 0;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.admin-ui .admin-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.admin-ui .admin-user {
  color: var(--muted);
}

.admin-ui .card,
.admin-ui .order-sheet,
.admin-ui .notice,
.admin-ui .doc-list li,
.admin-ui .status-history li,
.admin-ui fieldset,
.admin-ui .members-block {
  border-radius: 0;
  box-shadow: none;
}

.admin-ui .card {
  padding: 24px 28px;
}

.admin-ui .step-header {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.admin-ui .step-header h1 {
  margin: 0 0 6px;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.admin-ui .step-header p {
  margin: 0;
  color: var(--muted);
}

.admin-ui button,
.admin-ui .primary,
.admin-ui .secondary,
.admin-ui .danger {
  border-radius: 0;
  min-height: 46px;
  box-shadow: none;
}

.admin-ui .secondary {
  background: #ffffff;
}

.admin-ui input,
.admin-ui select,
.admin-ui textarea {
  border-radius: 0;
}

.admin-ui .error-box {
  border-radius: 0;
}

.admin-ui .review-section {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 20px;
  background: #ffffff;
}

.admin-ui .review-section legend {
  padding: 0 6px;
  color: #000000;
}

.admin-ui .review-row {
  border-radius: 0;
  background: #ffffff;
}

.admin-ui .summary-label {
  color: var(--muted);
}

.admin-ui .summary-value {
  color: var(--ink);
}

.admin-shell {
  margin-bottom: 20px;
}

.admin-auth {
  max-width: 520px;
  margin: 40px auto;
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.admin-ui .stat-grid {
  gap: 12px;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.admin-ui .stat-card {
  border-radius: 0;
  padding: 18px 20px;
}

.stat-card span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stat-card strong {
  font-size: 1.5rem;
}

.dashboard-order-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  align-items: start;
}

.dashboard-orders-card {
  overflow: hidden;
  padding: 18px 18px 16px;
}

.admin-ui .dashboard-orders-card,
.admin-ui .whole-system-orders-card {
  padding: 20px;
}

.dashboard-orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.dashboard-section-link {
  text-decoration: none;
}

.dashboard-orders-header h2 {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-2);
}

.dashboard-section-link:hover h2 {
  color: var(--accent);
}

.dashboard-orders-count {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: none;
}

.admin-ui .dashboard-orders-count {
  min-width: 44px;
  height: auto;
  padding: 8px 12px;
  border-radius: 0;
  background: #ffffff;
}

.dashboard-order-list {
  display: grid;
  gap: 10px;
}

.dashboard-order-item {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
}

.admin-ui .dashboard-order-item {
  border-radius: 0;
  padding: 12px 14px;
}

.dashboard-order-item:hover {
  border-color: rgba(0, 94, 162, 0.45);
  box-shadow: 0 8px 18px rgba(13, 45, 85, 0.08);
}

.admin-ui .dashboard-order-item:hover {
  box-shadow: none;
  background: #f8fbff;
}

.dashboard-order-number {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 0.92rem;
}

.dashboard-order-business {
  color: var(--ink);
  line-height: 1.35;
  font-size: 0.92rem;
}

.dashboard-order-service {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-empty {
  margin: 0;
  color: var(--muted);
}

.dashboard-empty-link {
  color: inherit;
  text-decoration: none;
}

.dashboard-empty-link:hover {
  color: var(--accent);
}

.whole-system-orders-card {
  margin-top: 16px;
}

.whole-system-orders-table td:last-child {
  width: 1%;
  white-space: nowrap;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.admin-main {
  display: grid;
  gap: 18px;
}

.admin-sidebar .card {
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-ui .admin-table {
  border: 1px solid var(--border);
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.admin-table th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

.admin-ui .admin-table th {
  color: var(--ink);
  background: #f7f9fc;
}

.admin-ui .admin-table tbody tr:hover td {
  background: #f8fbff;
}

.filter-panel {
  margin-top: 16px;
}

.admin-ui .filter-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.admin-order-tabs,
.admin-orders-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-order-tabs {
  margin-top: 14px;
}

.admin-order-tab {
  text-decoration: none;
}

.admin-orders-toolbar {
  justify-content: space-between;
  margin-top: 14px;
}

.admin-orders-count {
  margin: 0;
  color: var(--muted);
}

.admin-export-link {
  text-decoration: none;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 94, 162, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
}

.admin-ui .status-pill {
  border-radius: 0;
  padding: 6px 10px;
  font-weight: 700;
}

.doc-list,
.status-history {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.doc-list li,
.status-history li {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}

.admin-ui .doc-list li,
.admin-ui .status-history li {
  border-radius: 0;
}

.doc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.doc-meta {
  min-width: 0;
}

.doc-meta strong {
  display: block;
}

.admin-upload-notice {
  margin-bottom: 0;
}

.notice-warning {
  background: rgba(180, 115, 0, 0.08);
  border-color: rgba(180, 115, 0, 0.24);
  color: #7a4a00;
}

.small-btn {
  padding: 6px 10px;
  margin-left: 8px;
  font-size: 0.8rem;
}

pre {
  background: #f0f6ff;
  padding: 12px;
  border-radius: 10px;
  overflow: auto;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
  margin-bottom: 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero-content h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0;
}

.hero-sub {
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta-box {
  width: min(100%, 240px);
  min-height: 132px;
  padding: 14px 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 45, 85, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-cta-question {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-2);
}

.hero-cta-button {
  width: 100%;
}

.hero-services {
  margin: auto 0 0;
  padding-top: 12px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.hero-secondary-link {
  margin: 14px auto 0;
  text-align: center;
}

.hero-secondary-link .secondary {
  min-width: 240px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-trust-grid article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #f9fbfd;
  display: grid;
  gap: 6px;
}

.hero-trust-grid strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.hero-trust-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 8px auto 0;
  padding: 0;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.footer-trust-item {
  white-space: nowrap;
}

.hero-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(13, 45, 85, 0.1);
  height: 100%;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.hero-meta span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-notice {
  background: rgba(11, 59, 102, 0.08);
  border-left: 4px solid var(--accent);
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--accent-2);
  font-weight: 600;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.info-item {
  text-align: center;
}

.info-item h2 {
  margin: 16px 0 10px;
  font-size: 1.05rem;
}

.info-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-icon {
  display: flex;
  justify-content: center;
}

.info-icon svg {
  width: 58px;
  height: 58px;
  stroke: #1f6faa;
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ein-explainer {
  margin-top: 22px;
}

.ein-explainer details {
  font-size: 1rem;
}

.ein-explainer summary {
  font-weight: 700;
  color: var(--accent-2);
  cursor: pointer;
  list-style: none;
}

.ein-explainer summary::-webkit-details-marker {
  display: none;
}

.ein-explainer summary::after {
  content: "+";
  float: right;
  font-weight: 700;
}

.ein-explainer details[open] summary::after {
  content: "-";
}

.ein-explainer p {
  color: var(--muted);
  line-height: 1.6;
}

.error-box {
  background: #fff3f1;
  border: 1px solid #f3b4ad;
  color: #7a1e13;
  padding: 12px 14px;
  border-radius: 10px;
  margin-top: 12px;
}

.error-box ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.checkout-payment-form {
  margin-top: 18px;
}

.checkout-payment-stack {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.checkout-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-field {
  margin: 0;
}

.checkout-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--accent-2);
}

.checkout-field input {
  width: 100%;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.checkout-field-zip input {
  width: 100%;
}

.stripe-field-shell {
  cursor: text;
}

.card-element {
  min-height: 48px;
  width: 100%;
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: text;
}

.card-element .__PrivateStripeElement {
  width: 100% !important;
}

.card-element iframe {
  width: 100% !important;
}

.error-text {
  color: #9f1c10;
  font-weight: 600;
  margin-top: 8px;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.checkout-help {
  margin-top: 10px;
}

.checkout-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.checkout-trust-grid article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #f9fbfd;
  display: grid;
  gap: 6px;
}

.checkout-trust-grid strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.checkout-trust-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.checkout-payment-note {
  margin-top: 12px;
  color: var(--accent-2);
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 720px) {
  nav {
    display: none;
  }
  .admin-nav {
    display: none;
  }
  .admin-logout {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .member-row {
    grid-template-columns: 1fr;
  }
  .flow-support-grid,
  .checkout-trust-grid {
    grid-template-columns: 1fr;
  }
  .checkout-card-grid {
    grid-template-columns: 1fr;
  }
  .admin-orders-toolbar {
    align-items: stretch;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .llc-contact-grid {
    grid-template-columns: 1fr;
  }

  .llc-processing-choice {
    grid-template-columns: auto 1fr;
  }

  .llc-processing-choice em {
    grid-column: 2;
    justify-self: start;
  }
}

.order-page-wrap {
  max-width: 820px;
  margin: 18px auto 0;
}

.admin-ui .order-page-wrap {
  max-width: 960px;
}

.order-sheet {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px 34px;
}

.admin-ui .order-sheet {
  padding: 24px 28px;
}

.order-sheet-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.order-sheet-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-ui .order-sheet-actions {
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.order-sheet-actions h1 {
  margin: 0;
  font-size: 1.35rem;
}

.inline-status-form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-status-form label {
  min-width: 220px;
}

.order-mini-btn {
  min-width: 88px;
}

.status-select {
  border-width: 1px;
  font-weight: 700;
}

.admin-ui .status-select {
  border-radius: 0;
}

.status-select-processing {
  background: #ffffff;
  color: #0b1f3a;
  border-color: #cbd5e1;
}

.status-select-on-hold {
  background: #fff3bf;
  color: #5f3b00;
  border-color: #eab308;
}

.status-select-confirmed {
  background: #dcfce7;
  color: #166534;
  border-color: #22c55e;
}

.status-select-refund {
  background: #fee2e2;
  color: #991b1b;
  border-color: #ef4444;
}

.status-pill-processing {
  background: #ffffff;
  color: #0b1f3a;
  border: 1px solid #cbd5e1;
}

.status-pill-on-hold {
  background: #fff3bf;
  color: #5f3b00;
  border: 1px solid #eab308;
}

.status-pill-confirmed {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #22c55e;
}

.status-pill-refund {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.order-detail-list {
  display: grid;
  gap: 10px;
}

.order-detail-line {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.5;
}

.order-detail-line strong {
  font-weight: 700;
}

.order-reveal-btn {
  margin-left: 8px;
}

.order-tool-card {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 22px;
}

.admin-ui .order-tool-card {
  border: 1px solid var(--border);
  margin-top: 18px;
  padding: 18px 20px;
}

.order-tool-card h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.admin-ui .order-tool-card h2,
.admin-ui .manage-edit-summary h2 {
  color: #000000;
}

.order-action-stack {
  display: grid;
  gap: 14px;
}

.order-link-row {
  margin-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-link-row a {
  color: var(--accent);
  text-decoration: none;
}

.order-link-row a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .order-sheet {
    padding: 22px 18px;
  }

  .order-sheet-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-status-form label {
    min-width: 0;
    width: 100%;
  }
}


.order-status-tools {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.order-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.refund-shortcut {
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  flex: 0 0 auto;
}

.refund-shortcut svg {
  width: 6px;
  height: 6px;
  fill: currentColor;
}

.refund-shortcut:hover {
  color: var(--accent);
  background: transparent;
}

.refund-page-wrap {
  max-width: 640px;
}

.refund-page-form {
  margin-top: 12px;
}

.refund-page-header {
  align-items: center;
}

.refund-back-link {
  text-decoration: none;
}

@media (max-width: 720px) {
  .order-status-tools {
    align-items: stretch;
  }

  .order-title-row {
    flex-wrap: wrap;
  }

  .admin-edit-tools-grid {
    grid-template-columns: 1fr;
  }
}

.member-row label {
  margin-bottom: 0;
}

#ownership-total {
  margin-top: 6px;
}


.order-shortcuts {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.order-full-edit-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.order-full-edit-link:hover {
  text-decoration: underline;
}

.manage-shortcut,
.refund-shortcut {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  flex: 0 0 auto;
}

.manage-shortcut svg,
.refund-shortcut svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.manage-shortcut:hover,
.refund-shortcut:hover {
  color: var(--accent);
  background: transparent;
}

.manage-page-wrap {
  max-width: 720px;
}

.manage-card-list {
  display: grid;
  gap: 18px;
}

.admin-edit-tools-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-edit-mini-list,
.admin-edit-note-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.admin-edit-note-list {
  display: grid;
  gap: 8px;
}

.admin-edit-note-list li {
  border: 1px solid var(--border);
  padding: 8px 10px;
  font-size: 0.9rem;
}

.admin-edit-note-list strong {
  display: block;
  margin-bottom: 4px;
}

.manage-tool-card {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.admin-ui .manage-tool-card {
  border: 1px solid var(--border);
  padding: 18px 20px;
}

.admin-ui .manage-edit-card {
  padding: 0;
}

.compact-tool-card h2 {
  margin-bottom: 10px;
}

.compact-form {
  gap: 10px;
}

.compact-form textarea,
.compact-form input,
.compact-form select {
  font-size: 0.95rem;
}

.compact-doc-list li {
  padding: 8px 10px;
}

.square-action {
  border-radius: 0;
  padding: 10px 12px;
}

.workflow-action-list {
  display: grid;
  gap: 8px;
}

.workflow-action-form {
  margin: 0;
}

.workflow-action-button {
  width: 100%;
  justify-content: flex-start;
  border-radius: 0;
  padding: 10px 12px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.ein-upload-form input[type="file"] {
  width: 100%;
}

.manage-edit-card {
  padding: 0;
}

.manage-edit-panel {
  border: 0;
}

.manage-edit-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.admin-ui .manage-edit-summary {
  background: #ffffff;
}

.manage-edit-summary::-webkit-details-marker {
  display: none;
}

.manage-edit-summary h2 {
  margin: 4px 0 0;
}

.manage-edit-toggle {
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.manage-edit-panel[open] .manage-edit-toggle {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.manage-edit-content {
  border-top: 1px solid var(--border);
  padding: 0 20px 20px;
  display: grid;
  gap: 18px;
}

.admin-ui .manage-edit-content {
  gap: 0;
}

.manage-edit-block {
  padding-top: 18px;
}

.admin-ui .manage-edit-block + .manage-edit-block {
  border-top: 1px solid var(--border);
}

.manage-edit-block h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}


.tax-landing-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tax-contact-chip {
  text-decoration: none;
}

.tax-conversion-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.tax-conversion-trust span {
  border: 1px solid var(--border);
  padding: 6px 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: #fff;
}

.tax-policy-links {
  margin-top: 12px;
}

.tax-policy-links a {
  color: var(--accent);
  text-decoration: none;
}

.tax-policy-links a:hover {
  text-decoration: underline;
}

.faq-panel {
  margin: 22px calc(50% - 50vw) 8px;
  padding: 0 clamp(18px, 2.2vw, 30px);
  background: #ffffff;
}

.faq-item {
  border-bottom: 1px solid #d8dde4;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: clamp(0.96rem, 1.45vw, 1.2rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #000 !important;
  padding: 14px 34px 14px 2px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #000 !important;
  border-bottom: 1.5px solid #000 !important;
  transform: rotate(45deg);
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -6px;
  transition: transform 0.2s ease, margin-top 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: -2px;
}

.faq-answer {
  max-width: 780px;
  padding: 0 34px 14px 2px;
}

.faq-answer p {
  margin: 0;
  color: #4b5563;
  font-size: 0.84rem;
  line-height: 1.52;
}

.post-faq-section {
  margin-top: 24px;
  display: grid;
  gap: 22px;
}

.post-faq-copy {
  display: grid;
  gap: 10px;
  text-align: center;
}

.post-faq-copy h2 {
  margin: 0;
  color: var(--accent-2);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
}

.post-faq-copy p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.post-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.post-faq-grid article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: #f9fbfd;
}

.post-faq-grid h3 {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 1rem;
}

.post-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.post-faq-actions {
  margin: 0;
}

.landing-page {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 42px;
  padding: 10px 0 18px;
}

.landing-heading {
  text-align: center;
}

.landing-heading p {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #000000;
}

.landing-main-box,
.landing-service-box,
.landing-entity-item,
.landing-support-block {
  border: 1px solid #222222;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.landing-main-box {
  padding: 54px 42px 40px;
}

.landing-main-box-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.landing-main-box-inner h1,
.landing-service-copy h2,
.landing-entity-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.landing-main-box-inner p {
  margin: 18px auto 0;
  max-width: 680px;
  color: #49566a;
  font-size: 1.1rem;
  line-height: 1.7;
}

.landing-top-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border: 1px solid #d8dde4;
}

.landing-top-facts div {
  padding: 14px 16px;
  border-top: 1px solid #d8dde4;
  border-left: 1px solid #d8dde4;
  color: #374151;
  font-size: 0.96rem;
  line-height: 1.45;
}

.landing-top-facts div:nth-child(1),
.landing-top-facts div:nth-child(2) {
  border-top: 0;
}

.landing-top-facts div:nth-child(odd) {
  border-left: 0;
}

.landing-apply-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
}

.landing-apply-row select,
.landing-apply-button,
.landing-inline-button {
  min-height: 56px;
  border-radius: 0;
}

.landing-apply-row select {
  border: 1px solid #1f2937;
  background: #ffffff;
  color: #111827;
  font-size: 1rem;
  padding: 0 16px;
}

.landing-apply-button,
.landing-inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  padding: 0 20px;
}

.landing-apply-button:hover,
.landing-inline-button:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.landing-main-note {
  font-size: 0.95rem !important;
  color: #5b6778 !important;
}

.landing-support-block {
  padding: 0;
}

.landing-support-mark {
  width: 110px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.landing-support-block p {
  margin: 0 0 12px;
  color: #49566a;
  font-size: 1.08rem;
  line-height: 1.75;
}

.landing-support-block p:last-child {
  margin-bottom: 0;
}

.landing-support-block a {
  color: #d12f5c;
  text-decoration: none;
}

.landing-support-block a:hover {
  text-decoration: underline;
}

.landing-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-support-grid > div {
  padding: 20px 18px;
  border-left: 1px solid #d8dde4;
  display: grid;
  gap: 8px;
}

.landing-support-grid > div:first-child {
  border-left: 0;
}

.landing-support-grid strong {
  color: #000000;
  font-size: 0.98rem;
}

.landing-support-grid span {
  color: #49566a;
  line-height: 1.6;
}

.landing-service-box {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 220px;
  gap: 26px;
  align-items: center;
  padding: 30px 32px;
}

.landing-service-copy p {
  margin: 18px 0 0;
  color: #1f2937;
  font-size: 1.15rem;
  line-height: 1.65;
}

.landing-service-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: #49566a;
  display: grid;
  gap: 10px;
  line-height: 1.55;
}

.landing-service-action {
  display: flex;
  justify-content: center;
}

.landing-entity-section {
  display: grid;
  gap: 20px;
}

.landing-entity-section h2 {
  text-align: center;
}

.landing-accordion {
  display: grid;
  gap: 0;
}

.landing-entity-item + .landing-entity-item {
  border-top: none;
}

.landing-entity-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  position: relative;
  font-size: 1.08rem;
  font-weight: 500;
  color: #111827;
}

.landing-entity-item summary::-webkit-details-marker {
  display: none;
}

.landing-entity-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #111827;
  font-size: 1.6rem;
  line-height: 1;
}

.landing-entity-item[open] summary::after {
  content: '\00d7';
}

.landing-entity-copy {
  border-top: 1px solid #d1d5db;
  padding: 22px;
  display: grid;
  gap: 18px;
  overflow: hidden;
  transform: translateZ(0);
}

.landing-entity-copy p {
  margin: 0;
  color: #4b5563;
  line-height: 1.75;
  font-size: 1.02rem;
}

.landing-inline-button {
  width: 190px;
  max-width: 100%;
}

.landing-page {
  width: min(1088px, 100%);
  gap: 46px;
  padding: 16px 0 0;
}

.landing-intro {
  text-align: center;
  display: grid;
  gap: 10px;
}

.landing-intro h1 {
  margin: 0;
  font-size: clamp(1.42rem, 2.1vw, 1.78rem);
  line-height: 1.08;
  color: #202124;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.landing-intro p {
  margin: 0;
  color: #202124;
  font-size: 1.02rem;
  line-height: 1.5;
}

.landing-page .landing-main-box-compact,
.landing-page .landing-bottom-box {
  padding: 18px 24px 20px;
  max-width: none;
  margin: 0 auto;
}

.landing-page .landing-main-box-compact {
  width: min(658px, 100%);
}

.landing-page .landing-bottom-box {
  width: min(649px, 100%);
  min-height: 164px;
  padding: 22px 28px 24px;
}

.landing-main-box-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 26px;
  align-items: center;
  text-align: center;
}

.landing-main-box-inner h2 {
  margin: 0;
  font-size: clamp(1.22rem, 1.9vw, 1.54rem);
  line-height: 1.1;
  color: #111827;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

.landing-main-copy p,
.landing-bottom-box .landing-main-box-inner p {
  margin: 12px 0 0;
  color: #2f3b4d;
  font-size: 0.96rem;
  line-height: 1.45;
  max-width: none;
}

.landing-main-action {
  display: flex;
  justify-content: center;
}

.landing-page .landing-apply-button {
  min-width: 112px;
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  box-shadow: none;
}

.landing-updates-wrap {
  display: grid;
  grid-template-columns: 488px 160px;
  gap: 72px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.landing-updates-box {
  border: 1px solid #222222;
  background: #ffffff;
  padding: 18px 18px 22px;
}

.landing-updates-box h2 {
  margin: 0 0 18px;
  color: #202124;
  font-size: 0.99rem;
  font-weight: 700;
  text-align: center;
}

.landing-updates-list {
  display: grid;
  gap: 12px;
}

.landing-updates-list a {
  color: #005ea2;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.35;
}

.landing-update-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.landing-update-link::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: #005ea2;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.landing-update-cancel::before {
  content: '\2298';
}

.landing-update-retrieval::before {
  content: '\2315';
}

.landing-update-address::before {
  content: '\2316';
}

.landing-update-name::before {
  content: '\270e';
}

.landing-update-owner::before {
  content: '\21c4';
}

.landing-updates-list a:hover {
  text-decoration: underline;
}

.landing-updates-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-updates-icon img {
  width: 122px;
  height: auto;
  display: block;
}

.landing-page .landing-entity-section {
  gap: 18px;
}

.landing-page .landing-entity-section h2 {
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  padding-bottom: 12px;
  border-bottom: 1px solid #d8dde4;
  width: min(764px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.landing-page .landing-accordion {
  max-width: 764px;
  margin: 0 auto;
  width: 100%;
}

.landing-page .landing-entity-item {
  border: 1px solid #d8dde4;
  width: 100%;
}

.landing-page .landing-entity-item summary {
  min-height: 36px;
}

.landing-page .landing-entity-item + .landing-entity-item {
  margin-top: 0;
}

.landing-page .landing-entity-item summary {
  padding: 12px 44px 12px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #111827;
}

.landing-page .landing-entity-item summary::after {
  content: '?';
  right: 16px;
  transform: translateY(-50%);
  font-size: 1.42rem;
  font-weight: 700;
}

.landing-page .landing-entity-item[open] summary::after {
  content: '\00d7';
}

.landing-page .landing-entity-copy {
  padding: 14px 16px 16px;
  gap: 8px;
  will-change: height;
  contain: layout;
}

.landing-page .landing-entity-copy p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #5b6778;
}

.landing-page .landing-entity-copy .landing-inline-button {
  width: auto;
  max-width: none;
  justify-self: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #005ea2;
  box-shadow: none;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.landing-page .landing-entity-copy .landing-inline-button:hover {
  background: none;
  border-color: transparent;
  color: #005ea2;
  text-decoration: underline;
}

.landing-bottom-cta {
  margin: 6px calc(50% - 50vw) 0;
  background: #f7f9fc;
  padding: 44px 0 32px;
}

.landing-bottom-inner {
  width: min(980px, 94vw);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.landing-bottom-heading {
  font-size: clamp(1.34rem, 2.1vw, 1.66rem);
  line-height: 1.1;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

.landing-bottom-box .landing-main-box-inner {
  text-align: center;
}

.landing-bottom-box .landing-apply-row {
  margin-top: 18px;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 12px;
}

.landing-bottom-mark img {
  width: 116px;
  height: auto;
  display: block;
  opacity: 1;
}

.landing-bottom-support {
  text-align: center;
  display: grid;
  gap: 8px;
}

.landing-bottom-support p {
  margin: 0;
  color: #202124;
  font-size: 0.9rem;
  line-height: 1.5;
}

.landing-bottom-support a {
  color: #d12f5c;
  text-decoration: none;
}

.landing-bottom-support a:hover {
  text-decoration: underline;
}


.landing-why-use-us {
  width: min(760px, 100%);
  margin: 6px auto 0;
}

.landing-why-use-us-faq {
  border: 1px solid #d8dde4;
  background: #ffffff;
}

.landing-why-use-us-faq summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 22px 54px 22px 22px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000000;
}

.landing-why-use-us-faq summary::-webkit-details-marker {
  display: none;
}

.landing-why-use-us-faq summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #000000;
  border-bottom: 1.5px solid #000000;
  transform: rotate(45deg);
  position: absolute;
  right: 26px;
  top: 50%;
  margin-top: -8px;
  transition: transform 0.2s ease, margin-top 0.2s ease;
}

.landing-why-use-us-faq[open] summary::after {
  transform: rotate(225deg);
  margin-top: -2px;
}

.landing-why-use-us-answer {
  padding: 0 22px 22px;
  border-top: 1px solid #d8dde4;
}

.landing-why-use-us-answer p {
  margin: 16px 0 0;
  color: #374151;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .faq-panel {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 22px;
  }

  .faq-item summary {
    padding: 18px 34px 18px 0;
    font-size: clamp(1rem, 4.2vw, 1.28rem);
  }

  .faq-item summary::after {
    width: 10px;
    height: 10px;
    right: 2px;
    margin-top: -8px;
  }

  .faq-item[open] summary::after {
    margin-top: -2px;
  }

  .faq-answer {
    padding: 0 10px 18px 0;
  }

  .post-faq-grid {
    grid-template-columns: 1fr;
  }

  .post-faq-actions {
    align-items: stretch;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .landing-page {
    gap: 28px;
  }

  .landing-main-box {
    padding: 34px 18px 24px;
  }

  .landing-main-box-inner h1,
  .landing-service-copy h2,
  .landing-entity-section h2,
  .landing-heading p {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .landing-apply-row,
  .landing-service-box {
    grid-template-columns: 1fr;
  }

  .landing-service-box {
    padding: 22px 18px;
  }

  .landing-apply-button,
  .landing-inline-button {
    width: 100%;
  }

  .landing-entity-item summary {
    padding: 18px 44px 18px 16px;
  }

  .landing-entity-copy {
    padding: 18px 16px;
  }
}

@media (max-width: 720px) {
  body.site-header-with-note {
    padding-top: 72px;
  }

  body.site-header-compact {
    padding-top: 56px;
  }

  .site-header .container {
    padding: 10px 0 12px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .logo {
    font-size: 1.45rem;
  }

  .logo-subtitle {
    font-size: 0.68rem;
  }

  .site-header-note {
    font-size: 0.54rem;
    padding: 4px 8px;
  }

  .header-help-button {
    min-width: 46px;
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .landing-intro h1 {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .landing-page {
    gap: 28px;
    padding-top: 6px;
  }

  .landing-page .landing-main-box-compact,
  .landing-updates-box,
  .landing-page .landing-accordion,
  .landing-bottom-box,
  .application-card,
  .tax-simple-box,
  .simple-intro-box,
  .simple-support-box,
  .simple-form-box,
  .simple-legal-box,
  .contact-panel {
    width: min(100%, calc(100vw - 24px));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .landing-page .landing-main-box-compact,
  .landing-page .landing-bottom-box,
  .landing-updates-box {
    padding: 18px 14px;
  }

  .landing-main-box-row,
  .landing-updates-wrap,
  .landing-bottom-box .landing-apply-row {
    grid-template-columns: 1fr;
  }

  .landing-updates-wrap {
    gap: 16px;
    width: min(100%, calc(100vw - 24px));
    margin-left: auto;
    margin-right: auto;
  }

  .landing-main-copy h2,
  .landing-bottom-box .landing-main-box-inner h2,
  .landing-page .landing-entity-section h2,
  .landing-bottom-heading,
  .landing-updates-box h2 {
    text-align: center;
  }

  .landing-page .landing-apply-button,
  .landing-inline-button,
  .landing-bottom-box select,
  .landing-bottom-box .button,
  .landing-page select {
    width: 100%;
  }

  .landing-updates-icon img {
    width: 96px;
  }

  .landing-bottom-cta {
    padding: 28px 0 22px;
  }

  .landing-bottom-inner {
    width: min(100%, calc(100vw - 24px));
  }

  .landing-page .landing-entity-item summary {
    padding: 14px 42px 14px 14px;
    font-size: 0.93rem;
  }

  .landing-page .landing-entity-item + .landing-entity-item {
    margin-top: 0;
  }

  .landing-page .landing-entity-copy {
    padding: 14px;
  }

  .landing-page .landing-entity-copy p,
  .landing-main-copy p,
  .landing-bottom-box .landing-main-box-inner p,
  .landing-bottom-support p,
  .landing-updates-list a {
    font-size: 0.92rem;
  }

  .tax-simple-box,
  .simple-intro-box,
  .simple-support-box,
  .simple-form-box,
  .simple-legal-box,
  .contact-panel {
    padding: 18px 14px;
  }
}


.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(13, 45, 85, 0.14);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 12px;
    padding: 12px 14px;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
    width: 100%;
  }
}


.tax-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.tax-landing-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tax-landing-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  color: var(--accent-2);
}

.tax-landing-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tax-landing-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff5fb;
  border: 1px solid var(--border);
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 600;
}

.tax-service-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.tax-landing-actions {
  justify-content: flex-start;
  margin: 12px 0 0;
}

.tax-landing-help {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.tax-landing-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tax-landing-trust article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #f9fbfd;
  display: grid;
  gap: 6px;
}

.tax-landing-trust strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.tax-landing-trust span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tax-landing-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tax-support-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tax-support-facts article {
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--border);
  display: grid;
  gap: 6px;
}

.tax-support-facts strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.tax-support-facts span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.tax-landing-side {
  display: flex;
}

.tax-conversion-card {
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(13, 45, 85, 0.1);
}

.tax-conversion-header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.tax-conversion-header h2,
.tax-conversion-header p {
  margin: 0;
}

.tax-conversion-header h2 {
  color: var(--accent-2);
  font-size: 1.35rem;
}

.tax-conversion-header p {
  color: var(--muted);
  line-height: 1.6;
}

.tax-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 22px;
}

.tax-benefit-grid h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.tax-benefit-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tax-inline-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.tax-inline-link:hover {
  text-decoration: underline;
}

.tax-contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tax-contact-form label:last-of-type {
  grid-column: 1 / -1;
}

.tax-contact-form .form-actions {
  grid-column: 1 / -1;
}

.tax-contact-form-compact {
  gap: 14px 16px;
}

.tax-form-footnote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tax-submit-note {
  margin: 10px 0 0;
  color: var(--accent-2);
  font-size: 0.92rem;
  font-weight: 600;
}

.tax-expect-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: #f4f8fc;
  color: var(--ink);
  line-height: 1.6;
}

.tax-expect-note strong {
  color: var(--accent-2);
}

.tax-secondary-cta {
  margin-top: 14px;
}

.tax-ein-note {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.tax-ein-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.tax-ein-link:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #ffffff;
}

.tax-process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.tax-process-row article {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
}

.tax-process-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
}

.tax-process-row h2 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: var(--accent-2);
}

.tax-process-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tax-simple-page {
  width: min(980px, 100%);
}

.tax-simple-page .landing-main-box,
.tax-simple-page .landing-support-block,
.tax-simple-box {
  border: 1px solid #222222;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}

.tax-simple-page .landing-main-box {
  padding: 48px 36px 34px;
}

.tax-simple-page .landing-main-box-inner {
  max-width: 780px;
}

.tax-simple-page .landing-main-box-inner h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.tax-simple-top-facts {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border: 1px solid #d8dde4;
}

.tax-simple-top-facts span {
  padding: 14px 16px;
  border-top: 1px solid #d8dde4;
  color: #374151;
  font-size: 0.96rem;
}

.tax-simple-top-facts span:first-child {
  border-top: 0;
}

.tax-simple-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tax-simple-actions .landing-apply-button {
  width: 100%;
}

.landing-apply-button-secondary {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.landing-apply-button-secondary:hover {
  background: #f3f7fb;
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.tax-simple-box {
  padding: 30px 32px;
  display: grid;
  gap: 18px;
}

.tax-simple-box h2 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.12;
  color: #000000;
}

.tax-simple-service-list {
  display: grid;
  gap: 0;
}

.tax-simple-service-row {
  padding: 18px 16px;
  border-top: 1px solid #d8dde4;
  color: #374151;
  font-size: 1rem;
}

.tax-simple-service-row:first-child {
  border-top: none;
}

.tax-simple-form-header {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8dde4;
}

.tax-simple-form-header p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.tax-simple-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.tax-simple-form label:last-of-type,
.tax-simple-form .form-actions {
  grid-column: 1 / -1;
}

.tax-simple-form .form-actions {
  justify-content: flex-start;
  margin-top: 4px;
}

.tax-simple-form input,
.tax-simple-form select,
.tax-simple-form textarea {
  border-radius: 0;
  border: 1px solid #cfd8e3;
}

.tax-simple-form .primary {
  min-width: 220px;
  border-radius: 0;
}

.tax-simple-box#tax-support-form {
  margin-top: 18px;
}

.tax-simple-note {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .landing-top-facts,
  .landing-support-grid,
  .tax-landing-hero,
  .tax-benefit-grid,
  .tax-contact-form,
  .tax-process-row,
  .tax-landing-trust,
  .tax-support-facts {
    grid-template-columns: 1fr;
  }

  .tax-landing-actions {
    justify-content: center;
  }

  .tax-simple-actions,
  .tax-simple-form {
    grid-template-columns: 1fr;
  }

  .landing-top-facts div {
    border-left: 0;
  }

  .landing-top-facts div:not(:first-child),
  .landing-support-grid > div:not(:first-child) {
    border-top: 1px solid #d8dde4;
  }

  .landing-support-grid > div {
    border-left: 0;
  }
}


.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-reference-page {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 52px;
}

.contact-reference-intro {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.contact-reference-intro h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.05;
}

.contact-reference-intro p {
  margin: 0;
  max-width: 860px;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-reference-intro a {
  color: #111111;
  text-decoration: none;
}

.contact-reference-form-wrap {
  width: min(740px, 100%);
  margin: 0 auto;
  padding: 18px 32px 34px;
  background: #ffffff;
  border: 1px solid #dfe4ea;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.contact-reference-form-wrap .notice,
.contact-reference-form-wrap .error-box {
  margin-bottom: 16px;
}

.contact-reference-form {
  display: grid;
  gap: 18px;
}

.contact-reference-note {
  margin: 0 0 6px;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-reference-name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-reference-form label {
  gap: 8px;
  color: #334155;
  font-size: 0.98rem;
  font-weight: 500;
}

.contact-reference-form .field-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.contact-reference-form input,
.contact-reference-form textarea {
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid #cfd7e2;
  border-radius: 4px;
  color: #111827;
  font-size: 1rem;
}

.contact-reference-form textarea {
  min-height: 96px;
}

.contact-reference-field-hint {
  margin-top: -2px;
  color: #6b7280;
  font-size: 0.88rem;
  font-weight: 400;
}

.contact-reference-label-spacer {
  display: block;
  height: 1.25rem;
}

.contact-reference-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
}

.contact-reference-actions .primary {
  min-width: 126px;
  min-height: 48px;
  border-radius: 6px;
}

.contact-reference-support-grid {
  width: min(1000px, 100%);
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.contact-reference-support-grid article {
  min-height: 154px;
  border: 1px solid #d7dfe8;
  background: #ffffff;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px 28px;
}

.contact-reference-icon {
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 1;
}

.contact-reference-support-grid h2 {
  margin: 0;
  color: #2b84d6;
  font-size: 1rem;
  font-weight: 700;
}

.contact-reference-support-grid p,
.contact-reference-support-grid a {
  margin: 0;
  color: #111111;
  font-size: 0.98rem;
  line-height: 1.5;
  text-decoration: none;
}

.order-status-page {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.order-status-card,
.order-status-result-card {
  width: min(480px, 100%);
  margin: 0 auto;
  border: 1px solid #2b84d6;
  background: #ffffff;
  padding: 18px 12px 22px;
}

.order-status-card h1,
.order-status-result-card h2 {
  margin: 0 0 22px;
  text-align: center;
  color: #111111;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 500;
  line-height: 1.1;
}

.order-status-form {
  display: grid;
  gap: 20px;
}

.order-status-form label {
  gap: 8px;
  color: #374151;
  font-size: 0.98rem;
  font-weight: 500;
}

.order-status-form input {
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid #cfd7e2;
  border-radius: 2px;
}

.order-status-actions {
  display: flex;
  justify-content: flex-start;
}

.order-status-actions .primary {
  min-width: 208px;
  min-height: 52px;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.order-status-result-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.order-status-result-grid p {
  margin: 0;
  color: #111827;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .order-status-card,
  .order-status-result-card {
    width: 100%;
    padding: 18px 14px 20px;
  }

  .order-status-actions .primary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .contact-reference-page {
    gap: 36px;
  }

  .contact-reference-form-wrap {
    width: 100%;
    padding: 18px 20px 24px;
  }

  .contact-reference-support-grid {
    width: 100%;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .contact-reference-name-row,
  .contact-reference-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-reference-intro h1 {
    font-size: 2rem;
  }

  .contact-reference-form-wrap {
    padding: 16px 16px 22px;
    border-radius: 12px;
  }
}

.contact-shell {
  margin-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 14px;
}

.contact-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  color: var(--accent-2);
}

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

.contact-support-facts article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #f9fbfd;
  display: grid;
  gap: 6px;
}

.contact-support-facts strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.contact-support-facts span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-email-link {
  background: #fff;
  color: var(--accent-2);
}

.contact-email-link:hover {
  color: var(--accent-2);
}

.contact-apply-link {
  background: var(--accent);
  color: #fff;
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

.simple-page {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.simple-intro-box,
.simple-support-box,
.simple-form-box,
.simple-legal-box {
  border: 1px solid #222222;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}

.simple-intro-box,
.simple-support-box,
.simple-form-box,
.simple-legal-box {
  padding: 28px 32px;
}

.simple-intro-box h1,
.simple-section-heading h2,
.simple-legal-box h2 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #000000;
}

.simple-intro-box h1 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.1;
}

.simple-section-heading h2,
.simple-legal-box h2 {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.15;
}

.simple-intro-box p,
.simple-section-heading p,
.simple-legal-box p,
.simple-legal-box li {
  color: #4b5563;
  line-height: 1.7;
}

.simple-intro-box p {
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.simple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0;
}

.simple-button:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.simple-button-light {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.simple-button-light:hover {
  background: #f3f7fb;
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.simple-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.simple-support-grid article {
  padding: 6px 18px 6px 0;
  display: grid;
  gap: 8px;
}

.simple-support-grid article + article {
  padding-left: 18px;
  border-left: 1px solid #d8dde4;
}

.simple-support-grid strong {
  color: #111827;
  font-size: 0.96rem;
}

.simple-support-grid span {
  color: #4b5563;
  line-height: 1.6;
}

.simple-section-heading {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8dde4;
  margin-bottom: 18px;
}

.simple-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.simple-form .simple-form-wide,
.simple-form .simple-form-actions {
  grid-column: 1 / -1;
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  border-radius: 0;
  border-color: #cfd8e3;
}

.simple-form-actions {
  justify-content: flex-start;
}

.simple-legal-box h3 {
  margin: 28px 0 10px;
  color: #111827;
  font-size: 1.15rem;
}

.simple-legal-box h4 {
  margin: 20px 0 8px;
  color: #111827;
  font-size: 1rem;
}

.simple-legal-box p,
.simple-legal-box ul {
  margin: 0 0 14px;
}

.simple-legal-box ul {
  padding-left: 20px;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner h2 {
  margin: 0 0 8px;
  color: var(--accent-2);
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
}

.legal-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.legal-trust-row article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #f9fbfd;
  display: grid;
  gap: 6px;
}

.legal-trust-row strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.legal-trust-row span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.thank-you-card {
  margin-top: 20px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.thank-you-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.thank-you-next-steps article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #f9fbfd;
  display: grid;
  gap: 6px;
}

.thank-you-next-steps strong {
  color: var(--accent-2);
  font-size: 0.95rem;
}

.thank-you-next-steps span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.thank-you-support-note {
  margin: 14px 0 0;
  color: var(--accent-2);
  font-weight: 600;
}

.not-found-card {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .simple-intro-box,
  .simple-support-box,
  .simple-form-box,
  .simple-legal-box {
    padding: 20px 16px;
  }

  .simple-actions,
  .simple-support-grid,
  .simple-form {
    grid-template-columns: 1fr;
  }

  .simple-support-grid article {
    padding: 0;
  }

  .simple-support-grid article + article {
    padding-left: 0;
    padding-top: 14px;
    margin-top: 14px;
    border-left: none;
    border-top: 1px solid #d8dde4;
  }

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

  .contact-support-facts {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .thank-you-actions,
  .contact-quick-links {
    align-items: stretch;
  }

  .legal-trust-row,
  .thank-you-next-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100vw - 24px));
    padding: 12px 0 36px;
  }

  .application-card {
    padding: 16px 12px 24px;
  }

  .application-progress-card {
    padding: 14px 12px 10px;
  }

  .application-progress-meta {
    font-size: 0.82rem;
  }

  .application-card fieldset + fieldset {
    margin-top: 24px;
    padding-top: 24px;
  }

  .split-form-row {
    grid-template-columns: 1fr;
  }

  .card,
  .order-sheet,
  .tax-conversion-card,
  fieldset {
    box-sizing: border-box;
  }

  .card,
  .order-sheet,
  .tax-conversion-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  fieldset {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-actions,
  .form-actions,
  .thank-you-actions,
  .contact-quick-links,
  .footer-links {
    width: 100%;
  }

  .hero-actions,
  .form-actions,
  .thank-you-actions,
  .contact-quick-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions > *,
  .form-actions > *,
  .thank-you-actions > *,
  .contact-quick-links > * {
    width: 100%;
    min-width: 0;
  }

  .hero-cta-box,
  .hero-secondary-link .secondary,
  .hero-cta-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-card img {
    min-height: 0;
  }

  .footer-trust-strip {
    gap: 10px 14px;
    padding: 0 8px;
  }

  .footer-trust-item {
    white-space: normal;
  }

  .footer-disclaimer {
    font-size: 0.66rem;
  }
}

.option-guide {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

.option-guide > div {
  margin: 0;
}

.option-guide-collapsed {
  margin-top: 10px;
}

.guide-toggle {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #f9fbfd;
}

.inline-guide-toggle {
  margin-top: 6px;
}

.guide-toggle summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-2);
  list-style: none;
}

.guide-toggle summary::-webkit-details-marker {
  display: none;
}

.guide-toggle summary::after {
  content: '+';
  float: right;
  font-weight: 700;
}

.guide-toggle[open] summary::after {
  content: '-';
}

.field-intro {
  margin: 8px 0 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--accent-2);
  font-weight: 600;
}

.field-note {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.dynamic-field {
  display: block;
  margin-top: 14px;
}

.dynamic-field:first-child {
  margin-top: 0;
}

.inline-checkbox {
  margin-top: 6px;
}

.review-section {
  border-style: solid;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.review-row {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(0, 94, 162, 0.03);
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(140px, 1fr));
}

.admin-ui {
  background: #ffffff;
  color: #121212;
}

.admin-topbar {
  background: #1f79b4;
  border-bottom: 1px solid #155984;
}

.admin-topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.admin-brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  filter: brightness(0) invert(1);
}

.admin-brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.admin-brand-copy strong {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.admin-brand-copy small {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-help-link,
.admin-topbar-logout button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.admin-topbar-logout {
  margin: 0;
}

.admin-header-user {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
}

.admin-subnav-wrap {
  border-bottom: 1px solid #d7dce2;
  background: #fff;
}

.admin-subnav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-subnav a {
  color: #375165;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-subnav a:hover {
  color: #1f79b4;
}

.admin-main-container {
  padding-top: 26px;
  padding-bottom: 40px;
}

.admin-main-shell {
  max-width: 1080px;
  margin: 0 auto;
}

.admin-dashboard-page,
.admin-order-page {
  width: 100%;
}

.admin-home-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 18px;
}

.admin-home-tile {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9c6d1;
  background: #222834;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-home-tile-active {
  background: #1f79b4;
}

.admin-toolbar-panel {
  border: 1px solid #222;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.admin-status-strip {
  font-size: 1rem;
  color: #244362;
  line-height: 1.5;
}

.admin-status-strip a {
  color: #2a4aa3;
  text-decoration: none;
}

.admin-status-strip a:hover {
  text-decoration: underline;
}

.admin-top-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-top-search input {
  width: 240px;
  min-height: 38px;
  border: 1px solid #cfd8e0;
  border-radius: 0;
  padding: 8px 10px;
}

.admin-top-search button {
  min-width: 96px;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  background: #5d9fd2;
  color: #fff;
  font-weight: 700;
}

.admin-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-category-tab {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #cfd4d9;
  background: #f3f3f3;
  color: #202020;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.admin-dashboard-table-card {
  border: 1px solid #222;
  background: #fff;
}

.admin-dashboard-table-topnote {
  padding: 10px 16px 0;
  text-align: right;
  color: #1f79b4;
  font-size: 0.95rem;
  font-weight: 500;
}

.admin-dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-dashboard-table thead th {
  padding: 14px 12px;
  border-bottom: 1px solid #d9dfe5;
  text-align: left;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #2a3138;
}

.admin-dashboard-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #e2e8ed;
  vertical-align: top;
}

.admin-dashboard-orderlink {
  color: #2f7ec2;
  text-decoration: none;
  font-weight: 700;
}

.admin-dashboard-orderlink:hover {
  text-decoration: underline;
}

.admin-dashboard-speed {
  margin-top: 8px;
  color: #3f3f3f;
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-dashboard-speed.rush {
  color: #d52323;
  letter-spacing: 0.04em;
}

.admin-dashboard-date-cell,
.admin-dashboard-payment-cell {
  white-space: nowrap;
}

.admin-dashboard-detail-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.admin-dashboard-detail-business {
  margin-top: 2px;
  color: #333;
}

.admin-dashboard-detail-meta {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #596674;
  font-size: 0.92rem;
}

.admin-dashboard-row-links {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-dashboard-row-links a {
  color: #2f7ec2;
  text-decoration: none;
  font-weight: 600;
}

.admin-dashboard-row-links a:hover {
  text-decoration: underline;
}

.admin-dashboard-note-block {
  min-height: 58px;
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid #eceff2;
  color: #32363b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-dashboard-note-muted {
  color: #7a828c;
  font-size: 0.92rem;
}

.admin-dashboard-payment-amount {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.admin-dashboard-payment-meta {
  margin-top: 4px;
  color: #596674;
  font-size: 0.86rem;
  line-height: 1.4;
}

.admin-dashboard-empty {
  padding: 28px 16px;
  text-align: center;
  color: #6f7780;
}

.admin-order-frame {
  border: 1px solid #222;
  background: #fff;
  padding: 18px 26px 26px;
  max-width: 980px;
  margin: 0 auto;
}

.admin-order-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-order-links-bottom {
  margin-top: 18px;
  justify-content: center;
}

.admin-order-route {
  color: #1f79b4;
  font-size: 0.98rem;
}

.admin-order-back {
  color: #1f79b4;
  text-decoration: none;
  font-size: 0.98rem;
}

.admin-order-back:hover {
  text-decoration: underline;
}

.admin-order-summary {
  text-align: center;
  margin-bottom: 18px;
}

.admin-order-summary p {
  margin: 0 0 12px;
  font-size: 1rem;
}

.admin-order-summary span {
  margin: 0 4px;
  color: #587088;
}

.admin-order-summary a {
  color: #2f7ec2;
  text-decoration: none;
}

.admin-order-summary a:hover {
  text-decoration: underline;
}

.admin-order-status-inline {
  font-size: 1.2rem;
}

.admin-order-body {
  max-width: 720px;
  margin: 0 auto;
}

.admin-order-section {
  margin: 0 0 24px;
}

.admin-order-line {
  margin: 0 0 10px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #121212;
}

.admin-order-line strong {
  color: #111;
}

.admin-ui .status-pill {
  border-radius: 999px;
}

@media (max-width: 980px) {
  .admin-topbar-inner,
  .admin-subnav,
  .admin-main-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .admin-home-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .admin-toolbar-panel,
  .admin-order-links {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-top-search {
    width: 100%;
  }

  .admin-top-search input {
    width: 100%;
    flex: 1 1 auto;
  }

  .admin-dashboard-table-card {
    overflow-x: auto;
  }

  .admin-order-frame {
    padding: 16px;
  }

  .admin-order-summary {
    text-align: left;
  }

  .admin-order-body {
    max-width: none;
  }
}


.checkout-application-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 22px 28px;
}

.checkout-payment-form fieldset + fieldset {
  margin-top: 26px;
}

.checkout-processing-options {
  gap: 10px;
}

.checkout-reminder {
  margin: 12px 0 0;
  color: #5a6472;
  font-size: 0.86rem;
  line-height: 1.35;
}

.checkout-card-panel {
  border: 0;
  background: #f3f5f8;
  padding: 12px;
}

.checkout-payment-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3645;
  margin-bottom: 10px;
}

.checkout-payment-label span {
  color: #c0362c;
}

.checkout-brand-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.checkout-brand-row span {
  min-width: 38px;
  padding: 5px 6px;
  border: 1px solid #b7c3d4;
  background: #fff;
  color: #2468a7;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.checkout-card-panel input,
.checkout-card-panel .card-element {
  width: 100%;
  background: #fff;
  border: 1px solid #bcc8d8;
  min-height: 40px;
  padding: 11px 12px;
  box-sizing: border-box;
}

.checkout-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.checkout-acceptance {
  margin-top: 12px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.checkout-form-actions {
  margin-top: 16px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 720px) {
  .checkout-application-card {
    padding: 20px 14px 26px;
  }

  .checkout-card-row {
    grid-template-columns: 1fr;
  }
}
