/* =========================================================
   BASE
========================================================= */

:root {
    --bg: #050807;
    --bg-soft: #09110f;
    --bg-card: rgba(12, 22, 18, 0.82);
    --bg-card-solid: #0b1512;
    --text: #edf7f2;
    --text-soft: #a8bbb2;
    --text-muted: #70857b;
    --accent: #36f29b;
    --accent-soft: rgba(54, 242, 155, 0.16);
    --accent-border: rgba(54, 242, 155, 0.28);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(54, 242, 155, 0.22);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
    --transition: 220ms ease;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  textarea {
    font: inherit;
  }
  
  button {
    border: 0;
    cursor: pointer;
  }
  
  img,
  svg {
    display: block;
    max-width: 100%;
  }
  
  .container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
  }
  
  .section {
    position: relative;
    padding: 110px 0;
  }
  
  .eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  
  h1 {
    max-width: 720px;
    margin-bottom: 34px;
    font-size: clamp(3.1rem, 7vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
  }
  
  h2 {
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
  }
  
  h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
  }
  
  p {
    color: var(--text-soft);
  }
  
  .section-heading {
    max-width: 520px;
  }
  
  .section-heading.center {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
  }
  
  .primary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    background:
      radial-gradient(circle at top left, rgba(54, 242, 155, 0.34), transparent 42%),
      rgba(54, 242, 155, 0.08);
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(54, 242, 155, 0.05), 0 18px 50px rgba(54, 242, 155, 0.08);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  }
  
  .primary-button::before {
    content: "";
    position: absolute;
    inset: -80% auto -80% -40%;
    width: 36%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(18deg);
    transition: left 520ms ease;
  }
  
  .primary-button:hover {
    transform: translateY(-3px);
    border-color: rgba(54, 242, 155, 0.62);
    box-shadow: 0 0 0 1px rgba(54, 242, 155, 0.18), 0 22px 70px rgba(54, 242, 155, 0.16);
  }
  
  .primary-button:hover::before {
    left: 120%;
  }
  
/* =========================================================
   BACKGROUND
========================================================= */

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background:
      linear-gradient(135deg, #030504 0%, #07100d 45%, #020302 100%);
  }
  
  .page-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(54, 242, 155, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(54, 242, 155, 0.045) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: 0.55;
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 12%,
      black 82%,
      transparent 100%
    );
  }
  
  .page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
      radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.48) 78%);
    pointer-events: none;
  }
  
  .bg-grid {
    display: none;
  }
  
  .bg-glow {
    display: none;
  }
  
  /* =========================================================
     HEADER / NAVIGATION
  ========================================================= */
  
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    padding: 18px 0;
    transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  }
  
  .site-header.is-scrolled {
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 7, 0.78);
    backdrop-filter: blur(18px);
  }
  
  .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    background: rgba(8, 14, 12, 0.58);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
  }
  
  .nav-side {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav-left {
    justify-content: flex-start;
  }
  
  .nav-right {
    justify-content: flex-end;
  }
  
  .nav-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 650;
    transition: color var(--transition), background var(--transition);
  }
  
  .nav-link:hover {
    background: rgba(54, 242, 155, 0.08);
    color: var(--text);
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    color: var(--text);
  }
  
  .brand-image img {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(54, 242, 155, 0.12));
    transition: transform var(--transition), filter var(--transition);
  }
  
  .brand-image:hover img {
    transform: translateY(-1px);
    filter: drop-shadow(0 0 22px rgba(54, 242, 155, 0.22));
  }
  
  .mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border-radius: 999px;
    background: rgba(54, 242, 155, 0.08);
  }
  
  .mobile-menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
  }
  
  .mobile-menu {
    display: none;
  }
  
/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
  min-height: 620px;
  pointer-events: none;
}

.hero-image-frame {
  position: absolute;
  inset: -80px -180px -80px -160px;
  display: grid;
  place-items: center;
}

.hero-image-frame img {
  width: min(135%, 1150px);
  max-height: 760px;
  object-fit: contain;
  opacity: 0.78;
  transform: translateX(100px) translateY(10px) scale(1.7);
  filter:
    saturate(0.95)
    contrast(1.08)
    brightness(0.86)
    drop-shadow(0 0 38px rgba(54, 242, 155, 0.16))
    drop-shadow(0 44px 100px rgba(0, 0, 0, 0.62));
}
  
  /* =========================================================
     ABOUT SECTION
  ========================================================= */
  
  .split-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
    align-items: start;
  }
  
  .about-panel {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
      radial-gradient(circle at top right, rgba(54, 242, 155, 0.08), transparent 38%),
      var(--bg-card);
    box-shadow: var(--shadow);
  }
  
  .about-panel p {
    margin-bottom: 0;
    font-size: 1.08rem;
  }
  
  /* =========================================================
   SERVICES SECTION
========================================================= */

