:root {
  --brand-primary: #dc8d22;
  --brand-secondary: #6c757d;
  --brand-accent: #198754;
  --brand-dark: #22272b;
  --brand-light: #fff8ed;
  --brand-muted: #adb5bd;
  --white: #ffffff;
  --ink-soft: #50575d;
  --line: rgba(34, 39, 43, 0.12);
  --shadow: 0 24px 70px rgba(34, 39, 43, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 9vw, 6.9rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(34, 39, 43, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--white);
}

.site-logo-img {
  width: 200px;
  max-height: 25px;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

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

.site-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(220, 141, 34, 0.23), transparent 30%),
    linear-gradient(135deg, #22272b 0%, #2d3338 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -290px;
  left: -150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--brand-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #f9c77d;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: #e8a13f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.hero-points li::before {
  content: "✓";
  margin-right: 7px;
  color: #77c89c;
  font-weight: 900;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.hero-image-wrap {
  aspect-ratio: 1500 / 234;
  max-width: 750px;
  overflow: hidden;
  background: var(--brand-secondary);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-body {
  padding: 28px;
}

.hero-card-body .card-kicker {
  margin-bottom: 8px;
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-body p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card-body a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.hero-card-body a span {
  color: var(--brand-primary);
}

.member-bar {
  position: relative;
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.member-bar > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.member-logos .asset-img {
  width: auto;
  max-width: 190px;
  max-height: 54px;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--white);
  object-fit: contain;
}

.benefit-section {
  background: var(--white);
}

.split-heading {
  display: grid;
  gap: 42px;
}

.section-intro > p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.benefit-row {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.benefit-row article {
  padding: 18px 20px;
  border-left: 3px solid var(--brand-primary);
  background: var(--brand-light);
}

.benefit-row strong,
.benefit-row span {
  display: block;
}

.benefit-row strong {
  margin-bottom: 2px;
}

.benefit-row span {
  color: var(--brand-secondary);
  font-size: 0.9rem;
}

.services-section {
  color: var(--white);
  background: var(--brand-dark);
}

.section-heading {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.section-heading.dark > p {
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.service-card.featured {
  color: var(--brand-dark);
  background: var(--brand-primary);
}

.service-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.featured .service-number {
  border-color: rgba(34, 39, 43, 0.22);
  color: var(--brand-dark);
}

.service-card > p {
  color: rgba(255, 255, 255, 0.58);
}

.featured > p {
  color: rgba(34, 39, 43, 0.72);
}

.service-card ul {
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.featured ul {
  border-color: rgba(34, 39, 43, 0.15);
}

.service-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
  font-size: 0.88rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 0.63em;
  left: 0;
  border-radius: 50%;
  background: var(--brand-primary);
}

.featured li::before {
  background: var(--brand-dark);
}

.pricing-section {
  background: var(--brand-light);
}

.pricing-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(220, 141, 34, 0.22);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-copy,
.pricing-facts {
  padding: 38px 28px;
}

.pricing-copy p:not(.eyebrow),
.pricing-facts p {
  color: var(--ink-soft);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration-color: var(--brand-primary);
  text-underline-offset: 6px;
}

.pricing-facts {
  color: var(--white);
  background:
    linear-gradient(rgba(25, 135, 84, 0.92), rgba(25, 135, 84, 0.92)),
    var(--brand-accent);
}

.pricing-facts p {
  color: rgba(255, 255, 255, 0.72);
}

.price-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #d9f7e7;
  font-size: 0.85rem;
  font-weight: 850;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.mini-badges span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  gap: 20px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(34, 39, 43, 0.07);
}

.card-image-wrap {
  aspect-ratio: 4 / 3;
  max-width: 800px;
  overflow: hidden;
  background: #e7e1d8;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-body {
  padding: 24px;
}

.team-card .role {
  min-height: 2.5em;
  margin-bottom: 10px;
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card-body > p:not(.role) {
  min-height: 5em;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.team-card-body a {
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration-color: var(--brand-primary);
  text-underline-offset: 4px;
}

.trust-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
}

.trust-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-accent);
  font-weight: 900;
}

.trust-note p {
  margin: 0;
  color: var(--ink-soft);
}

.trust-note strong {
  color: var(--brand-dark);
}

.process-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(220, 141, 34, 0.08) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--brand-light);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-grid article {
  padding: 28px;
  border: 1px solid rgba(220, 141, 34, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 850;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.final-cta {
  padding-top: 0;
  background: var(--brand-light);
}

.cta-panel {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 42px 28px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.15), transparent 25%),
    var(--brand-primary);
}

.cta-panel h2 {
  max-width: 800px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(34, 39, 43, 0.75);
}

.cta-panel .eyebrow {
  color: var(--brand-dark);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

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

.phone-link {
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  padding: 64px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--brand-dark);
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-brand .site-logo-img {
  padding: 0;
}

.footer-brand > img {
  box-sizing: content-box;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand p {
  margin-top: 18px;
}

.site-footer h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom a {
  margin: 0;
}

@media (min-width: 720px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .site-nav {
    display: flex;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

  .member-bar {
    grid-template-columns: auto 1fr;
  }

  .benefit-row,
  .process-grid,
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .pricing-panel {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .pricing-copy,
  .pricing-facts {
    padding: 56px;
  }

  .cta-panel {
    grid-template-columns: 1fr auto;
    padding: 58px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 126px 0;
  }

  .split-heading {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
  }

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

  .service-card {
    padding: 30px;
  }
}

@media (max-width: 719px) {
  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .site-logo-img {
    width: 170px;
  }

  .hero-card {
    max-width: 520px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* --- Safety guard: original assets must not be distorted or oversized --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-logo-img,
.logo img,
.brand img,
.header-logo,
.footer-logo {
  max-width: 220px !important;
  max-height: 64px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.hero-img,
.hero img,
.hero-media img,
.hero-visual img {
  width: 100%;
  max-width: 680px;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-media,
.hero-visual,
.visual-card,
.image-card,
.asset-frame {
  max-width: 720px;
  overflow: hidden;
}

.card-img,
.card img,
.service-card img,
.benefit-card img,
.asset-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
}

img[src$=".svg"] {
  object-fit: contain !important;
  height: auto !important;
}

section img:not(.site-logo-img):not(.hero-img):not(.card-img):not(.asset-img) {
  max-width: min(100%, 640px);
  height: auto;
}

@media (max-width: 768px) {
  .hero-img,
  .hero img,
  .hero-media img,
  .hero-visual img {
    max-height: 360px;
  }

  .site-logo-img,
  .logo img,
  .brand img,
  .header-logo,
  .footer-logo {
    max-width: 180px !important;
    max-height: 52px !important;
  }

  .card-img,
  .card img,
  .service-card img,
  .benefit-card img,
  .asset-img {
    max-height: 240px;
  }
}
