:root {
  --ink: #10201d;
  --muted: #60706c;
  --surface: #ffffff;
  --soft: #f3f7f4;
  --line: #dce6e1;
  --deep: #071715;
  --teal: #009b75;
  --teal-dark: #00765b;
  --blue: #2f67d8;
  --amber: #d4931f;
  --coral: #d95c4c;
  --shadow: 0 18px 45px rgba(12, 31, 27, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(47, 103, 216, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--deep);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 230, 225, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(15, 37, 32, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--deep);
  border: 2px solid rgba(0, 155, 117, 0.45);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  max-width: 260px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: #324540;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--teal-dark);
  background: #e9f5f1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: var(--deep);
  border-radius: var(--radius);
  font-weight: 700;
}

.header-cta svg,
.card-icon svg,
.package-card li svg,
.contact-tiles svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 18, 16, 0.94), rgba(5, 18, 16, 0.72) 48%, rgba(5, 18, 16, 0.28)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 42%;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 155, 117, 0.36), rgba(0, 155, 117, 0));
  pointer-events: none;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 180ms ease-out;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 76px 0 96px;
}

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

.hero-copy .eyebrow {
  animation: fadeRise 560ms ease both;
}

.hero h1 {
  animation: fadeRise 680ms ease 90ms both;
}

.hero-text {
  animation: fadeRise 720ms ease 170ms both;
}

.hero-actions {
  animation: fadeRise 760ms ease 230ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #92ead4;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  color: var(--teal-dark);
  background: #eef8f4;
  border-color: #cce6dd;
}

.hero-proof {
  max-width: 660px;
}

.hero-proof div {
  min-width: 150px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  animation: fadeRise 700ms ease both;
}

.hero-proof div:nth-child(2) {
  animation-delay: 120ms;
}

.hero-proof div:nth-child(3) {
  animation-delay: 220ms;
}

.hero-proof strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.intro-band {
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: #fff;
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  white-space: nowrap;
}

.trust-track span {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.intro-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-grid .section-kicker {
  color: var(--teal-dark);
}

.intro-grid h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.25;
}

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

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

.conversion-lab {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #ffffff, #f5faf7);
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.lab-copy .section-kicker,
.conversion-lab .section-kicker {
  color: var(--teal-dark);
}

.lab-copy h2,
.seo-card h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.12;
}

.lab-copy p,
.seo-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.lab-panel {
  min-height: 360px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(7, 23, 21, 0.96), rgba(0, 118, 91, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease;
}

.lab-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.lab-browser span {
  width: 9px;
  height: 9px;
  background: #92ead4;
  border-radius: 999px;
}

.lab-browser span:nth-child(2) {
  background: var(--amber);
}

.lab-browser span:nth-child(3) {
  background: var(--coral);
}

.lab-browser strong {
  margin-left: 8px;
  font-size: 0.86rem;
}

.lab-score {
  display: grid;
  margin: 34px auto 26px;
  width: 190px;
  height: 190px;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0 50%, transparent 51%),
    conic-gradient(from 220deg, #92ead4, var(--teal), rgba(255, 255, 255, 0.18));
  border-radius: 999px;
}

.lab-score span {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.lab-score small {
  max-width: 110px;
  margin-top: -36px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-weight: 800;
}

.lab-bars {
  display: grid;
  gap: 10px;
}

.lab-bars i {
  display: block;
  height: 12px;
  width: var(--w);
  background: linear-gradient(90deg, #92ead4, rgba(255, 255, 255, 0.58));
  border-radius: 999px;
  animation: barGrow 900ms ease both;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.conversion-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(15, 37, 32, 0.06);
}

.conversion-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--teal-dark);
  background: #e7f5ef;
  border-radius: var(--radius);
}

.conversion-grid svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conversion-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.conversion-grid p {
  margin: 0;
  color: var(--muted);
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading .section-kicker {
  color: var(--teal-dark);
}

.section-heading h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.14;
}

.section-heading p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.service-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.feature-card,
.service-card,
.package-card,
.testimonial-card,
.process-item,
.portfolio-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 25px rgba(15, 37, 32, 0.06);
}

.feature-card,
.service-card,
.package-card,
.testimonial-card {
  padding: 24px;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--teal-dark);
  background: #e7f5ef;
  border-radius: var(--radius);
}

.feature-card h3,
.service-card h3,
.package-card h3,
.process-item h3,
.portfolio-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.feature-card p,
.service-card p,
.portfolio-card p,
.process-item p,
.testimonial-card p,
.package-card li,
.faq-list p,
.lead-copy p,
.site-footer p {
  color: var(--muted);
}

