/* =========================================================
   0. ROOT VARIABLES / PALETTE
========================================================= */
:root {
  --green: #1BA58B;
  --red: #A61C1C;
  --dark: #333333;

  --black: #111111;
  --white: #ffffff;
  --muted: #b8c3c0;
  --soft: #f5f7f6;
  --line: rgba(255, 255, 255, 0.14);

  --bg-dark: #171717;
  --bg-graphite: #222222;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --transition: 220ms ease;
}

/* =========================================================
   1. RESET / GLOBAL
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(27, 165, 139, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(166, 28, 28, 0.16), transparent 30%),
    linear-gradient(135deg, #111111, #242424 55%, #151515);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--green);
  color: var(--white);
}

/* =========================================================
   2. HEADER / NAVIGATION
========================================================= */
.site-header {
  width: 100%;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  transform: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 42px;

  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;

  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  height: 48px;
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--green), rgba(27, 165, 139, 0.55)),
    var(--green);
  color: var(--white);
  box-shadow: 0 0 28px rgba(27, 165, 139, 0.35);
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  transition: var(--transition);
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 99px;
}

/* =========================================================
   3. SHARED SECTIONS / TYPOGRAPHY
========================================================= */
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-full {
  min-height: 100vh;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 860px;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(166, 28, 28, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(166, 28, 28, 0.42);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

/* =========================================================
   4. HERO
========================================================= */
.hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
  display: block;
}

.hero-content {
  position: absolute;
  top: 13%;
  left: 0;
  max-width: 900px;
  z-index: 2;
}

.hero-bg-grid {
  position: absolute;
  inset: 88px -40px 40px;
  z-index: -3;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 70%);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.45;
}

.hero-orb-one {
  top: 110px;
  left: -120px;
  background: var(--green);
}

.hero-orb-two {
  right: -130px;
  bottom: 70px;
  background: var(--red);
}

.hero-description {
  max-width: 690px;
  margin-top: 26px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* =========================================================
   5. ABOUT
========================================================= */
.about-section {
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(27, 165, 139, 0.12);
  filter: blur(45px);
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.about-copy {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(27, 165, 139, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.about-copy::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(27, 165, 139, 0.28);
  border-radius: 50%;
}

.about-copy p {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-focus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  transition: var(--transition);
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(27, 165, 139, 0.18), transparent 35%),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.035));
  opacity: 0;
  transition: var(--transition);
}

.focus-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -36px;
  bottom: -36px;
  border-radius: 24px;
  background: rgba(166, 28, 28, 0.16);
  transform: rotate(18deg);
  transition: var(--transition);
}

.focus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 165, 139, 0.5);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}

.focus-card:hover::before {
  opacity: 1;
}

.focus-card:hover::after {
  transform: rotate(18deg) scale(1.2);
  background: rgba(166, 28, 28, 0.24);
}

.focus-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.focus-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 1.22rem;
  letter-spacing: -0.035em;
}

.focus-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* =========================================================
   6. PROCESS — INTERACTIVE STAGE SCALE
========================================================= */
.process-section {
  width: 100%;
  max-width: none;
  padding-left: 16px;
  padding-right: 16px;
}

.process-cover {
  width: min(1180px, 100%);
  min-height: 540px;
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(27, 165, 139, 0.12), rgba(166, 28, 28, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.process-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 18% 20%, rgba(27, 165, 139, 0.18), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(166, 28, 28, 0.12), transparent 26%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);

  background-size:
    auto,
    auto,
    38px 38px,
    38px 38px;

  opacity: 0.75;
  mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 100%);
}

.process-item,
.process-figure {
  transition: all 225ms ease-out;
}

.process-item {
  z-index: 1;
  height: 156px;
  position: relative;
  padding: 0 24px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.process-item:last-child {
  border-right: 0;
}

.process-figure {
  height: 0;
  margin: 0 -24px;
  border-bottom: 4px solid var(--green);
  background-size: cover;
  background-position: center;
  opacity: 0.92;
}

/* PROCESS CARD IMAGES */
.process-figure-one {
  background-image:
    linear-gradient(180deg, rgba(23, 23, 23, 0.05), rgba(23, 23, 23, 0.2)),
    url("../img/process-discovery.webp");
}

.process-figure-two {
  background-image:
    linear-gradient(180deg, rgba(23, 23, 23, 0.05), rgba(23, 23, 23, 0.2)),
    url("../img/process-design.webp");
}

.process-figure-three {
  background-image:
    linear-gradient(180deg, rgba(23, 23, 23, 0.05), rgba(23, 23, 23, 0.2)),
    url("../img/process-development.webp");
}

.process-figure-four {
  background-image:
    linear-gradient(180deg, rgba(23, 23, 23, 0.05), rgba(23, 23, 23, 0.2)),
    url("../img/process-release.webp");
}

.process-handle {
  width: 72px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  position: relative;
  top: -22px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  font-size: 1.45rem;
}

.process-handle::after,
.process-handle::before {
  content: "";
  position: absolute;
  left: 0;
  border-style: solid;
  border-color: transparent;
}

.process-handle::after {
  bottom: 100%;
  border-bottom-color: var(--green);
  border-width: 0 36px 16px 36px;
}

.process-handle::before {
  top: 100%;
  border-top-color: var(--green);
  border-width: 16px 36px 0 36px;
}

.process-item ul {
  min-height: 112px;
  margin-top: 8px;
  list-style: none;
}

.process-item li {
  opacity: 0;
  margin-top: 10px;
  color: rgba(51, 51, 51, 0.82);
  line-height: 1.45;
  font-size: 0.92rem;
}

.process-item h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
  transition: var(--transition);
}

