:root {
  --orange: #e85a00;
  --orange-dark: #c94e00;
  --dark: #1a1a1a;
  --gray: #3a3a3a;
  --muted: #f9fafb;
  --border: #e5e7eb;
  --text: #111827;
  --soft: #6b7280;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

p {
  margin-top: 0;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: min(100% - 32px, 1152px);
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.page-hero .narrow {
  max-width: 896px;
}

.page-hero.compact .narrow {
  max-width: 768px;
}

.contact-hero-inner {
  max-width: 896px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  color: var(--white);
}

.header-inner {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand span,
.footer-brand span {
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav a,
.mobile-nav a,
.site-footer a {
  color: #d1d5db;
  text-decoration: none;
}

.nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--white);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  padding: 4px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 11px 16px;
}

.button {
  padding: 16px 32px;
  font-size: 18px;
}

.button.small {
  padding: 11px 16px;
  font-size: 14px;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

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

.button-ghost {
  border: 1px solid #6b7280;
  color: #d1d5db;
}

.button-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.button-orange-ghost {
  border: 1px solid #fed7aa;
  color: var(--white);
}

.button-orange-ghost:hover {
  background: var(--orange-dark);
}

.button-light {
  background: var(--white);
  color: var(--orange);
}

.button-light:hover {
  background: #fff7ed;
}

.button-plain {
  color: var(--orange);
  padding-inline: 18px;
}

.button-plain:hover {
  text-decoration: underline;
}

.button-dark {
  background: var(--dark);
  color: var(--white);
}

.button-dark:hover {
  background: var(--gray);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: #d1d5db;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  background: currentColor;
}

.mobile-nav {
  display: grid;
  gap: 14px;
  border-top: 1px solid #374151;
  background: var(--gray);
  padding: 16px;
}

.mobile-nav .nav-cta {
  display: flex;
}

.mobile-nav[hidden] {
  display: none;
}

.hero,
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 96px 0;
}

.page-hero {
  padding: 64px 0;
}

.page-hero.compact {
  padding: 48px 0;
}

.checkout-hero {
  padding: 40px 0;
}

.checkout-hero-inner {
  max-width: 768px;
}

.hero-inner {
  max-width: 896px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 7vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.page-hero h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0;
}

.page-hero.compact h1 {
  font-size: 30px;
  line-height: 36px;
}

.checkout-hero h1 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 36px;
}

.lead,
.page-hero p {
  max-width: 672px;
  color: var(--gray-300);
  font-size: 18px;
  line-height: 28px;
}

.page-hero .eyebrow {
  max-width: none;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 12px;
}

.hero .lead {
  margin: 0 auto 40px;
}

.page-hero p {
  margin: 0;
}

.page-hero a:not(.button) {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero a:not(.button):hover {
  text-decoration: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.trust-bar {
  background: var(--gray);
  color: var(--white);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: var(--orange);
  font-size: 28px;
  line-height: 1.1;
}

.trust-grid span {
  color: #d1d5db;
  font-size: 14px;
}

.section {
  padding: 80px 0;
}

.checkout-section {
  padding: 48px 0;
}

.muted {
  background: var(--muted);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2,
.cta-band h2 {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
}

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

.card-grid-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.industry-card,
.value-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  text-decoration: none;
}

.service-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgb(17 24 39 / 10%);
}

.service-card span {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.card-code {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.card-code {
  border-radius: 999px;
}

.service-card h3,
.industry-card h2 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 160ms ease;
}

.service-card:hover h3 {
  color: var(--orange);
}

.service-card p,
.industry-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
}

.industry-icon {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tags span {
  border: 1px solid #fed7aa;
  border-radius: 6px;
  background: #fff7ed;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 8px;
}

.service-list {
  display: grid;
  gap: 64px;
  max-width: 896px;
}

.service-detail {
  scroll-margin-top: 80px;
}

.service-detail-head {
  border-left: 4px solid var(--orange);
  padding-left: 24px;
}

.service-detail h2 {
  margin: 0 0 4px;
  color: var(--dark);
  font-size: 26px;
  font-weight: 700;
}

.service-detail p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
}

.service-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #374151;
}

.check-list span {
  color: var(--orange);
  font-weight: 700;
  margin-top: 1px;
}

.service-detail aside,
.info-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--muted);
  padding: 20px;
}

.service-detail aside span,
.info-box > span {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-detail aside p {
  margin-bottom: 20px;
  color: #374151;
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.steps strong {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
}

.steps h3 {
  margin: 16px 0 8px;
  color: var(--dark);
  font-size: 18px;
}

.steps p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.6;
}

.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-band .container {
  max-width: 780px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  margin: 0 0 32px;
  color: #ffedd5;
  font-size: 20px;
}

.split,
.about-split,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.contact-layout {
  max-width: 1024px;
  grid-template-columns: 1fr 2fr;
}

.contact-section {
  padding: 64px 0;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-info p {
  color: #374151;
  font-size: 14px;
  margin: 0;
}

.contact-info .label {
  margin: 0 0 4px;
}

.contact-info a {
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
}

.contact-info a:hover,
.contact-info .contact-offer-link {
  color: var(--orange);
}

.contact-name {
  color: var(--dark) !important;
  font-weight: 500;
}

.contact-muted {
  color: var(--soft) !important;
}

.about-split {
  max-width: 896px;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
}

.about-split h2,
.center h2 {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.about-split p {
  color: #4b5563;
  line-height: 1.75;
}

.info-box p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.65;
}

.info-box a {
  display: block;
  color: var(--orange);
  text-decoration: none;
  margin-top: 6px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.value-card i {
  display: block;
  width: 8px;
  height: 32px;
  border-radius: 99px;
  background: var(--orange);
  margin-bottom: 16px;
}

.value-card h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-weight: 700;
}

.value-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.6;
}

.contact-panel,
.form-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 28px;
}

