:root {
  color-scheme: dark;
  --bg: #081116;
  --surface: #111d24;
  --surface-raised: #162630;
  --surface-strong: #0d1a21;
  --ink: #f4fbfb;
  --muted: #a3b4bc;
  --line: #263b45;
  --accent: #28c7bd;
  --accent-dark: #7ce7dd;
  --accent-soft: #123e43;
  --warm: #ff8a5b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --content: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(38, 59, 69, 0.82);
  background: rgba(8, 17, 22, 0.9);
  backdrop-filter: blur(16px);
}

.site-nav {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px dashed rgba(40, 199, 189, 0.6);
  border-radius: var(--radius);
  color: var(--accent-dark);
  background: linear-gradient(135deg, #11242c, var(--accent-soft));
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 30px);
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-links a[aria-current="page"] {
  color: var(--accent-dark);
}

.hero {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

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

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

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-intro {
  max-width: 56ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #061315;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(40, 199, 189, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(40, 199, 189, 0.5);
  color: var(--accent);
}

.hero-points {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-points li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 29, 36, 0.84);
}

.hero-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  border: 1px solid rgba(40, 199, 189, 0.24);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(40, 199, 189, 0.16), rgba(255, 138, 91, 0.08) 42%, rgba(17, 29, 36, 0.94) 100%),
    var(--surface-raised);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 251, 251, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-panel header,
.panel-preview,
.panel-metrics {
  position: relative;
  z-index: 1;
}

.hero-panel header p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel header strong {
  display: block;
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1;
}

.panel-preview {
  min-height: 210px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(8, 17, 22, 0.56);
}

.preview-line,
.preview-button,
.preview-card {
  border-radius: var(--radius);
}

.preview-line {
  grid-column: 1 / 3;
  height: 12px;
  background: rgba(244, 251, 251, 0.2);
}

.preview-line.wide {
  grid-column: 1 / -1;
  width: 78%;
  background: var(--accent);
}

.preview-button {
  width: 86px;
  height: 34px;
  background: var(--warm);
}

.preview-card {
  min-height: 82px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  background: linear-gradient(180deg, rgba(124, 231, 221, 0.18), rgba(255, 255, 255, 0.04));
}

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

.panel-metrics article {
  min-height: 112px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(8, 17, 22, 0.58);
}

.panel-metrics strong,
.panel-metrics span {
  display: block;
}

.panel-metrics strong {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 1.2rem;
}

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

.section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro-strip {
  width: 100%;
  max-width: none;
  padding: 28px max(20px, calc((100% - 1120px) / 2));
  color: var(--ink);
  background: #0e2028;
}

.intro-strip p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 750;
}

.section-header {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-header p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.page-hero {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0 clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: end;
}

.page-hero .section-header {
  max-width: 780px;
  margin-bottom: 0;
}

.portfolio-summary {
  display: grid;
  gap: 12px;
}

.portfolio-summary article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}

.portfolio-summary strong,
.portfolio-summary span {
  display: block;
}

.portfolio-summary strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.portfolio-summary span {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-grid,
.package-grid,
.proof-grid,
.work-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.package-card,
.proof-grid article,
.work-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.service-card {
  min-height: 250px;
  padding: 22px;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-weight: 900;
}

.service-card p,
.package-card p,
.proof-grid p,
.work-card p,
.contact-copy p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 20px 20px 20px 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #071217;
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.process-list span {
  color: var(--muted);
}

.proof-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1120px) / 2));
  padding-left: max(20px, calc((100% - 1120px) / 2));
  background: var(--surface-strong);
}

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

.proof-grid article {
  padding: 24px;
}

.proof-grid article:first-child {
  border-top: 4px solid var(--warm);
}

.proof-grid article:nth-child(2) {
  border-top: 4px solid var(--accent);
}

.proof-grid article:nth-child(3) {
  border-top: 4px solid #5468ff;
}

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

.package-card {
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(40, 199, 189, 0.48);
  background: linear-gradient(180deg, #172a33 0%, #12343a 100%);
  box-shadow: var(--shadow);
}

.package-label {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: var(--radius);
  padding: 6px 9px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.package-card li + li {
  margin-top: 8px;
}

.pricing-hero {
  align-items: center;
}

.deal-summary {
  border: 1px solid rgba(255, 138, 91, 0.38);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 138, 91, 0.18), rgba(40, 199, 189, 0.08)),
    var(--surface);
  box-shadow: var(--shadow);
}

