:root {
  --ink: #111827;
  --muted: #526072;
  --line: #dbe3ec;
  --paper: #fbfcfd;
  --soft: #eef4f8;
  --brand: #176b87;
  --brand-strong: #0f4d61;
  --accent: #d97706;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 253, 0.86);
  border-bottom: 1px solid rgba(219, 227, 236, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 252, 253, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.brand img {
  display: block;
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.nav-cta,
.button {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--brand);
}

.button.secondary {
  color: var(--brand-strong);
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-cta:hover,
.button:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--brand-strong);
}

.button.secondary:hover {
  border-color: rgba(23, 107, 135, 0.36);
}

.section {
  position: relative;
  padding: 96px 0;
}

.tinted {
  background: var(--soft);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section:not(.hero):not(.tinted):not(.contact-section) {
  background:
    radial-gradient(circle at 88% 18%, rgba(23, 107, 135, 0.08), transparent 28%),
    linear-gradient(115deg, rgba(217, 119, 6, 0.035) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: auto, 34px 34px, auto;
}

.tinted {
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 119, 6, 0.07), transparent 24%),
    linear-gradient(90deg, rgba(23, 107, 135, 0.04) 1px, transparent 1px),
    var(--soft);
  background-size: auto, 36px 36px, auto;
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #10212b;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(16, 33, 43, 0.74), rgba(16, 33, 43, 0));
}

.hero::after {
  position: absolute;
  top: 18%;
  right: min(9vw, 120px);
  width: 260px;
  height: 260px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0));
  border-radius: 50%;
  filter: blur(2px);
  animation: softPulse 7s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 25, 0.92), rgba(8, 18, 25, 0.58)),
    image-set(
      url("hero-ai-automation.webp") type("image/webp"),
      url("hero-ai-automation.png") type("image/png")
    ) center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.section h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

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

.signal-panel {
  display: grid;
  gap: 12px;
}

.signal-panel div {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.signal-panel div::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 48%, transparent 54%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.signal-panel div:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.signal-panel div:hover::before {
  transform: translateX(120%);
}

.signal-panel strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.signal-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.workflow-box {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.workflow-glow {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.72;
  pointer-events: none;
}

.glow-a {
  top: 70px;
  left: 0;
  background: rgba(23, 107, 135, 0.58);
  animation: floaty 7s ease-in-out infinite;
}

.glow-b {
  right: 0;
  bottom: 50px;
  background: rgba(217, 119, 6, 0.44);
  animation: floaty 8.5s ease-in-out infinite;
}

.workflow-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.workflow-header span,
.flow-card span {
  color: rgba(255, 255, 255, 0.68);
}

.workflow-header strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
}

.workflow-header em {
  padding: 6px 10px;
  color: #d1fae5;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(209, 250, 229, 0.28);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
}

.flow-card {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.62);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.flow-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 42, 0.76);
  transform: translateX(4px);
}

.flow-card strong,
.flow-card span {
  display: block;
}

.flow-card strong {
  margin-bottom: 4px;
}

.workflow-line {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 30px;
  margin: 8px auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.workflow-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(245, 158, 11, 0.95), rgba(255, 255, 255, 0));
  animation: linePulse 2.4s ease-in-out infinite;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 82% 26%, rgba(245, 158, 11, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px),
    linear-gradient(115deg, transparent 0 54%, rgba(23, 107, 135, 0.08) 54.2%, transparent 54.7%),
    linear-gradient(145deg, transparent 0 62%, rgba(217, 119, 6, 0.1) 62.2%, transparent 62.7%);
}

.about-stars::before,
.about-stars::after {
  position: absolute;
  right: min(8vw, 110px);
  content: "";
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.about-stars::before {
  top: 22%;
  width: 210px;
  height: 72px;
}

.about-stars::after {
  top: 30%;
  width: 300px;
  height: 104px;
  border-color: rgba(217, 119, 6, 0.12);
}

.rich-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.rich-copy p:first-child {
  margin-top: 0;
}

#pain-points {
  overflow: hidden;
}

#pain-points::before {
  position: absolute;
  top: 70px;
  right: 6vw;
  width: 280px;
  height: 280px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(23, 107, 135, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 107, 135, 0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 70%);
  opacity: 0.46;
}

.service-grid,
.expertise-grid,
.problem-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

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

.process-no {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 900;
}

#process {
  overflow: hidden;
}