.services {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    rgba(8, 16, 13, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(5, 8, 7, 0.18) 36%, rgba(5, 8, 7, 0.88) 100%),
    radial-gradient(circle at 50% 22%, rgba(54, 242, 155, 0.12), transparent 38%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -42% -35%;
  z-index: 1;
  height: 190px;
  background: radial-gradient(circle, rgba(54, 242, 155, 0.16), transparent 68%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(54, 242, 155, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(9, 20, 16, 0.92);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(54, 242, 155, 0.09);
}

.service-card:hover::after {
  opacity: 1;
}

.service-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.24);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(5, 8, 7, 0.76) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.42), transparent 50%, rgba(5, 8, 7, 0.24));
  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter:
    saturate(0.92)
    contrast(1.06)
    brightness(0.78);
  transform: scale(1.03);
  transition:
    transform 620ms ease,
    opacity var(--transition),
    filter var(--transition);
}

.service-card:hover .service-image img {
  opacity: 0.96;
  filter:
    saturate(1.05)
    contrast(1.08)
    brightness(0.9);
  transform: scale(1.1);
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 24px 22px 28px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(54, 242, 155, 0.22);
  border-radius: 999px;
  background: rgba(54, 242, 155, 0.075);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
  
  /* =========================================================
     PROCESS SECTION
  ========================================================= */
  
  .process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
      radial-gradient(circle at center, rgba(54, 242, 155, 0.08), transparent 52%),
      rgba(8, 15, 12, 0.68);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .process-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(54, 242, 155, 0.54), transparent);
    transform: translateY(-50%);
  }
  
  .process-line::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 80px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    filter: blur(4px);
    animation: scanLine 5s linear infinite;
  }
  
  .process-step {
    position: relative;
    z-index: 1;
    min-height: 250px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 24px;
    background: rgba(4, 8, 7, 0.74);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
  }
  
  .process-step:hover {
    transform: translateY(-6px);
    border-color: var(--accent-border);
    background: rgba(9, 20, 16, 0.92);
  }
  
  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 34px;
    border: 1px solid var(--accent-border);
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 850;
  }
  
  .process-step p {
    margin-bottom: 0;
    font-size: 0.95rem;
  }
  
  /* =========================================================
     WHY CHOOSE US / TESTIMONIALS
  ========================================================= */
  
  .why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: center;
  }
  
  .why-content h2 {
    margin-bottom: 28px;
  }
  
  .benefits-list {
    display: grid;
    gap: 14px;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .benefit-item span {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border-radius: 50%;
    background:
      radial-gradient(circle, var(--accent) 0 34%, transparent 36%),
      rgba(54, 242, 155, 0.14);
    box-shadow: 0 0 22px rgba(54, 242, 155, 0.18);
  }
  
  .benefit-item p {
    margin-bottom: 0;
    color: var(--text);
  }
  
  .testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .testimonial-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(54, 242, 155, 0.045), transparent 46%),
      var(--bg-card);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  }
  
  .testimonial-card:hover {
    transform: translateX(-6px);
    border-color: var(--accent-border);
    box-shadow:
      0 20px 56px rgba(0, 0, 0, 0.28),
      0 0 34px rgba(54, 242, 155, 0.07);
  }
  
  .person-photo {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(54, 242, 155, 0.28);
    background: rgba(54, 242, 155, 0.08);
    box-shadow:
      inset 0 0 24px rgba(54, 242, 155, 0.08),
      0 0 28px rgba(54, 242, 155, 0.08);
  }
  
  .person-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, transparent 0%, rgba(5, 8, 7, 0.22) 100%),
      radial-gradient(circle at 50% 20%, rgba(54, 242, 155, 0.12), transparent 45%);
    pointer-events: none;
  }
  
  .person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
      saturate(0.88)
      contrast(1.05)
      brightness(0.86);
  }
  
  .testimonial-content p {
    margin: 0 0 10px;
    color: var(--text-soft);
  }
  
  .testimonial-content strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
    font-size: 0.94rem;
  }
  
  .testimonial-content span {
    display: block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  
  /* =========================================================
     CONTACT SECTION
  ========================================================= */
  
  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
    align-items: start;
  }
  
  .contact-form {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
      radial-gradient(circle at top right, rgba(54, 242, 155, 0.1), transparent 42%),
      var(--bg-card);
    box-shadow: var(--shadow);
  }
  
  .form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .form-row label {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .form-row input,
  .form-row textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  }
  
  .form-row input {
    height: 54px;
    padding: 0 16px;
  }
  
  .form-row textarea {
    resize: vertical;
    min-height: 150px;
    padding: 15px 16px;
  }
  
  .form-row input::placeholder,
  .form-row textarea::placeholder {
    color: var(--text-muted);
  }
  
  .form-row input:focus,
  .form-row textarea:focus {
    border-color: var(--accent-border);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(54, 242, 155, 0.07);
  }
  
  .form-button {
    width: 100%;
    justify-content: center;
  }
  
  .form-note {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    text-align: center;
  }
  
  /* =========================================================
     FOOTER
  ========================================================= */
  
  .site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background:
      linear-gradient(90deg, rgba(54, 242, 155, 0.045), transparent 40%, rgba(54, 242, 155, 0.035)),
      rgba(3, 6, 5, 0.74);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
  }
  
  .footer-company p,
  .footer-links p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
  }
  
  .footer-company p:first-child {
    color: var(--text);
    font-weight: 750;
  }
  
  .footer-links {
    display: grid;
    justify-items: end;
    gap: 8px;
    text-align: right;
  }
  
  .footer-links a {
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
    transition: color var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--text);
  }
  
  /* =========================================================
     REVEAL ANIMATIONS
  ========================================================= */
  
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 720ms ease, transform 720ms ease;
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay-1 {
    transition-delay: 90ms;
  }
  
  .delay-2 {
    transition-delay: 160ms;
  }
  
  .delay-3 {
    transition-delay: 230ms;
  }
  
  /* =========================================================
     KEYFRAMES
  ========================================================= */
  
  @keyframes nodePulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.68;
    }
  
    50% {
      transform: scale(1.28);
      opacity: 1;
    }
  }
  
  @keyframes scanLine {
    0% {
      transform: translateX(0);
      opacity: 0;
    }
  
    12%,
    88% {
      opacity: 1;
    }
  
    100% {
      transform: translateX(calc(100vw - 260px));
      opacity: 0;
    }
  }
  
  /* =========================================================
     RESPONSIVE
  ========================================================= */
  
  @media (max-width: 1080px) {
    .hero-grid,
    .split-grid,
    .why-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .hero {
      min-height: auto;
    }
  
    .hero-visual {
      max-width: 680px;
    }
    
    .hero-image {
      min-height: 420px;
    }
    
    .hero-content::before {
      inset: -70px -30px -70px -30px;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .process-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .process-line {
      display: none;
    }
  }
  
  @media (max-width: 760px) {
    .container {
      width: min(100% - 28px, var(--container));
    }
  
    .section {
      padding: 76px 0;
    }
  
    h1 {
      font-size: clamp(3rem, 15vw, 5.2rem);
    }
  
    h2 {
      font-size: clamp(2rem, 10vw, 3.2rem);
    }
  
    .site-header {
      padding: 12px 0;
    }
  
    .navbar {
      grid-template-columns: 1fr auto;
      padding: 0 8px 0 16px;
    }
  
    .nav-side {
      display: none;
    }
  
    .brand {
      min-width: 0;
      justify-content: flex-start;
    }
    
    .brand-image img {
      width: 150px;
    }
  
    .mobile-menu-button {
      display: inline-flex;
    }
  
    .mobile-menu {
      position: fixed;
      top: 82px;
      left: 14px;
      right: 14px;
      display: grid;
      gap: 8px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(5, 8, 7, 0.94);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity var(--transition), transform var(--transition);
    }
  
    body.menu-open .mobile-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
  
    .mobile-menu a {
      padding: 13px 14px;
      border-radius: 16px;
      color: var(--text-soft);
      background: rgba(255, 255, 255, 0.03);
      font-weight: 700;
    }
  
    .hero {
      padding-top: 128px;
    }

    .hero-image {
      min-height: 340px;
      margin-top: -20px;
    }
    
    .hero-image-frame {
      inset: -50px -120px -40px -120px;
    }
    
    .hero-image-frame img {
      width: min(150%, 720px);
      opacity: 0.58;
      transform: translateX(30px) scale(1.12);
    }
  
    .services-grid,
    .process-wrapper {
      grid-template-columns: 1fr;
    }
  
    .service-card {
      min-height: auto;
    }

    .service-image {
      height: 220px;
    }
  
    .process-wrapper {
      padding: 16px;
    }
  
    .process-step {
      min-height: auto;
    }
  
    .testimonial-card {
      grid-template-columns: 62px 1fr;
      gap: 16px;
      padding: 18px;
    }
    
    .person-photo {
      width: 58px;
      height: 58px;
      border-radius: 18px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-links {
      justify-items: start;
      text-align: left;
    }
  }
  
  @media (max-width: 460px) {

    .brand-image img {
      width: 132px;
    }
  
    .about-panel,
    .contact-form {
      padding: 22px;
    }
  
    .service-image {
      height: 190px;
    }
    
    .service-content {
      padding: 22px 20px 24px;
    }
  }