:root {
  --bg: #0b0f14;
  --bg2: #0f141b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel2: rgba(255, 255, 255, 0.06);
  --text: #f7f1da;
  --muted: rgba(247, 241, 218, 0.72);
  --line: rgba(212, 175, 55, 0.18);
  --gold: #d4af37;
  --gold2: #f7e9a9;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 26px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 20%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(212, 175, 55, 0.10), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.8;
}

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

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

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

.skip-link {
  position: absolute;
  inset-inline-start: 14px;
  inset-block-start: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--gold);
  color: #0b0f14;
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 50;
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  background: rgba(11, 15, 20, 0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled {
  background: rgba(11, 15, 20, 0.82);
  border-bottom-color: rgba(212, 175, 55, 0.16);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(247, 241, 218, 0.85), rgba(212, 175, 55, 0.9)),
    linear-gradient(180deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: min(280px, 46vw);
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(247, 241, 218, 0.86);
  font-weight: 650;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover {
  background: rgba(212, 175, 55, 0.10);
  color: var(--text);
}

.nav-link--cta {
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.26);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.22);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(247, 233, 169, 0.75));
  color: #0b0f14;
  border-color: rgba(212, 175, 55, 0.55);
}

.btn--ghost {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.22);
}

.btn--lg {
  padding: 14px 18px;
  border-radius: 16px;
}

.hero {
  padding: 46px 0 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.20);
  color: rgba(247, 241, 218, 0.9);
  font-weight: 800;
  margin: 0 0 14px;
}

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.hero-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px;
}

.site-domain {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.site-domain__label {
  color: rgba(247, 241, 218, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.site-domain__link {
  color: var(--gold2);
  font-weight: 950;
  letter-spacing: 0.4px;
}

.site-domain__link:hover {
  color: var(--text);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.trust-item {
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-num {
  display: block;
  font-weight: 900;
  color: var(--gold2);
  font-size: 20px;
}

.trust-label {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

.hero-frame {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.hero-frame img {
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.16);
}

.hero-caption {
  margin-top: 10px;
  color: rgba(247, 241, 218, 0.82);
  font-weight: 700;
  font-size: 13px;
}

.section {
  padding: 58px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: 0.2px;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

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

.card--link {
  display: block;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.24);
  background: rgba(255, 255, 255, 0.035);
}

.work a {
  display: block;
}

.work-media {
  display: block;
}

.card {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.30);
  position: relative;
  overflow: hidden;
}

.card::before,
.price-card::before,
.review::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 34%);
  opacity: 0.7;
  pointer-events: none;
}

.card--accent {
  border-color: rgba(212, 175, 55, 0.22);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 0.03));
}

.card-title {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--gold2);
  letter-spacing: 0.1px;
}

.card-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 650;
}

.card-list {
  margin: 0;
  padding: 0 18px 0 0;
  color: rgba(247, 241, 218, 0.86);
  font-weight: 650;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(247, 241, 218, 0.88);
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.22);
}

.chip.is-active {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.30);
}

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

.work {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 160ms ease, border-color 160ms ease;
}

.work:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.24);
}

.work img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}

.work img.is-zoomable,
.hero-frame img.is-zoomable {
  cursor: zoom-in;
}

.work figcaption {
  padding: 12px 12px 14px;
  display: grid;
  gap: 6px;
}

.work-title {
  font-weight: 900;
  color: rgba(247, 241, 218, 0.96);
  letter-spacing: 0.1px;
}

.work-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.work-desc {
  display: grid;
  gap: 2px;
  margin-top: 4px;
  color: rgba(247, 241, 218, 0.74);
  font-weight: 650;
  font-size: 12px;
}

.work-desc-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-actions {
  display: flex;
  margin-top: 8px;
}

.work-more {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold2);
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.work-more:hover {
  transform: translateY(-1px);
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.34);
}

.noscript {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

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

.price-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.024));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.price-card--featured {
  border-color: rgba(212, 175, 55, 0.24);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 0.03));
}

.price-title {
  margin: 0;
  color: var(--gold2);
  font-weight: 950;
  letter-spacing: 0.2px;
  font-size: 18px;
}