.deal-badge,
.pricing-label {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: var(--radius);
  padding: 6px 9px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-badge {
  color: #130c08;
  background: var(--warm);
}

.deal-summary strong,
.deal-summary span {
  display: block;
}

.deal-summary strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.deal-summary span {
  color: var(--muted);
}

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

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.pricing-card.featured {
  border-color: rgba(255, 138, 91, 0.58);
  background: linear-gradient(180deg, #1d2b30 0%, #173239 100%);
  box-shadow: var(--shadow);
}

.pricing-label {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.pricing-card.featured .pricing-label,
.deal-addon {
  border-color: rgba(255, 138, 91, 0.5);
}

.pricing-card.featured .pricing-label {
  color: #130c08;
  background: var(--warm);
}

.pricing-card header p:not(.pricing-label) {
  color: var(--muted);
}

.price {
  margin: 22px 0;
  display: grid;
  gap: 4px;
}

.price strong {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
}

.price s {
  width: max-content;
  color: var(--muted);
  font-weight: 900;
  text-decoration-color: var(--warm);
  text-decoration-thickness: 2px;
}

.price small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.deal-price strong {
  color: var(--accent-dark);
}

.pricing-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-card li + li {
  margin-top: 8px;
}

.pricing-card .button {
  width: 100%;
  align-self: end;
}

.pricing-addons {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1120px) / 2));
  padding-left: max(20px, calc((100% - 1120px) / 2));
  background: var(--surface-strong);
}

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

.addon-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.addon-grid h3 {
  margin-bottom: 16px;
}

.addon-grid p {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
}

.addon-grid s {
  color: var(--muted);
  text-decoration-color: var(--warm);
  text-decoration-thickness: 2px;
}

.addon-grid span {
  color: var(--muted);
}

.deal-addon {
  background:
    linear-gradient(135deg, rgba(255, 138, 91, 0.12), rgba(17, 29, 36, 0.94)),
    var(--surface);
}

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

.work-card {
  overflow: hidden;
}

.work-preview {
  --preview-accent: var(--accent);
  --preview-fill: rgba(124, 231, 221, 0.16);
  min-height: 270px;
  margin: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  background:
    linear-gradient(135deg, rgba(40, 199, 189, 0.18), rgba(8, 17, 22, 0.4)),
    #0b171d;
}

.warm-preview {
  --preview-accent: var(--warm);
  --preview-fill: rgba(255, 138, 91, 0.16);
}

.blue-preview {
  --preview-accent: #7d9bff;
  --preview-fill: rgba(125, 155, 255, 0.16);
}

.app-preview {
  --preview-accent: #d4b15f;
  --preview-fill: rgba(212, 177, 95, 0.16);
}

.browser-bar,
.work-line,
.work-block {
  border-radius: var(--radius);
}

.browser-bar {
  position: relative;
  grid-column: 1 / -1;
  height: 34px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  background: rgba(244, 251, 251, 0.06);
}

.browser-bar::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--preview-accent);
  box-shadow: 15px 0 0 rgba(244, 251, 251, 0.26), 30px 0 0 rgba(244, 251, 251, 0.18);
}

.work-line {
  grid-column: 1 / 4;
  height: 12px;
  background: rgba(244, 251, 251, 0.18);
}

.work-line.wide {
  grid-column: 1 / 6;
  height: 16px;
  background: var(--preview-accent);
}

.work-line.short {
  grid-column: 1 / 3;
}

.work-block {
  grid-column: span 2;
  min-height: 82px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  background: var(--preview-fill);
}

.work-block.tall {
  grid-column: span 3;
  min-height: 146px;
}

.work-preview figcaption {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-type {
  margin: 24px 24px 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0 24px 12px;
}

.work-card p:not(.work-type) {
  margin: 0 24px;
}

.work-card ul {
  margin: 22px 24px 26px;
  padding-left: 18px;
  color: var(--muted);
}

.work-card li + li {
  margin-top: 8px;
}

.improvement-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1120px) / 2));
  padding-left: max(20px, calc((100% - 1120px) / 2));
  background: var(--surface-strong);
}