#process::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(23, 107, 135, 0.06) 48.1%, transparent 48.5%),
    linear-gradient(45deg, transparent 0 58%, rgba(217, 119, 6, 0.05) 58.1%, transparent 58.5%);
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.stack-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--brand-strong);
  font-size: 0.94rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stack-row span:hover {
  border-color: rgba(23, 107, 135, 0.34);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

#expertise {
  overflow: hidden;
}

#expertise::before {
  position: absolute;
  top: 80px;
  right: 8vw;
  width: 360px;
  height: 180px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(23, 107, 135, 0.1);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.card,
.project,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.card:hover {
  border-color: rgba(23, 107, 135, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card:hover::before {
  transform: scaleX(1);
}

.service-feature {
  color: var(--white);
  background: #10212b;
  border-color: rgba(16, 33, 43, 0.18);
}

.service-feature::before {
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  transform: scaleX(1);
}

.service-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.service-mark {
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 6px;
  align-items: end;
  width: max-content;
  margin-bottom: 18px;
}

.service-mark span {
  display: block;
  width: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.service-mark span:nth-child(1) {
  height: 18px;
  opacity: 0.62;
}

.service-mark span:nth-child(2) {
  height: 28px;
  opacity: 0.82;
}

.service-mark span:nth-child(3) {
  height: 40px;
}

.card h3,
.project h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.card p,
.project p {
  margin: 0;
  color: var(--muted);
}

.project-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

#projects {
  overflow: hidden;
}

#projects::before {
  position: absolute;
  top: 130px;
  left: max(20px, calc((100vw - 1120px) / 2 - 70px));
  width: 2px;
  height: calc(100% - 220px);
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(23, 107, 135, 0.22), rgba(217, 119, 6, 0.18), transparent);
}

#projects::after {
  position: absolute;
  right: 8vw;
  bottom: 100px;
  width: 360px;
  height: 360px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(23, 107, 135, 0.08), transparent 64%);
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 28px;
  padding: 28px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.project::after {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 240px;
  height: 240px;
  content: "";
  background: radial-gradient(circle, rgba(23, 107, 135, 0.1), rgba(23, 107, 135, 0));
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.project::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 0 999px 999px 0;
  opacity: 0;
  transform: scaleY(0.7);
  transition: opacity 240ms ease, transform 240ms ease;
}

.project:hover {
  border-color: rgba(23, 107, 135, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.project:hover::after {
  opacity: 1;
  transform: translate(-12px, 12px);
}

.project:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.project-topline span,
.project-topline em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  border-radius: 999px;
}

.project-topline span {
  color: var(--brand-strong);
  background: #e5f1f4;
}

.project-topline em {
  color: #8a4d04;
  background: #fef3c7;
}

.project-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}

.project-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.project-flow i {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.impact-list {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.impact-list li {
  position: relative;
  padding: 12px 14px;
  padding-left: 34px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
  transition: background 180ms ease, transform 180ms ease;
}

.impact-list li::before {
  position: absolute;
  top: 19px;
  left: 14px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.project:hover .impact-list li {
  background: #e5f1f4;
}

.impact-list li:hover {
  transform: translateX(3px);
}

.impact-list strong {
  color: var(--ink);
}

.answer-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(23, 107, 135, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: auto, 40px 40px, auto;
}

.answer-stack {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

details[open] {
  border-color: rgba(23, 107, 135, 0.28);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

summary::marker {
  color: var(--brand);
}

details p {
  animation: detailsReveal 260ms ease;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background: #10212b;
}

.contact-section .eyebrow {
  color: #f59e0b;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
}

.contact-grid p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-card:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.contact-card a {
  font-weight: 800;
  color: var(--brand-strong);
}

.contact-card span {
  color: var(--muted);
}

.contact-form {
  margin-top: 42px;
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.tally-card {
  overflow: hidden;
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.form-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.tally-embed {
  min-height: 360px;
}

.tally-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 6px;
}

.footer {
  padding: 24px 0;
  color: var(--muted);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-16px, -10px, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes detailsReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(-100%);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .hero-grid,
  .two-column,
  .project,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .expertise-grid,
  .problem-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 64px;
  }

  .brand img {
    width: 154px;
  }

  .nav-cta {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .expertise-grid,
  .problem-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .project,
  .card,
  .contact-card,
  .contact-form,
  .workflow-box {
    padding: 20px;
  }

  .form-heading {
    display: grid;
  }
}
