:root {
  --bg: #080808;
  --fg: #f2f2f2;
  --primary: #c1ff00;
  --primary-fg: #080808;
  --secondary: #262626;
  --border: #262626;
  --muted: #4a4a4a;
  --card: #0d0d0d;
  --font-heading: "Syne", sans-serif;
  --font-body: "JetBrains Mono", monospace;
  --radius: 0px;
  --bg-rgb: 8, 8, 8;
  --fg-rgb: 242, 242, 242;
  --primary-rgb: 193, 255, 0;
  --secondary-rgb: 38, 38, 38;
  --border-rgb: 38, 38, 38;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

::selection {
  background: rgba(var(--primary-rgb), 0.19);
  color: var(--primary);
}

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

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

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  max-width: 1280px;
  margin: 0 auto;
}

.label {
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  line-height: 1.05;
}

p {
  margin: 0 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 16px 32px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border-color: var(--border);
  color: var(--fg);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(var(--bg-rgb), 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--border-rgb), 0.75);
}
.navbar.scrolled {
  background: rgba(var(--bg-rgb), 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.navbar-shell {
  min-height: 78px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  padding-inline: 10px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}
.logo span {
  color: var(--primary);
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.navbar-links a {
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(var(--fg-rgb), 0.9);
  transition: color 0.2s ease;
}
.navbar-links a:hover {
  color: var(--fg);
}
.navbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 1px;
  background: var(--primary);
  transition: 0.3s;
}
.navbar-links a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
  flex-shrink: 0;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.76rem;
}

.desktop-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.8px;
  background: var(--fg);
  margin: 3px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle:hover {
  border-color: rgba(var(--primary-rgb), 0.85);
  background: rgba(var(--primary-rgb), 0.08);
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}
.mobile-menu-inner {
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(var(--border-rgb), 0.7);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.mobile-cta {
  margin-top: 10px;
  width: 100%;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg,
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-bg {
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--bg-rgb), 0.8),
    rgba(var(--bg-rgb), 0.6) 40%,
    var(--bg)
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.hero-grid span {
  border-left: 1px solid rgba(var(--fg-rgb), 0.03);
}
.hero-grid span:last-child {
  border-right: 1px solid rgba(var(--fg-rgb), 0.03);
}

.hero-x {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(20rem, 50vw, 60rem);
  color: var(--primary);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  width: max-content;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 120px;
}
.pill {
  display: inline-flex;
  border: 1px solid var(--border);
  background: rgba(var(--secondary-rgb), 0.3);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.65rem;
}

.hero-content h1 {
  margin-top: 20px;
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 0.95;
}
.hero-content h1 span {
  color: var(--primary);
}
.hero-content p {
  max-width: 740px;
  margin: 20px auto 0;
  color: rgba(var(--fg-rgb), 0.82);
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-cta .btn-primary {
  min-width: 200px;
}

.hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-stats div {
  border: 1px solid var(--border);
  background: rgba(var(--secondary-rgb), 0.22);
  padding: 18px;
}
.hero-stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.hero-stats span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--fg);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

section {
  position: relative;
  padding: 128px 0;
}

.section-bg {
  opacity: 0.1;
}
.section-bg.right {
  object-position: right center;
  opacity: 0.05;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.section-head h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}
.section-head p:last-child {
  color: rgba(var(--fg-rgb), 0.78);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
  transition: color 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card:hover,
.service-card:hover .tag,
.service-card:hover p {
  color: var(--primary-fg);
}
.service-card .tag {
  color: var(--primary);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}
.service-card svg {
  width: 32px;
  height: 32px;
  margin: 16px 0 18px;
  stroke-width: 1.3;
}
.service-card h3 {
  font-size: 1.45rem;
}
.service-card p {
  color: rgba(var(--fg-rgb), 0.74);
  transition: color 0.3s;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.adv-card {
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  min-height: 220px;
  transition: border-color 0.4s;
}
.adv-card b {
  position: absolute;
  right: 20px;
  top: 8px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(var(--fg-rgb), 0.03);
}
.adv-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.7s;
}
.adv-card:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
}
.adv-card:hover::after {
  width: 100%;
}
.adv-card h3 {
  font-size: 1.35rem;
}
.adv-card p {
  color: rgba(var(--fg-rgb), 0.78);
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 96px;
}
.project-item.reverse .project-image {
  order: 2;
}
.project-item.reverse .project-info {
  order: 1;
}
.project-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.project-image:hover img {
  transform: scale(1.05);
}
.project-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 5px 7px;
}
.project-cat {
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.project-info h3 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}
.project-info .client {
  color: rgba(var(--fg-rgb), 0.84);
  font-size: 0.88rem;
}
.project-info p {
  color: rgba(var(--fg-rgb), 0.78);
}
.tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}
.tech-tags span {
  border: 1px solid var(--border);
  padding: 4px 12px;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
}
.text-link span {
  transition: 0.3s;
}
.text-link:hover span {
  transform: translateX(6px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(var(--bg-rgb), 0);
  transition: 0.5s;
}
.gallery-overlay p,
.gallery-overlay h3 {
  opacity: 0;
  transform: translateY(8px);
  transition: 0.5s;
}
.gallery-overlay p {
  color: var(--primary);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(var(--bg-rgb), 0.7);
}
.gallery-item:hover .gallery-overlay p,
.gallery-item:hover .gallery-overlay h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.corner {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: 0.5s;
}
.corner.tl {
  left: 12px;
  top: 12px;
  border-left: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
}
.corner.br {
  right: 12px;
  bottom: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}
.gallery-item:hover .corner {
  opacity: 1;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px;
  transition: 0.5s;
}
.team-card:hover {
  background: rgba(var(--secondary-rgb), 0.3);
  border-color: rgba(var(--primary-rgb), 0.3);
}
.avatar {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}
.spec {
  color: var(--primary);
  margin-top: 18px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}
.role {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.86rem;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.socials svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.5;
}

.team-profile-list {
  display: grid;
  gap: 28px;
}

.team-profile-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  background: rgba(var(--secondary-rgb), 0.2);
  padding: 18px;
}

