:root {
  --color-red: #d4001f;
  --color-red-dark: #b40019;
  --color-black: #111111;
  --color-text: #303030;
  --color-muted: #f7f7f7;
  --color-soft-red: #fff6f7;
  --color-border: #eeeeee;
  --shadow-soft: 0 18px 45px rgba(18, 18, 18, 0.08);
  --content-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-black);
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
}

a {
  color: var(--color-red-dark);
}

a:focus-visible,
.btn:focus-visible,
.navbar-toggler:focus-visible {
  outline: 3px solid rgba(212, 0, 31, 0.36);
  outline-offset: 3px;
}

.container {
  max-width: var(--content-width);
  padding-left: 32px;
  padding-right: 32px;
}

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.05);
  backdrop-filter: blur(12px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
}

.brand-logo {
  display: block;
  width: 168px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.navbar-toggler {
  border-color: #d8d8d8;
}

.navbar .nav-link {
  color: #151515;
  font-weight: 650;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--color-red);
}

.btn-consulting {
  color: #ffffff;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 8px;
  font-weight: 750;
  box-shadow: 0 12px 24px rgba(212, 0, 31, 0.22);
}

.btn-consulting:hover,
.btn-consulting:focus {
  color: #ffffff;
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.btn-outline-consulting {
  color: var(--color-black);
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-weight: 750;
}

.btn-outline-consulting:hover,
.btn-outline-consulting:focus {
  color: var(--color-red-dark);
  border-color: var(--color-red-dark);
  background: var(--color-soft-red);
}

.hero-section {
  padding: 86px 0 72px;
  background:
    linear-gradient(110deg, rgba(212, 0, 31, 0.08), rgba(255, 255, 255, 0) 45%),
    #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  max-width: var(--content-width);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--color-red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--color-black);
  font-weight: 850;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

.hero-text {
  max-width: 72ch;
  margin: 1.4rem 0 0;
  color: var(--color-text);
  font-size: 1.16rem;
  line-height: 1.72;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 0.55rem 0.75rem;
  color: #2f2f2f;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff, #fff8f9),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-panel img {
  display: block;
  width: min(100%, 430px);
  height: auto;
  margin: 0 auto;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-panel-grid span {
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-red);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 800;
}

.section-block {
  padding: 96px 0;
}

.intro-section {
  padding-bottom: 80px;
  background: #ffffff;
}

.signal-section {
  padding: 72px 0;
  background: var(--color-muted);
}

.intro-copy,
.policy-copy {
  max-width: var(--content-width);
}

.intro-copy p {
  max-width: 100%;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.82;
}

.policy-copy p {
  max-width: 75ch;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.82;
}

.intro-copy strong,
.policy-copy strong,
.experience-copy strong {
  color: #151515;
}

.intro-statement {
  max-width: 100%;
  margin: 2rem 0;
  padding: 1.35rem 1.6rem;
  border-left: 5px solid var(--color-red);
  border-radius: 0 8px 8px 0;
  background: var(--color-soft-red);
}

.intro-copy .intro-statement {
  max-width: 100%;
}

.intro-statement strong {
  color: var(--color-red-dark);
}

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

.section-heading p:not(.eyebrow) {
  max-width: 72ch;
  color: #444444;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  break-inside: avoid;
  page-break-inside: avoid;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 0, 31, 0.36);
  box-shadow: var(--shadow-soft);
}

.service-index {
  color: var(--color-red);
  font-weight: 900;
}

.service-card h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.45rem;
}

.service-card p,
.approach-grid p,
.split-content p,
.experience-copy p {
  color: #444444;
  line-height: 1.75;
}

.outcome-card {
  gap: 0.35rem;
}

.outcome-card ul,
.signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.outcome-card li {
  position: relative;
  padding-left: 1.15rem;
  color: #303030;
  line-height: 1.6;
}

.outcome-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-red);
}

.signal-list {
  display: grid;
  gap: 0.9rem;
}

.signal-list article {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.35rem;
  border-left: 5px solid var(--color-red);
  border-radius: 0 8px 8px 0;
  background: #ffffff;
}

