:root {
  --page: #f7f7f2;
  --paper: #ffffff;
  --ink: #111418;
  --ink-2: #202934;
  --muted: #69737f;
  --line: #dfe2e6;
  --night: #080b0f;
  --night-2: #121922;
  --gold: #c9a55c;
  --gold-2: #f2d99d;
  --teal: #0f8f83;
  --teal-soft: #dff4f1;
  --danger: #b83222;
  --success: #0f6f52;
  --shadow: 0 24px 70px rgba(8, 11, 15, 0.12);
  --shadow-soft: 0 14px 34px rgba(8, 11, 15, 0.08);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
}

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

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

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
.brand,
.eyebrow,
.btn {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: 0;
}

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

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

.topbar {
  background: var(--night);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 10px 22px;
}

.topbar p {
  margin: 0;
  color: inherit;
}

.topbar-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 15, 0.92);
  backdrop-filter: blur(18px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

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

.brand img {
  width: auto;
  height: 46px;
  max-width: 176px;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.topbar a:hover,
.footer-grid a:hover {
  color: var(--gold-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 38px rgba(201, 165, 92, 0.24);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  padding: 84px 0 42px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.94) 0%, rgba(8, 11, 15, 0.84) 42%, rgba(8, 11, 15, 0.42) 100%),
    url("images/hero.webp") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 15, 0.72));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
}

.hero-copy {
  max-width: 920px;
  padding-top: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 76px;
  line-height: 0.98;
}

.hero-text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 34px 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

.point-card {
  padding: 20px;
  background: rgba(8, 11, 15, 0.34);
  backdrop-filter: blur(12px);
}

.point-card strong,
.hero-metrics strong {
  display: block;
  color: #fff;
}

.point-card span,
.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 760px;
}

.hero-metrics strong {
  font-size: 1.34rem;
}

.quote-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 0.9fr;
  gap: 16px;
  align-items: end;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-head {
  align-self: center;
  grid-row: 1 / 4;
}

.quote-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: var(--radius);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-head h2 {
  max-width: 260px;
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 1.72rem;
  line-height: 1.08;
}

.quote-head p {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 0;
}

.field label {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(201, 165, 92, 0.32);
  border-color: var(--gold);
}

.field textarea {
  min-height: 86px;
  resize: vertical;
}

.contact-fields,
.project-fields,
.message-field {
  grid-column: 2 / 4;
}

.budget-field {
  grid-column: 4;
}

.message-field {
  grid-row: 3;
}

.cta-stack {
  align-self: end;
  grid-column: 4;
  grid-row: 3;
}

.quote-card > .form-response {
  grid-column: 1 / -1;
}

#phone-error {
  display: none;
  color: var(--danger);
  font-size: 0.84rem;
}

.microcopy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.form-response {
  display: none;
  padding: 13px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-response-success {
  background: #e6f5ef;
  color: var(--success);
  border: 1px solid #b8dfcf;
}

.form-response-error {
  background: #fdebe7;
  color: var(--danger);
  border: 1px solid #efbaad;
}

.proof-strip,
.section-shell {
  padding: 88px 0;
}

.proof-strip {
  margin-top: -1px;
  padding: 34px 0;
  background: #f2f0e9;
  border-bottom: 1px solid var(--line);
}

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

.proof-grid article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 118px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 20, 24, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(8, 11, 15, 0.06);
}

.proof-grid span {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: #111418;
  border: 1px solid rgba(201, 165, 92, 0.34);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.84rem;
}

.proof-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.proof-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading h2,
.quote-head h2 {
  letter-spacing: 0;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 46px;
  line-height: 1.06;
}

.service-grid,
.timeline-grid,
.pricing-grid,
.answer-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.pricing-grid,
.answer-grid,
.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.price-card,
.answer-card,
.faq-list details,
.signal-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  overflow: hidden;
}

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

.card-pad,
.price-card,
.answer-card,
.timeline-card,
.signal-panel {
  padding: 26px;
}

.tag {
  display: inline-flex;
  margin-bottom: 15px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.price-card h3,
.answer-card h3,
.timeline-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.accent-shell {
  background: #eef2f1;
}

.location-hero {
  padding: 92px 0 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.94), rgba(8, 11, 15, 0.68)),
    url("images/hero.webp") center right / cover no-repeat;
}

.contact-hero {
  padding: 92px 0 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.95), rgba(8, 11, 15, 0.74)),
    url("images/hero.webp") center right / cover no-repeat;
}

.service-hero {
  padding: 92px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.95), rgba(8, 11, 15, 0.68)),
    url("images/custom-web-development.jpg") center / cover no-repeat;
}

.about-hero,
.faq-hero {
  padding: 92px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.95), rgba(8, 11, 15, 0.68)),
    url("images/hero.webp") center right / cover no-repeat;
}

.work-hero {
  padding: 98px 0 74px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.96), rgba(8, 11, 15, 0.7)),
    url("images/portfolio6.webp") center / cover no-repeat;
}

.work-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 34px;
  align-items: end;
}

.work-hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
}