.team-profile-item.reverse .team-profile-image {
  order: 2;
}

.team-profile-item.reverse .team-profile-info {
  order: 1;
}

.team-profile-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #050505;
  max-width: 360px;
}

.team-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-profile-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  color: var(--primary);
  text-align: center;
  padding: 18px;
}

.team-profile-role {
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-profile-info h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.team-profile-info blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(var(--fg-rgb), 0.82);
  border-left: 3px solid rgba(var(--primary-rgb), 0.65);
  padding-left: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.news-card {
  overflow: hidden;
  transition: 0.5s;
}
.news-card:hover {
  background: rgba(var(--secondary-rgb), 0.2);
}
.news-image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: 0.7s;
}
.news-card:hover .news-image img {
  opacity: 0.8;
  transform: scale(1.05);
}
.news-content {
  padding: 24px;
}
.meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.72rem;
}
.meta span {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  padding: 3px 8px;
}
.meta time {
  color: var(--muted);
}
.news-content h3 {
  font-size: 1.45rem;
}
.news-content h3 a {
  transition: 0.3s;
}
.news-content h3 a:hover {
  color: var(--primary);
}
.news-content p {
  color: var(--muted);
  font-size: 0.83rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-item .icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(var(--secondary-rgb), 0.3);
  display: grid;
  place-items: center;
}
.contact-item .icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}
.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
}
.contact-form label {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  padding: 12px 16px;
  height: 48px;
}
.contact-form textarea {
  height: auto;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  transition: 0.3s;
}
.btn.full {
  width: 100%;
}
.btn.full svg {
  stroke: currentColor;
  stroke-width: 1.5;
}
.form-message {
  margin-top: 14px;
  min-height: 20px;
  color: var(--muted);
}

.footer {
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 40px;
}
.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer-grid p {
  color: var(--muted);
}
.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.8rem;
  transition: 0.3s;
}
.footer-grid a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

@media (max-width: 1279px) {
  .services-grid,
  .advantages-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-item {
    grid-template-columns: 1fr;
  }
  .team-profile-item {
    grid-template-columns: 1fr;
  }
  .team-profile-item.reverse .team-profile-image,
  .team-profile-item.reverse .team-profile-info {
    order: initial;
  }
  .project-item.reverse .project-image,
  .project-item.reverse .project-info {
    order: initial;
  }
}

@media (max-width: 1024px) {
  .navbar-shell {
    min-height: 70px;
    padding-inline: 8px;
  }
  .navbar-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: inline-flex;
    z-index: 1004;
  }
  .navbar {
    background: rgba(var(--bg-rgb), 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(var(--bg-rgb), 0.97);
    border-bottom: 1px solid rgba(var(--border-rgb), 0.85);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.22);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
    display: block;
  }
  .mobile-menu.is-open {
    max-height: 75vh;
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-menu a:first-child {
    border-top: 0;
  }
}

@media (min-width: 1025px) {
  .navbar-links {
    display: flex;
  }
  .desktop-cta {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    position: relative;
    max-height: none;
    opacity: 1;
    transform: none;
    overflow: visible;
    border-bottom: 0;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  section {
    padding: 96px 0;
  }
  .hero-content {
    text-align: center;
    padding-top: 120px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-x {
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    font-size: clamp(12rem, 62vw, 22rem);
    opacity: 0.06;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .advantages-grid,
  .gallery-grid,
  .team-grid,
  .news-grid,
  .contact-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}