.signal-list strong {
  color: #111111;
}

.signal-list span {
  color: #444444;
  line-height: 1.65;
}

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

.approach-grid,
.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.steps-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.steps-list::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 18px;
  width: 2px;
  background: rgba(212, 0, 31, 0.18);
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.45rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.05);
  break-inside: avoid;
  page-break-inside: avoid;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--color-red);
  border-radius: 50%;
  font-weight: 850;
  font-size: 0.86rem;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
}

.step-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #151515;
}

.step-card p {
  margin: 0;
  color: #4b4b4b;
}

.experience-copy p + p {
  margin-top: 1rem;
}

.profile-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.profile-stack span {
  padding: 0.65rem 0.85rem;
  color: var(--color-red-dark);
  border: 1px solid rgba(212, 0, 31, 0.22);
  border-radius: 999px;
  background: var(--color-soft-red);
  font-weight: 750;
}

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

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  color: #111111;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: #444444;
  line-height: 1.75;
}

.cta-section {
  padding: 80px 0;
  background: var(--color-red);
}

.cta-box,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  color: #ffffff;
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p,
.contact-grid .eyebrow,
.contact-grid h2,
.contact-grid p {
  color: #ffffff;
}

.cta-box p,
.contact-grid p {
  max-width: 72ch;
  line-height: 1.75;
}

.cta-actions,
.contact-card {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.contact-card {
  min-width: min(360px, 100%);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-card strong,
.contact-card span {
  color: #ffffff;
}

.cta-email {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-email:hover,
.cta-email:focus {
  color: #ffffff;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.site-footer span {
  display: block;
  color: #595959;
}

.site-footer span + span {
  margin-top: 0.25rem;
  color: #777777;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.footer-links span {
  display: inline;
  color: #9a9a9a;
}

.policy-copy h1 {
  margin-bottom: 0.75rem;
}

.policy-copy h2 {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}

.policy-updated {
  margin-bottom: 1.5rem;
  color: #777777;
  font-size: 0.95rem;
}

.policy-notice {
  display: grid;
  gap: 0.35rem;
  margin: 2rem 0 2.5rem;
  padding: 1.2rem 1.4rem;
  border-left: 5px solid var(--color-red);
  border-radius: 0 8px 8px 0;
  background: var(--color-soft-red);
}

.policy-notice strong {
  color: var(--color-red-dark);
}

.policy-notice span {
  color: #3f3f3f;
}

.policy-copy ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: #3f3f3f;
  font-size: 1.08rem;
  line-height: 1.8;
}

.policy-copy li + li {
  margin-top: 0.35rem;
}

@media (max-width: 991px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand-logo {
    width: 150px;
    height: 54px;
  }

  .section-block {
    padding: 72px 0;
  }

  .hero-section {
    padding: 72px 0;
  }

  .hero-grid,
  .approach-grid,
  .split-content,
  .service-grid,
  .cta-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions,
  .contact-card {
    justify-items: start;
  }

  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand-logo {
    width: 136px;
    height: 50px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero-section,
  .section-block {
    padding: 48px 0;
  }

  .hero-text {
    margin-top: 1.1rem;
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 1.55rem;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-card .btn {
    width: 100%;
  }

  .service-card,
  .step-card,
  .hero-panel,
  .contact-card {
    padding: 1.5rem;
  }

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

  .footer-links {
    white-space: normal;
  }
}

@media print {
  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  .site-navbar {
    position: static;
  }

  .navbar-toggler,
  .hero-actions,
  .cta-actions,
  .contact-card .btn {
    display: none !important;
  }

  .hero-section,
  .section-block,
  .cta-section {
    padding: 32px 0;
    background: #ffffff !important;
  }

  .cta-box .eyebrow,
  .cta-box h2,
  .cta-box p,
  .contact-grid .eyebrow,
  .contact-grid h2,
  .contact-grid p,
  .contact-card strong,
  .contact-card span {
    color: #000000;
  }

  .intro-statement,
  .service-card,
  .step-card,
  .hero-panel,
  .contact-card {
    border: 1px solid #999999;
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
