:root {
  --green: #4ba72d;
  --green-dark: #3d8c25;
  --lemon: #d7df00;
  --lemon-dark: #c4ca00;
  --ink: #333333;
  --body: #555555;
  --muted: #747474;
  --soft: #f7f7f7;
  --sage: #f3f7ea;
  --dark: #123f25;
  --deep-green: #0f3f2a;
  --white: #ffffff;
  --line: rgba(51, 51, 51, 0.12);
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "DM Sans", "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.24;
  font-weight: 800;
}

h3 {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 750;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.045);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 198px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  opacity: 0.78;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
  opacity: 1;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  border: 0;
  border-radius: 4px;
  color: #123f25;
  background: var(--lemon);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  background: var(--lemon-dark);
  box-shadow: 0 12px 24px rgba(215, 223, 0, 0.22);
}

.button.secondary {
  color: #123f25;
  background: var(--lemon);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(18, 63, 37, 0.95), rgba(32, 82, 56, 0.72)), var(--dark);
}

.hero::after,
.page-hero::after,
.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(101, 197, 71, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 115px 28px 96px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1,
.page-hero h1,
.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.hero p {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero .button {
  margin-top: 28px;
}

.section {
  padding: 84px 28px;
}

.section.alt {
  background: var(--soft);
}

.section.dark-section {
  background: var(--dark);
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title p,
.copy-stack p {
  margin-top: 18px;
}

.accent {
  width: 60px;
  height: 3px;
  margin: 16px 0 0;
  background: var(--green);
}

.center .accent {
  margin-inline: auto;
}

.placeholder {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(75, 167, 45, 0.16), rgba(75, 167, 45, 0.03)),
    linear-gradient(135deg, #e9efe7, #ffffff);
  box-shadow: var(--shadow);
}

.photo-frame {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
  margin: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero.has-image {
  background-image:
    linear-gradient(90deg, rgba(18, 63, 37, 0.96), rgba(18, 63, 37, 0.7), rgba(18, 63, 37, 0.18)),
    url("assets/partnership.webp");
  background-size: cover;
  background-position: center;
}

.page-image-hero {
  background-size: cover;
  background-position: center;
}

.about-image-hero {
  background-image:
    linear-gradient(90deg, rgba(18, 63, 37, 0.96), rgba(18, 63, 37, 0.72), rgba(18, 63, 37, 0.2)),
    url("assets/about-hero.webp");
}

.services-image-hero {
  background-image:
    linear-gradient(90deg, rgba(18, 63, 37, 0.96), rgba(18, 63, 37, 0.72), rgba(18, 63, 37, 0.2)),
    url("assets/it-support.webp");
}

.industries-image-hero {
  background-image:
    linear-gradient(90deg, rgba(18, 63, 37, 0.96), rgba(18, 63, 37, 0.72), rgba(18, 63, 37, 0.2)),
    url("assets/financial-services.webp");
}

.contact-image-hero {
  background-image:
    linear-gradient(90deg, rgba(18, 63, 37, 0.96), rgba(18, 63, 37, 0.72), rgba(18, 63, 37, 0.2)),
    url("assets/conversation.webp");
}

.legal-image-hero {
  min-height: 650px;
  background-image:
    linear-gradient(90deg, rgba(18, 63, 37, 0.98), rgba(18, 63, 37, 0.78), rgba(18, 63, 37, 0.16)),
    url("assets/legal-it-hero-clean.png");
  background-position: center right;
}

.legal-hero-inner {
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lemon) !important;
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.hero-actions .button {
  margin-top: 0;
}

.text-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  border-bottom: 2px solid var(--green);
}

.hero-proof {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(18, 63, 37, 0.78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-proof p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.hero-proof ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  color: var(--white);
  font-weight: 700;
}

.hero-proof li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lemon);
}

.offer-strip {
  padding: 20px 28px;
  background: var(--lemon);
}

.offer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.offer-strip p {
  color: var(--deep-green);
  font-weight: 700;
}

.offer-strip .button {
  min-height: 42px;
  padding: 11px 22px;
  color: var(--white);
  background: var(--dark);
  white-space: nowrap;
}

.offer-strip .button:hover {
  background: var(--deep-green);
  box-shadow: 0 12px 24px rgba(18, 63, 37, 0.22);
}

.privacy-image-hero {
  background-image:
    linear-gradient(90deg, rgba(18, 63, 37, 0.97), rgba(18, 63, 37, 0.78), rgba(18, 63, 37, 0.22)),
    url("assets/privacy-hero.png");
}

.placeholder.dark {
  background:
    linear-gradient(135deg, rgba(75, 167, 45, 0.35), rgba(26, 26, 26, 0.2)),
    linear-gradient(135deg, #17351f, #1a1a1a);
}

.placeholder span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 18px;
}

.placeholder:not(.dark) span {
  color: var(--green-dark);
}

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

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

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

.card {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card p {
  margin-top: 12px;
  font-size: 15px;
}

.legal-service-grid .card {
  min-height: 260px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  padding: 34px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.step:last-child {
  border-right: 0;
}

.step h3 {
  color: var(--green);
}

.step p,
.dark-section p {
  color: rgba(255, 255, 255, 0.78);
}

.legal-checklist {
  display: grid;
  gap: 26px;
}

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

.checklist-grid article,
.faq-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.checklist-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.checklist-grid li {
  color: var(--body);
  line-height: 1.6;
}

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

.faq-grid p {
  margin-top: 12px;
}

.legal-faq-section {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-section {
  background: linear-gradient(180deg, var(--white), #f8faf5);
}

.testimonial-card {
  max-width: 920px;
  padding: clamp(30px, 5vw, 48px);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-mark {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 18px 0 0;
}

.testimonial-card blockquote p {
  color: var(--ink);
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 750;
  line-height: 1.35;
}

.testimonial-author {
  margin-top: 18px;
  color: var(--deep-green);
  font-weight: 800;
}

.testimonial-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.cta-band {
  padding: 58px 28px;
  color: var(--deep-green);
  background: var(--sage);
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: var(--deep-green);
}

.cta-band p {
  margin: 10px 0 20px;
}

.cta-band .button,
.cta-band button {
  color: #123f25 !important;
  background: var(--lemon);
  -webkit-text-fill-color: #123f25;
}

.cta-band .button:hover,
.cta-band button:hover {
  color: #123f25 !important;
  background: var(--lemon-dark);
  -webkit-text-fill-color: #123f25;
}

.insights-hero {
  min-height: 460px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-card a {
  display: grid;
  height: 100%;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card div {
  padding: 28px;
}

.article-card h2 {
  margin-top: 10px;
  font-size: 25px;
}

.article-card p:last-child {
  margin-top: 14px;
}

.article-hero {
  padding: 70px 28px 58px;
  background: var(--sage);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.article-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(36px, 4.7vw, 56px);
}

.article-summary {
  max-width: 720px;
  margin-top: 20px;
  font-size: 19px;
}

.article-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-body {
  max-width: 820px;
}

.article-body p,
.article-body li {
  font-size: 18px;
}

.article-body p + p,
.article-body ul + p,
.article-body p + ul {
  margin-top: 18px;
}

.article-body h2 {
  margin-top: 48px;
  font-size: clamp(28px, 3vw, 36px);
}

.article-body h3 {
  margin-top: 28px;
}

.article-body ul {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--body);
  line-height: 1.75;
}

.article-body strong {
  color: var(--ink);
}

.article-cta {
  margin: 52px 0;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--dark);
}

.article-cta h2,
.article-cta p {
  color: var(--white);
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta .button {
  margin-top: 24px;
}

.source-note {
  margin-top: 44px;
  color: var(--muted);
  font-size: 14px !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 28px;
  background: linear-gradient(135deg, #f7f7f7, #edf6ea);
  text-align: center;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 17px;
}

.team-layout {
  display: grid;
  gap: 22px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  padding: 24px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.avatar {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #1f5e34);
  font-size: 32px;
  font-weight: 800;
}

.photo-avatar {
  overflow: hidden;
  padding: 0;
}

.photo-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-card .role {
  margin: 8px 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card p:last-child {
  font-size: 14px;
}

.team-grid .team-card {
  min-height: auto;
  padding: 22px 16px;
}

.team-grid .avatar {
  width: 86px;
  height: 86px;
  margin-bottom: 14px;
  font-size: 24px;
}

.team-grid .team-card p:not(.role) {
  color: var(--body);
  font-size: 13px;
  line-height: 1.6;
}

.service-band {
  border-bottom: 1px solid var(--line);
}

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

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.industry-card .placeholder {
  min-height: 190px;
  border-radius: 0;
  box-shadow: none;
}

.industry-card .photo-frame {
  min-height: 190px;
  border-radius: 0;
  box-shadow: none;
}

.industry-card .photo-frame img {
  min-height: 190px;
}

.industry-card div:last-child {
  padding: 24px;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), #f8faf5);
}

.contact-layout {
  display: grid;
  justify-items: center;
}

.contact-form-panel {
  width: min(100%, 880px);
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

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

.form-status {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.form-status h3 {
  margin-bottom: 6px;
}

.form-status p {
  margin: 0;
}

.form-status-success {
  color: var(--deep-green);
  background: var(--sage);
  border-color: rgba(75, 167, 45, 0.24);
}

.form-status-error {
  color: #6d4f00;
  background: #fff8d6;
  border-color: rgba(215, 223, 0, 0.5);
}

.contact-card {
  padding: 30px;
  background: var(--soft);
  border-radius: var(--radius);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-list a,
.contact-list span {
  color: var(--body);
  line-height: 1.55;
}

.policy {
  max-width: 880px;
}

.policy h2 {
  margin-top: 38px;
  font-size: 26px;
}

.policy p,
.policy ul {
  margin-top: 14px;
}

.policy li {
  color: var(--body);
  line-height: 1.7;
}

.site-footer {
  padding: 42px 28px 22px;
  color: #cccccc;
  background: var(--dark);
}

.footer-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  margin: 0 auto;
}

.site-footer img {
  width: 177px;
}

.site-footer p,
.site-footer a {
  color: #cccccc;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.copyright {
  width: min(100%, var(--max));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .split,
  .split.reverse,
  .contact-layout,
  .legal-hero-inner,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.three,
  .card-grid.four,
  .steps,
  .industry-grid,
  .checklist-grid,
  .faq-grid,
  .team-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .team-layout .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .step:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 760px) {
  .team-layout .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 31px;
  }

  .site-header {
    grid-template-columns: 1fr;
    padding-inline: 18px;
    padding-block: 12px;
    gap: 10px;
    min-height: auto;
    overflow: hidden;
    justify-items: center;
  }

  .brand img {
    width: 168px;
  }

  .header-cta {
    display: none;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 10px 20px;
    padding-bottom: 4px;
    font-size: 13px;
  }

  .section,
  .hero-inner,
  .page-hero {
    padding-inline: 20px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1,
  .hero p {
    max-width: 340px;
  }

  .legal-image-hero {
    min-height: auto;
  }

  .hero-proof {
    padding: 22px;
  }

  .offer-strip .button {
    width: 100%;
    white-space: normal;
  }

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

  form {
    grid-template-columns: 1fr;
  }

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

  .site-footer img {
    width: 177px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