.work-hero-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.work-hero-card span {
  display: block;
  color: var(--gold-2);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.work-hero-card strong {
  display: block;
  margin: 5px 0 10px;
  color: #fff;
}

.work-hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.work-proof {
  margin-top: 0;
}

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

.work-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.work-card > a {
  display: block;
  overflow: hidden;
  background: var(--night);
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card-body {
  padding: 26px;
}

.work-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.work-brand {
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
}

.work-cta-panel {
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 165, 92, 0.22), transparent 44%),
    var(--night);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.work-cta-panel h2 {
  max-width: 760px;
  color: #fff;
  font-size: 46px;
  line-height: 1.06;
}

.work-cta-panel p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 34px;
  align-items: end;
}

.about-hero h1,
.faq-hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 34px;
  align-items: end;
}

.service-hero h1 {
  max-width: 850px;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
}

.service-proof {
  margin-top: 0;
}

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

.service-detail-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-detail-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.contact-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.contact-methods a {
  min-height: 104px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.contact-methods span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-methods strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-card {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.contact-card > p {
  margin-bottom: 20px;
}

.location-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 34px;
  align-items: end;
}

.location-hero h1 {
  max-width: 860px;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
}

.location-hero-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.location-hero-panel span {
  display: block;
  color: var(--gold-2);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.location-hero-panel strong {
  display: block;
  margin: 5px 0 10px;
  color: #fff;
}

.location-hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.location-proof {
  margin-top: 0;
}

.location-links-shell {
  padding-top: 0;
}

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

.location-link-grid a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.location-directory {
  display: grid;
  gap: 22px;
}

.location-directory-group {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.location-directory-group h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.entity-shell {
  padding-top: 0;
}

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

.entity-list span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.lead {
  font-size: 1.12rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.signal-panel h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.signal-list {
  display: grid;
  gap: 18px;
}

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

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

.timeline-card {
  background: transparent;
  border-top: 2px solid var(--gold);
}

.timeline-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dark-shell {
  background: var(--night-2);
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .eyebrow {
  color: #fff;
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.portfolio-grid a:hover img {
  transform: scale(1.035);
}

.price-card ul,
.footer-grid ul {
  padding-left: 18px;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
}

.featured-price {
  border-color: rgba(201, 165, 92, 0.52);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: -2px;
  right: 0;
  color: var(--gold);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 14px 0 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 165, 92, 0.18), transparent 34%),
    linear-gradient(180deg, #101820 0%, #080b0f 62%, #050608 100%);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 84px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 1px);
  background-size: 120px 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 78%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: end;
  padding-bottom: 54px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-signature {
  max-width: 480px;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 232px);
  min-height: 78px;
  margin-bottom: 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.footer-logo-mark img {
  width: 190px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.footer-signature p {
  max-width: 430px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tags span {
  display: inline-flex;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-pitch {
  max-width: 760px;
  justify-self: end;
}

.footer-pitch .eyebrow {
  margin-bottom: 14px;
}

.footer-pitch h2 {
  margin-bottom: 26px;
  color: #fff;
  font-size: 56px;
  line-height: 1.04;
}

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

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.1rem;
}

.footer-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.footer-panel-highlight {
  background: rgba(201, 165, 92, 0.1);
  border-color: rgba(201, 165, 92, 0.28);
}

.footer-panel ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.footer-panel li + li {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 22px 32px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

#whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
}

#whatsapp-button img {
  width: 33px;
  height: 33px;
}

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

  .quote-card {
    grid-template-columns: 1fr 1fr;
  }

  .quote-head,
  .quote-card > .field,
  .quote-card > .cta-stack,
  .contact-fields,
  .project-fields {
    grid-column: span 1;
    grid-row: auto;
  }

  .message-field {
    grid-column: 1 / -1;
  }

  .timeline-grid,
  .service-grid,
  .pricing-grid,
  .answer-grid,
  .portfolio-grid,
  .proof-grid,
  .location-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .faq-layout,
  .footer-grid,
  .footer-showcase,
  .contact-hero-grid,
  .about-hero-grid,
  .service-hero-grid,
  .work-hero-grid {
    grid-template-columns: 1fr;
  }

  .footer-pitch {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .nav-wrap,
  .hero-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-links,
  .nav-actions {
    flex-wrap: wrap;
  }

  .nav-wrap {
    padding: 16px 0;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 28px;
    background:
      linear-gradient(180deg, rgba(8, 11, 15, 0.94) 0%, rgba(8, 11, 15, 0.78) 62%, rgba(8, 11, 15, 0.9) 100%),
      url("images/hero.webp") center / cover no-repeat;
  }

  h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .location-hero h1 {
    font-size: 40px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .service-hero h1 {
    font-size: 40px;
  }

  .about-hero h1,
  .faq-hero h1,
  .work-hero h1 {
    font-size: 40px;
  }

  .footer-pitch h2 {
    font-size: 34px;
  }

  .footer-logo-mark {
    width: min(100%, 214px);
    min-height: 72px;
    padding: 15px 16px;
  }

  .footer-logo-mark img {
    width: 176px;
  }

  .hero-points,
  .hero-metrics,
  .quote-card,
  .grid-2,
  .contact-methods,
  .service-detail-grid,
  .work-grid,
  .entity-list,
  .location-hero-grid,
  .location-link-grid,
  .timeline-grid,
  .service-grid,
  .pricing-grid,
  .answer-grid,
  .portfolio-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 20px;
  }

  .proof-grid article {
    min-height: auto;
  }

  .proof-strip,
  .section-shell {
    padding: 64px 0;
  }

  #whatsapp-button {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