.process-item h3 span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.process-item:hover {
  height: 540px;
  cursor: pointer;
  background: var(--white);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.22);
}

.process-item:hover .process-figure {
  height: 190px;
}

.process-item:hover li:nth-child(1) {
  opacity: 1;
  transition: all 225ms 120ms;
}

.process-item:hover li:nth-child(2) {
  opacity: 1;
  transition: all 225ms 210ms;
}

.process-item:hover li:nth-child(3) {
  opacity: 1;
  transition: all 225ms 300ms;
}

.process-item:hover h3 {
  color: var(--dark);
}

.process-item:hover h3 span {
  color: rgba(51, 51, 51, 0.58);
}

/* =========================================================
   7. PROFESSIONAL STACK — INFINITE SCROLL
========================================================= */
.stack-section {
  overflow: hidden;
}

.tag-list {
  width: min(820px, 94vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  margin: 44px auto 0;
  padding: 1.5rem 0;
  overflow: hidden;
}

.loop-slider .inner {
  display: flex;
  width: fit-content;
  animation-name: loop;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: var(--direction);
  animation-duration: var(--duration);
}

.tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 1rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #f3f3f3;
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0.1rem 0.2rem rgba(0, 0, 0, 0.2),
    0 0.2rem 1.2rem rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.tag b {
  color: var(--green);
  font-size: 1.1rem;
}

.fade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent 22%, transparent 78%, var(--bg-dark));
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
   8. CONTACT
========================================================= */
.contact-section {
  padding-bottom: 130px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

.contact-info {
  padding: 34px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details a {
  color: var(--green);
  font-weight: 900;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.68);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(27, 165, 139, 0.13);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* CONTACT RESULT POPUP */
.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.contact-popup.is-open {
  display: flex;
}

.contact-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.contact-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(27, 165, 139, 0.2), transparent 34%),
    radial-gradient(circle at 100% 30%, rgba(166, 28, 28, 0.12), transparent 32%),
    #181818;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
  text-align: center;
  animation: contactPopupIn 220ms ease;
}

@keyframes contactPopupIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.contact-popup-close:hover {
  background: var(--red);
}

.contact-popup-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: rgba(27, 165, 139, 0.18);
  border: 1px solid rgba(27, 165, 139, 0.5);
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0 38px rgba(27, 165, 139, 0.22);
}

.contact-popup.is-error .contact-popup-icon {
  background: rgba(166, 28, 28, 0.18);
  border-color: rgba(166, 28, 28, 0.5);
  color: #ff6b6b;
  box-shadow: 0 0 38px rgba(166, 28, 28, 0.24);
}

.contact-popup-dialog h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.contact-popup-dialog p {
  margin: 0 auto 24px;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-popup-button {
  min-width: 150px;
  border: 0;
  cursor: pointer;
}

body.popup-open {
  overflow: hidden;
}

/* HONEYPOT FIELD */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* FORM LOADING STATE */
.contact-form.is-sending {
  opacity: 0.72;
  pointer-events: none;
}

.contact-form button[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
}

/* =========================================================
   9. FOOTER
========================================================= */
.site-footer {
  padding: 54px 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(27, 165, 139, 0.12), transparent 30%),
    #101010;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid-three {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-column p,
.footer-company-column p,
.footer-links-column p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.footer-company-column {
  text-align: center;
}

.footer-company-name {
  color: #ffffff !important;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-links-column {
  text-align: right;
}

.footer-links-column a {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
  transition: var(--transition);
}

.footer-links-column a:hover {
  color: #ffffff;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.54) !important;
}

/* =========================================================
   10. BACK TO TOP
========================================================= */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================================================
   11. RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .hero,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-focus {
    grid-template-columns: 1fr 1fr;
  }

  .process-cover {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid-three {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-company-column,
  .footer-links-column {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(18, 18, 18, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 0 0 80px;
  }
  
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    padding-top: 120px;
  }

  .about-focus {
    grid-template-columns: 1fr;
  }

  .process-cover {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .process-item {
    height: auto;
    min-height: 0;
    padding-bottom: 28px;
    background: var(--white);
  }
  
  .process-figure {
    height: 180px;
  }
  
  .process-item li {
    opacity: 1;
  }
  
  .process-item h3 {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 28px;
    color: var(--dark);
  }
  
  .process-item h3 span {
    color: rgba(51, 51, 51, 0.58);
  }
  
  .process-item:hover {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 86px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-copy,
  .contact-info,
  .contact-form {
    padding: 22px;
  }

  .process-item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-popup-dialog {
    padding: 26px 22px;
    border-radius: 24px;
  }
  
  .contact-popup-dialog h3 {
    font-size: 1.65rem;
  }
  
  .contact-popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
}