.service-card {
  min-height: 310px;
}

.service-card ul,
.package-card ul {
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.service-card li {
  padding: 8px 0;
  color: #43554f;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.service-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

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

.portfolio-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.portfolio-card:hover,
.service-card:hover,
.feature-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 37, 32, 0.12);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--deep);
}

.portfolio-card div {
  padding: 22px;
}

.portfolio-card span,
.package-card > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.metric-row small {
  padding: 5px 9px;
  color: var(--teal-dark);
  background: #eaf7f2;
  border-radius: var(--radius);
  font-weight: 800;
}

.process-band {
  color: #fff;
  background: var(--deep);
}

.process-band .section-kicker {
  color: #92ead4;
}

.process-band .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-item {
  min-height: 220px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.process-item span {
  display: inline-block;
  margin-bottom: 42px;
  color: #92ead4;
  font-weight: 900;
}

.process-item p {
  color: rgba(255, 255, 255, 0.72);
}

.package-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
}

.package-card strong {
  display: block;
  margin: 4px 0 18px;
  font-size: 1.35rem;
}

.package-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.package-card li svg {
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--teal);
}

.package-card .btn {
  margin-top: auto;
}

.testimonial-card {
  margin: 0;
}

.testimonial-card p {
  margin: 0;
  font-size: 1.05rem;
}

.testimonial-card footer {
  margin-top: 22px;
}

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

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

.faq-band {
  background: #fbfcfb;
}

.industry-band {
  background:
    linear-gradient(135deg, #f5faf7, #ffffff);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: center;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.industry-cloud span {
  padding: 10px 12px;
  color: #24413a;
  background: #eef8f4;
  border: 1px solid #d2e9df;
  border-radius: var(--radius);
  font-weight: 800;
  animation: floatSoft 4.8s ease-in-out infinite;
}

.industry-cloud span:nth-child(2n) {
  animation-delay: 500ms;
}

.industry-cloud span:nth-child(3n) {
  animation-delay: 900ms;
}

.seo-stack {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 23, 21, 0.98), rgba(13, 66, 57, 0.94));
}

.seo-stack .section-kicker {
  color: #92ead4;
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.seo-card,
.seo-list div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.seo-card {
  padding: 28px;
}

.seo-card p {
  color: rgba(255, 255, 255, 0.76);
}

.seo-card .btn {
  margin-top: 12px;
}

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

.seo-list div {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.seo-list span {
  color: rgba(255, 255, 255, 0.72);
}

.seo-list strong {
  color: #fff;
  font-size: 1.3rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 44px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.lead-section {
  padding: 94px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 23, 21, 0.96), rgba(14, 66, 56, 0.94)),
    var(--deep);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1.14fr;
  gap: 38px;
  align-items: start;
}

.lead-copy h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.14;
}

.lead-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-tiles {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-tiles a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-weight: 750;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: #344741;
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfb;
  border: 1px solid #cfded8;
  border-radius: var(--radius);
}

.lead-form textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-success {
  padding: 12px 14px;
  color: #0e563f;
  background: #e5f8ef;
  border: 1px solid #bde8d2;
  border-radius: var(--radius);
  font-weight: 800;
}

.site-footer {
  padding: 64px 0 96px;
  color: rgba(255, 255, 255, 0.76);
  background: #050f0e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
}

.footer-brand {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.96rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
}

.site-footer a:hover {
  color: #92ead4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  gap: 10px;
}

.sticky-actions a {
  padding: 11px 14px;
  color: #fff;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barGrow {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .service-grid,
  .package-grid,
  .process-list,
  .conversion-grid,
  .seo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta span {
    display: none;
  }

  .site-nav {
    top: 70px;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(5, 18, 16, 0.94), rgba(5, 18, 16, 0.68)),
      var(--hero-image);
    background-position: center;
  }

  .hero-inner {
    padding: 58px 0 86px;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof div {
    min-width: calc(50% - 8px);
    flex: 1;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .intro-grid h2,
  .section-heading h2,
  .lead-copy h2 {
    font-size: 1.82rem;
  }

  .section-block,
  .lead-section {
    padding: 62px 0;
  }

  .feature-grid,
  .service-grid,
  .portfolio-grid,
  .package-grid,
  .testimonial-grid,
  .process-list,
  .faq-layout,
  .lead-grid,
  .lab-grid,
  .conversion-grid,
  .industry-layout,
  .seo-grid,
  .seo-list,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .process-item {
    min-height: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-actions a {
    flex: 1;
    text-align: center;
  }
}