.price-tag {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-list {
  margin: 0;
  padding: 0 18px 0 0;
  color: rgba(247, 241, 218, 0.86);
  font-weight: 650;
}

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

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(247, 241, 218, 0.88);
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(247, 241, 218, 0.96);
}

.faq-body {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

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

.review {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.024));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.review p {
  margin: 0 0 10px;
  color: rgba(247, 241, 218, 0.90);
  font-weight: 700;
}

.review footer {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
  transition: transform 160ms ease, border-color 160ms ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.24);
}

.contact-title {
  display: block;
  font-weight: 900;
  color: var(--gold2);
  margin-bottom: 2px;
}

.contact-value {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.form {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

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

.field {
  display: grid;
  gap: 6px;
}

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

.field-label {
  font-weight: 850;
  color: rgba(247, 241, 218, 0.92);
}

.input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 20, 0.35);
  color: var(--text);
  padding: 12px 12px;
  font-weight: 750;
  outline: none;
}

.input:focus {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.10);
}

.form-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.form-note {
  margin: 0;
  color: rgba(247, 241, 218, 0.65);
  font-weight: 650;
  font-size: 12px;
}

.footer {
  padding: 26px 0 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}

.footer-name {
  font-weight: 950;
  letter-spacing: 0.2px;
}

.footer-tag {
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(247, 241, 218, 0.86);
  font-weight: 750;
}

.footer-domain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.20);
  background: rgba(212, 175, 55, 0.08);
  color: rgba(247, 241, 218, 0.82);
  font-weight: 800;
}

.footer-domain a {
  color: var(--gold2);
}

.footer-domain a:hover {
  color: var(--text);
}

.footer-links a:hover {
  color: var(--gold2);
}

.footer-copy {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  color: rgba(247, 241, 218, 0.68);
  font-weight: 700;
}

.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(247, 241, 218, 0.66);
  font-weight: 750;
  font-size: 13px;
}

.footer-credit a:hover {
  color: var(--gold2);
}

.floating {
  position: fixed;
  inset-inline: 16px;
  inset-block-end: 16px;
  display: flex;
  gap: 10px;
  z-index: 40;
}

.float-btn {
  flex: 1;
  padding: 14px 14px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 241, 218, 0.96);
  font-weight: 950;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.float-btn--primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(247, 233, 169, 0.75));
  color: #0b0f14;
  border-color: rgba(212, 175, 55, 0.55);
}

.lightbox {
  width: min(980px, calc(100% - 18px));
  border: none;
  padding: 0;
  border-radius: 18px;
  background: rgba(11, 15, 20, 0.96);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  color: var(--text);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.lightbox-figure {
  margin: 0;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.lightbox-figure img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.lightbox-figure figcaption {
  color: rgba(247, 241, 218, 0.82);
  font-weight: 750;
}

.lightbox-title {
  font-weight: 950;
  color: rgba(247, 241, 218, 0.96);
  letter-spacing: 0.1px;
  font-size: 16px;
}

.lightbox-desc {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.lightbox-highlights {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.lightbox-paragraph {
  margin: 0;
  color: rgba(247, 241, 218, 0.82);
  font-weight: 650;
  line-height: 2;
  text-wrap: pretty;
}

.lightbox-desc-line {
  padding-inline-start: 12px;
  border-inline-start: 2px solid rgba(212, 175, 55, 0.28);
  color: rgba(247, 241, 218, 0.86);
  font-weight: 700;
}

.lightbox-meta {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.lightbox-close {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-end: 8px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

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

.feature-panel {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.20);
  background:
    radial-gradient(500px 220px at 0% 0%, rgba(212, 175, 55, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.feature-panel--secondary {
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(212, 175, 55, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.feature-eyebrow {
  margin: 0 0 10px;
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: 0.8px;
}

.feature-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
}

.feature-text {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.feature-list {
  margin: 0;
  padding: 0 18px 0 0;
  color: rgba(247, 241, 218, 0.9);
  font-weight: 700;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .brand {
    grid-area: brand;
  }

  .header-actions {
    grid-area: actions;
  }

  .nav {
    grid-area: nav;
    justify-content: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copy {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 26px));
  }

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

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

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

  .site-domain,
  .footer-domain,
  .feature-actions {
    width: 100%;
  }
}
