:root {
  --red: #F20505;
  --anthracite: #111827;
  --text: #374151;
  --muted: #6B7280;
  --white: #FFFFFF;
  --off-white: #F9FAFB;
  --line: #E5E7EB;
  --blue-grey: #EEF4F8;
  --tech: #0F766E;

  --shadow-sm: 0 10px 25px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(17, 24, 39, 0.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --container: 1180px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: var(--anthracite);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.25rem);
  max-width: 980px;
  margin-bottom: 1.35rem;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.75rem 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--anthracite);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  display: none;
  position: absolute;
  inset: var(--header-height) 1rem auto 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.site-nav.is-open {
  display: grid;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.8rem 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--anthracite);
  background: var(--off-white);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--anthracite);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 118, 110, 0.12), transparent 26%),
    radial-gradient(circle at 10% 22%, rgba(242, 5, 5, 0.07), transparent 24%),
    linear-gradient(180deg, var(--off-white), var(--white));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -8rem auto;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--tech);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-lead {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(242, 5, 5, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 16px 42px rgba(242, 5, 5, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--anthracite);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
}

.hero-points {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.hero-points li {
  position: relative;
  padding-left: 1.75rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--tech);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
}

.hero-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.hero-card strong {
  color: var(--anthracite);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.linkedin-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--anthracite);
  color: var(--white);
}

.linkedin-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 0;
}

.linkedin-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.linkedin-inner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.two-column {
  display: grid;
  gap: 2rem;
}

.content-stack {
  display: grid;
  gap: 0.8rem;
}

.content-stack p:last-child {
  margin-bottom: 0;
}

.problem,
.benefits,
.faq {
  background: var(--white);
}

.solution,
.integration,
.process,
.contact {
  background: var(--off-white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.benefit-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

.feature-card {
  min-height: 240px;
}

.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  color: var(--red);
  background: rgba(242, 5, 5, 0.08);
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-item {
  display: grid;
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.service-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--blue-grey);
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.tag-row span {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  color: var(--tech);
  background: rgba(15, 118, 110, 0.07);
  font-size: 0.9rem;
  font-weight: 750;
}

.benefit-card {
  background:
    linear-gradient(180deg, rgba(238, 244, 248, 0.65), rgba(255, 255, 255, 1));
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.process-list span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--anthracite);
  color: var(--white);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-box {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--anthracite), #1f2937);
}

.trust-box h2,
.trust-box p {
  color: var(--white);
}

.trust-box .eyebrow {
  color: #9FE4DA;
}

.trust-box .content-stack p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  color: var(--anthracite);
  font-weight: 850;
}

details p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-note {
  margin-top: 1.5rem;
  font-weight: 750;
}

.contact-note a {
  color: var(--red);
}

.contact-form {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

label,
legend {
  color: var(--anthracite);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--anthracite);
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--tech);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.checkbox-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.checkbox-group legend {
  padding: 0 0.35rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.checkbox-group input {
  width: auto;
  accent-color: var(--red);
}

.error-message {
  min-height: 1.1rem;
  color: var(--red);
  font-size: 0.88rem;
}

.has-error input,
.has-error select,
.has-error textarea,
.checkbox-group.has-error {
  border-color: var(--red);
}

.privacy-note {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: var(--radius-md);
  background: rgba(15, 118, 110, 0.08);
  color: var(--tech);
  font-weight: 750;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  margin-bottom: 0.9rem;
}

.footer-brand .brand-text {
  color: var(--white);
}

.footer-inner p {
  max-width: 520px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 750;
}

@media (min-width: 700px) {
  .linkedin-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

  .service-item {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

  .service-item img {
    height: 180px;
  }
}

@media (min-width: 920px) {
  .section {
    padding: 6.5rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .two-column,
  .contact-grid,
  .trust-box {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


.legal-page {
  background:
    radial-gradient(circle at 85% 10%, rgba(15, 118, 110, 0.08), transparent 28%),
    linear-gradient(180deg, var(--off-white), var(--white));
}

.legal-container {
  max-width: 920px;
}

.legal-container h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  margin-bottom: 2rem;
}

.legal-card {
  padding: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.legal-card h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin-bottom: 0.8rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--red);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

.form-success.is-error {
  border-color: rgba(242, 5, 5, 0.28);
  background: rgba(242, 5, 5, 0.08);
  color: var(--red);
}

.private-services {
  background: var(--white);
}

.private-services .benefit-card {
  min-height: 260px;
}
