:root {
  --ats-orange: #D64A00;
  --ats-orange-hover: #B33F00;
  --ats-navy: #0B1F3A;
  --ats-copy: #1F2937;
  --ats-muted: #667085;
  --ats-page: #F7FAFC;
  --ats-footer: #F3F4F6;
  --ats-border: #E5E7EB;
  --ats-link: #1F5F8B;
  --container: 1280px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --shadow-lg: 0 20px 25px -5px rgba(16, 24, 40, .10), 0 8px 10px -6px rgba(16, 24, 40, .10);
  --shadow-md: 0 10px 15px -3px rgba(16, 24, 40, .10), 0 4px 6px -4px rgba(16, 24, 40, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--ats-page); color: var(--ats-copy); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.5; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-left: 24px; padding-right: 24px; }
.site-shell { min-height: 100vh; background: var(--ats-page); display: flex; flex-direction: column; }
main { flex: 0 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ats-orange); box-shadow: 0 10px 15px -3px rgba(16, 24, 40, .18), 0 4px 6px -4px rgba(16, 24, 40, .14); }
.header-inner { min-height: 72px; padding-block: 16px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav button, .desktop-nav a:not(.nav-cta) { padding: 0; border: 0; background: transparent; color: #fff; transition: color .2s ease, transform .2s ease; }
.desktop-nav button:hover, .desktop-nav a:hover { color: #E5E7EB; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; background: #fff; color: var(--ats-orange); border-radius: 8px; font-weight: 500; transition: background-color .2s ease, transform .2s ease; }
.nav-cta:hover { background: #F3F4F6; color: var(--ats-orange); transform: translateY(-1px); }

.hero { padding: 96px 0; }
.section-gradient-light { background: linear-gradient(135deg, #fff 0%, var(--ats-page) 100%); }
.section-gradient-soft { background: linear-gradient(135deg, var(--ats-page) 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; color: var(--ats-navy); font-size: 3rem; line-height: 1; font-weight: 700; letter-spacing: 0; }
.lead { margin-bottom: 32px; color: var(--ats-muted); font-size: 1.25rem; line-height: 1.625; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 32px; border-radius: 8px; font-weight: 500; border: 2px solid transparent; line-height: 1; transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(214, 74, 0, .16); }
.btn-primary { background: var(--ats-orange); color: #fff; border-color: var(--ats-orange); }
.btn-primary:hover { background: var(--ats-orange-hover); border-color: var(--ats-orange-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--ats-orange); border-color: var(--ats-orange); }
.btn-outline:hover { background: var(--ats-orange); color: #fff; }
.btn-full { width: 100%; }
.regulated-note { display: flex; align-items: center; gap: 8px; color: var(--ats-muted); font-size: .875rem; }
.hero-panel { background: #fff; border: 1px solid var(--ats-border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-lg); }
.metric-row { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--ats-page); border-radius: 8px; }
.metric-row + .metric-row { margin-top: 24px; }
.metric-row span { display: block; color: var(--ats-muted); font-size: .875rem; }
.metric-row strong { display: block; color: var(--ats-navy); font-weight: 600; }

.content-section { padding: 96px 0; }
.bg-white { background: #fff; }
.section-heading { max-width: 768px; margin: 0 auto 64px; text-align: center; }
.section-heading h2 { margin-bottom: 16px; color: var(--ats-navy); font-size: 2.25rem; line-height: 2.5rem; font-weight: 700; letter-spacing: 0; }
.section-heading p { margin-bottom: 0; color: var(--ats-muted); font-size: 1.25rem; line-height: 1.5; }
.card-grid { display: grid; gap: 32px; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-col { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card { background: var(--ats-page); border: 1px solid var(--ats-border); border-radius: var(--radius-xl); padding: 32px; transition: box-shadow .2s ease, transform .2s ease; }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.info-card h3 { margin: 24px 0 12px; color: var(--ats-navy); font-size: 1.25rem; line-height: 1.35; font-weight: 600; }
.info-card p { margin: 0; color: var(--ats-muted); }
.center-card { text-align: center; }
.center-card .icon-box { margin-inline: auto; }
.partner-grid { margin-bottom: 48px; }
.section-action { text-align: center; }

.product-card { max-width: 1024px; margin-inline: auto; background: #fff; border: 1px solid var(--ats-border); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-lg); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; }
.product-logo-block { margin-bottom: 24px; color: var(--ats-muted); font-size: .875rem; }
.product-logo-block img { height: 64px; width: auto; object-fit: contain; margin-bottom: 8px; }
.check-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ats-copy); }
.covered-panel { min-height: 320px; display: flex; align-items: center; justify-content: center; border-radius: 12px; padding: 32px; background: linear-gradient(135deg, var(--ats-page) 0%, var(--ats-border) 100%); }
.covered-content { text-align: center; }
.covered-icon { width: 80px; height: 80px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--ats-orange); color: #fff; }
.covered-icon .ats-icon { width: 48px; height: 48px; }
.covered-content h3 { margin-bottom: 8px; color: var(--ats-navy); font-size: 1.5rem; line-height: 1.3; font-weight: 700; }
.covered-content p { margin: 0; color: var(--ats-muted); }

.compliance-grid { max-width: 1024px; margin-inline: auto; gap: 24px; }
.mini-card { background: #fff; border: 1px solid var(--ats-border); border-radius: 12px; padding: 24px; text-align: center; }
.mini-card .icon-box { margin-inline: auto; margin-bottom: 16px; }
.mini-card strong { color: var(--ats-navy); font-size: .875rem; font-weight: 600; }

.contact-grid { max-width: 1152px; margin-inline: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.contact-card { background: var(--ats-page); border: 1px solid var(--ats-border); border-radius: var(--radius-xl); padding: 32px; }
.contact-card h3 { margin-bottom: 24px; color: var(--ats-navy); font-size: 1.25rem; font-weight: 600; }
.contact-details { display: grid; gap: 16px; }
.contact-details span { display: block; color: var(--ats-muted); font-size: .875rem; font-weight: 500; margin-bottom: 4px; }
.contact-details p { margin: 0; color: var(--ats-copy); }
.contact-details a { color: var(--ats-link); }
.contact-details a:hover { text-decoration: underline; }
.form-card { background: #fff; border: 1px solid var(--ats-border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-md); display: grid; gap: 24px; }
.form-row label { display: block; color: var(--ats-navy); font-size: .875rem; font-weight: 500; margin-bottom: 8px; }
.form-row input, .form-row textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--ats-border); border-radius: 8px; background: #fff; color: var(--ats-copy); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-row textarea { resize: none; min-height: 122px; }
.form-row input:focus, .form-row textarea:focus { border-color: transparent; box-shadow: 0 0 0 2px var(--ats-orange); }
.form-row span, .validation-summary { color: #b42318; font-size: .875rem; }
.success-banner { max-width: 1152px; margin: -32px auto 32px; padding: 14px 18px; border: 1px solid rgba(22, 163, 74, .25); border-radius: 10px; background: #f0fdf4; color: #166534; }

.icon-box { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--ats-orange); color: #fff; flex: 0 0 auto; }
.icon-box-round { width: 48px; height: 48px; border-radius: 999px; }
.icon-box-sm { width: 48px; height: 48px; border-radius: 8px; }
.ats-icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.icon-box .ats-icon { width: 50%; height: 50%; }
.check-icon { width: 20px; height: 20px; color: var(--ats-orange); margin-top: 2px; }
.check-icon-small { width: 16px; height: 16px; color: var(--ats-orange); }

.site-footer { background: var(--ats-footer); color: var(--ats-copy); padding: 64px 0; flex: 0 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px; margin-bottom: 48px; }
.site-footer h3 { margin-bottom: 16px; color: var(--ats-navy); font-size: 1.125rem; font-weight: 600; }
.footer-copy { color: var(--ats-muted); font-size: .875rem; }
.footer-copy p { margin: 0 0 8px; }
.mt-sm { margin-top: 8px !important; }
.product-name { color: var(--ats-navy); font-weight: 500; }
.footer-link, .legal-links a { color: var(--ats-muted); transition: color .2s ease; }
.footer-link.strong { display: block; color: var(--ats-orange); font-weight: 500; padding-top: 8px; }
.footer-link:hover, .legal-links a:hover { color: var(--ats-orange); text-decoration: underline; }
.legal-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .875rem; }
.footer-bottom { border-top: 1px solid var(--ats-border); padding-top: 32px; color: var(--ats-muted); font-size: .875rem; }
.footer-bottom p { margin-bottom: 16px; }
.footer-bottom p:last-child { margin-bottom: 0; }

/* Reveal is progressive enhancement: visible by default, hidden only once JS confirms animation is available.
   This prevents blank white areas if the page is loaded directly at #contact or scripts are delayed. */
.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal-enabled .reveal { opacity: 0; transform: translateY(22px); }
.reveal-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 900px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .header-inner { justify-content: center; }
  .brand img { height: 48px; }
  .desktop-nav { display: none; }
  .hero, .content-section { padding: 72px 0; }
  .hero-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .three-col, .four-col, .footer-grid { grid-template-columns: 1fr; }
  .product-card { padding: 32px; }
  .section-heading { margin-bottom: 48px; }
  h1 { font-size: 2.25rem; line-height: 2.5rem; }
  .section-heading h2 { font-size: 1.875rem; line-height: 2.25rem; }
}

@media (max-width: 560px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .hero, .content-section { padding: 56px 0; }
  .lead, .section-heading p { font-size: 1.0625rem; }
  .button-row, .btn { width: 100%; }
  .hero-panel, .product-card, .contact-card, .form-card, .info-card { padding: 24px; }
  .covered-panel { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