.comparison-grid {
  display: grid;
  gap: 22px;
}

.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 30px);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.comparison-card > header {
  max-width: 760px;
  margin-bottom: 22px;
}

.comparison-type {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card > header p:not(.comparison-type) {
  color: var(--muted);
}

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

.compare-side {
  --compare-accent: var(--accent);
  --compare-fill: rgba(124, 231, 221, 0.14);
  min-height: 300px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  background:
    linear-gradient(135deg, rgba(40, 199, 189, 0.14), rgba(8, 17, 22, 0.28)),
    #0b171d;
}

.before-site {
  --compare-accent: #75838b;
  --compare-fill: rgba(117, 131, 139, 0.14);
  background:
    repeating-linear-gradient(135deg, rgba(244, 251, 251, 0.035) 0 8px, transparent 8px 16px),
    #111d24;
}

.shop-after {
  --compare-accent: var(--warm);
  --compare-fill: rgba(255, 138, 91, 0.16);
}

.brand-after {
  --compare-accent: #7d9bff;
  --compare-fill: rgba(125, 155, 255, 0.16);
}

.compare-side strong {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-browser,
.compare-line,
.compare-button,
.compare-box {
  border-radius: var(--radius);
}

.compare-browser {
  position: relative;
  grid-column: 1 / -1;
  height: 30px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  background: rgba(244, 251, 251, 0.06);
}

.compare-browser::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--compare-accent);
  box-shadow: 15px 0 0 rgba(244, 251, 251, 0.24), 30px 0 0 rgba(244, 251, 251, 0.16);
}

.compare-line {
  grid-column: 1 / 3;
  height: 12px;
  background: rgba(244, 251, 251, 0.18);
}

.compare-line.wide {
  grid-column: 1 / -1;
  height: 16px;
  background: var(--compare-accent);
}

.compare-line.short {
  grid-column: 1 / 2;
}

.compare-button {
  grid-column: 1 / 2;
  height: 34px;
  background: var(--compare-accent);
}

.compare-box {
  grid-column: span 1;
  min-height: 66px;
  border: 1px solid rgba(244, 251, 251, 0.1);
  background: var(--compare-fill);
}

.compare-box.large {
  grid-column: span 2;
  min-height: 120px;
}

.comparison-preview figcaption {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.result-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--muted);
  background: rgba(8, 17, 22, 0.42);
  font-weight: 700;
}

.portfolio-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.portfolio-cta header {
  max-width: 720px;
}

.portfolio-cta p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.contact-copy {
  max-width: 560px;
}

address {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--warm);
  color: var(--muted);
  background: rgba(255, 138, 91, 0.12);
  font-style: normal;
}

address strong {
  color: var(--ink);
}

.contact-form {
  padding: 26px;
  display: grid;
  gap: 10px;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #0b171d;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #71858e;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(40, 199, 189, 0.2);
  border-color: var(--accent);
}

.contact-form .button {
  margin-top: 10px;
  width: 100%;
}

.site-footer {
  width: var(--content);
  margin: 0 auto;
  padding: 32px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero,
  .page-hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 420px;
  }
}

@media (max-width: 780px) {
  :root {
    --content: min(100% - 28px, 1120px);
  }

  .site-nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .service-grid,
  .proof-grid,
  .package-grid,
  .pricing-grid,
  .addon-grid,
  .work-grid,
  .comparison-preview,
  .result-list,
  .portfolio-summary,
  .portfolio-cta {
    grid-template-columns: 1fr;
  }

  .portfolio-cta p {
    justify-content: flex-start;
  }

  .service-card {
    min-height: auto;
  }

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

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

@media (max-width: 480px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero-points {
    display: grid;
  }

  .process-list li {
    padding-left: 66px;
  }

  .process-list li::before {
    left: 14px;
  }

  .package-card,
  .pricing-card,
  .addon-grid article,
  .work-preview,
  .comparison-card,
  .compare-side,
  .contact-form {
    padding: 22px;
  }

  .work-card h3,
  .work-card p:not(.work-type),
  .work-card ul,
  .work-type {
    margin-right: 22px;
    margin-left: 22px;
  }
}