.contact-panel p {
  margin: 0 0 16px;
  color: #4b5563;
  line-height: 1.65;
}

.contact-panel strong {
  color: var(--dark);
  font-weight: 500;
}

.contact-panel span {
  color: var(--soft);
  font-size: 14px;
}

.contact-panel a {
  color: var(--orange);
  text-decoration: none;
}

.label {
  margin: 24px 0 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-wrap {
  max-width: 760px;
}

.form-card {
  display: grid;
  gap: 24px;
  box-shadow: 0 1px 2px rgb(17 24 39 / 5%);
}

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

.contact-form input,
.contact-form textarea {
  border-radius: 4px;
  font-size: 14px;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: none;
}

.contact-form .button[type="submit"] {
  justify-self: start;
  padding: 13px 24px;
  font-size: 16px;
}

.form-card > .button[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  font-size: 14px;
}

fieldset {
  border: 0;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
}

legend {
  width: 100%;
  border-bottom: 1px solid #f3f4f6;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

label span {
  color: #ef4444;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgb(232 90 0 / 14%);
  outline: none;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.55;
}

.check input {
  flex: 0 0 auto;
  width: auto;
  margin-top: 4px;
}

.check > span {
  color: #4b5563;
}

.responsibility {
  border-radius: 10px;
  background: var(--muted);
  padding: 16px;
}

.responsibility em {
  color: #ef4444;
  font-style: normal;
}

.form-hint,
.form-footnote {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
}

.form-footnote {
  text-align: center;
}

.upload-box {
  align-items: center;
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  background: var(--muted);
  cursor: pointer;
  justify-content: center;
  min-height: 104px;
  padding: 24px;
  text-align: center;
  transition: border-color 160ms ease;
}

.upload-box:hover {
  border-color: var(--orange);
}

.upload-box span {
  color: #4b5563;
  font-weight: 500;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--dark);
  font-weight: 600;
  list-style: none;
  padding: 18px 24px;
}

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

.faq-list summary span {
  color: var(--orange);
  font-size: 22px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.75;
  padding: 0 24px 22px;
}

.center {
  text-align: center;
}

.center p {
  color: var(--soft);
  margin-bottom: 24px;
}

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

.flash-wrap {
  padding-top: 24px;
}

.flash {
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
}

.flash-success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.flash-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.empty-state {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}

.empty-title {
  margin: 0 0 8px;
  color: var(--gray-400);
  font-size: 18px;
  font-weight: 400;
}

.empty-state p:not(.empty-title) {
  color: var(--gray-400);
  font-size: 14px;
  margin: 0 auto 28px;
  max-width: 560px;
}

.legal,
.legal-card {
  color: #374151;
  font-size: 14px;
  line-height: 1.75;
}

.legal-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 2px rgb(17 24 39 / 5%);
  padding: 32px;
}

.legal-section + .legal-section {
  border-top: 1px solid #f3f4f6;
  margin-top: 28px;
  padding-top: 28px;
}

.legal-section h2 {
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.legal-section p {
  margin: 0 0 12px;
}

.placeholder-note {
  color: var(--soft);
}

.site-footer {
  background: var(--dark);
  color: #9ca3af;
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
  font-size: 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-contact {
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  color: #6b7280;
  font-size: 12px;
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #9ca3af;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .card-grid,
  .card-grid-services,
  .steps,
  .split,
  .about-split,
  .contact-layout,
  .service-detail-body,
  .value-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1152px);
  }

  .hero {
    padding: 72px 0 64px;
  }

  .page-hero {
    padding: 48px 0;
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(36px, 11vw, 42px);
  }

  .page-hero h1 {
    font-size: 36px;
    line-height: 40px;
  }

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

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

  .card-grid,
  .service-list,
  .faq-list {
    gap: 16px;
  }

  .service-card,
  .industry-card,
  .value-card,
  .contact-panel,
  .form-card,
  .legal-card,
  .info-box {
    padding: 22px;
  }

  .form-card {
    gap: 20px;
  }

  .contact-form .button[type="submit"] {
    justify-self: stretch;
    width: 100%;
  }

  .form-row,
  fieldset {
    gap: 14px;
  }

  .upload-box {
    min-height: 92px;
    padding: 20px;
  }

  .cta-band {
    padding: 56px 0;
  }

  .footer-grid {
    padding: 40px 0;
  }

  .footer-bottom {
    padding: 14px 0;
  }

  .footer-legal-links {
    flex-wrap: wrap;
  }
}
