/* =========================
   VARIABLES
========================= */

:root {
  --green: #00A651;
  --green-dark: #005837;

  --black: #1E1E1E;
  --gray: #5A5A5A;

  --soft: #EDEDED;
  --white: #FFFFFF;

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1180px;

  --transition: 0.3s ease;
}


/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}


/* =========================
   CONTAINER
========================= */

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header__content {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo__image {
  width: 165px;
  height: auto;
  display: block;
}

.logo__subtitle {
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.2;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1px;
}


/* =========================
   NAV
========================= */

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--green);
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-inline: 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 0 28px rgba(0, 166, 81, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 166, 81, 0.45);
}

.btn--outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.78) 40%,
      rgba(0,0,0,0.25) 100%
    ),
    url("../img/hero-fullbrain.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0,166,81,0.22),
      transparent 34%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.45)
    );
  z-index: 1;
}


/* =========================
   HERO TEXT
========================= */

.hero__text {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.92;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  margin-top: 26px;
  max-width: 560px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero p strong {
  color: var(--green);
}


/* =========================
   ACTIONS
========================= */

.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}


/* =========================
   HERO FEATURES
========================= */

.hero__features {
  margin-top: 72px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}

.hero__feature {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero__feature:last-child {
  border-right: none;
}

.hero__feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 38px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0,166,81,0.55);
}

.hero__feature h3 {
  min-width: 0;
  font-family: var(--font-title);
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--white);
}


/* =========================
   SECTION GENERAL
========================= */

.section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 46px;
}

.section__header div {
  max-width: 820px;
}

.section__header h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--black);
}

.section__header h2 span {
  color: var(--green);
}

.section__header p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
}


/* =========================
   SERVICES
========================= */

.services {
  background: var(--soft);
  color: var(--black);
  padding: 96px 0;
}

.services .eyebrow {
  color: var(--green);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 430px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(30,30,30,0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.12);
}

.service-card__image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: var(--black);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: -27px 0 22px 22px;
  border-radius: 50%;
  background: rgba(0,166,81,0.12);
  color: var(--green);
  font-size: 26px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 22px 14px;
  word-break: normal;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 22px 56px;
}

.service-card a {
  position: absolute;
  left: 22px;
  bottom: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}


/* =========================
   WHY US
========================= */

.why-us {
  position: relative;
  background:
    radial-gradient(circle at 15% 30%, rgba(0,166,81,0.18), transparent 32%),
    linear-gradient(135deg, #050505, var(--black));
  color: var(--white);
  padding: 96px 0;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 64px 64px;
  opacity: 0.25;
  pointer-events: none;
}

.why-us__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 54px;
  align-items: start;
}

.why-us__title h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.why-us__title h2 span {
  color: var(--green);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.why-card {
  min-height: 260px;
  padding: 34px 26px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(0,166,81,0.12);
  transform: translateY(-6px);
}

.why-card__icon {
  color: var(--green);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 28px;
  text-shadow: 0 0 20px rgba(0,166,81,0.45);
}

.why-card h3 {
  font-family: var(--font-title);
  font-size: 17px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.why-card p {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}


/* =========================
   PORTFOLIO
========================= */

.portfolio {
  background: var(--soft);
  color: var(--black);
  padding: 96px 0;
}

.portfolio .eyebrow {
  color: var(--green);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--black);
}

.portfolio-card--large {
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
  opacity: 0.82;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.04),
      rgba(0,0,0,0.86)
    );
  z-index: 1;
}

.portfolio-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.portfolio-card__content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-card__content h3 {
  max-width: 420px;
  font-family: var(--font-title);
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.portfolio-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}


/* =========================
   QUOTE SECTION
========================= */

.quote-section {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(237,237,237,0.96)),
    var(--soft);
  color: var(--black);
  padding: 96px 0;
}

.quote-section__content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.quote-info .eyebrow {
  color: var(--green);
}

.quote-info h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.quote-info h2 span {
  color: var(--green);
}

.quote-line {
  width: 54px;
  height: 3px;
  background: var(--green);
  margin-bottom: 34px;
  box-shadow: 0 0 0 6px rgba(0,166,81,0.08);
}

.quote-info p {
  color: var(--black);
  font-size: 18px;
  margin-bottom: 28px;
}

.quote-info ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.quote-info li {
  position: relative;
  padding-left: 34px;
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
}

.quote-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form input,
.quote-form select,
.file-field {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(30,30,30,0.08);
  outline: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 0 24px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,166,81,0.10);
}

.file-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-input {
  display: none;
}

.file-field span {
  color: var(--gray);
}

.file-field strong {
  color: var(--black);
  font-size: 20px;
}

.quote-form button {
  min-height: 66px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-title);
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 18px 40px rgba(0,166,81,0.28);
}

.quote-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0,166,81,0.38);
}

.quote-form small {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: #050505;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__content {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 54px;
}

.footer__brand p {
  max-width: 320px;
  margin-top: 24px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 22px rgba(0,166,81,0.28);
}

.footer__column h3 {
  margin-bottom: 22px;
  color: var(--green);
  font-family: var(--font-title);
  font-size: 14px;
  text-transform: uppercase;
}

.footer__column a,
.footer__column p {
  display: block;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
  transition: var(--transition);
}

.footer__column a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer__bottom {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  padding: 18px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--white);
}


/* =========================
   FOOTER LOGO
========================= */

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo-image {
  width: 170px;
  height: auto;
  display: block;
}

.footer__logo-subtitle {
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.3;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  font-weight: 500;
}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: var(--transition);
}


/* =========================
   HEADER SCROLLED + ACTIVE LINK
========================= */

.header.scrolled {
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

.nav a.active {
  color: var(--green);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--green);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: var(--green);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 10px;
}


/* =========================
   SITE LOADER
========================= */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background:
    radial-gradient(
      circle at center,
      rgba(0,166,81,0.14),
      transparent 40%
    ),
    #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  animation: loaderAutoHide 0.8s ease forwards;
  animation-delay: 2.5s;
}

.site-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.site-loader__content {
  text-align: center;
  padding: 32px;
}

.site-loader__logo {
  width: 220px;
  margin-inline: auto;
  margin-bottom: 34px;
  animation: loaderFloat 3s ease-in-out infinite;
}

.site-loader h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 54px);
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--white);
}

.site-loader p {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.7;
}

@keyframes loaderFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes loaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}


/* =========================
   ANIMATED LOGO
========================= */

.logo__image.logo--animated {
  animation:
    logoFloat 4s ease-in-out infinite,
    logoGlow 3s ease-in-out infinite,
    logoFade 1.2s ease;

  filter:
    drop-shadow(0 0 8px rgba(0,166,81,0.25))
    drop-shadow(0 0 18px rgba(0,166,81,0.12));
}

@keyframes logoFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes logoGlow {
  0% {
    filter:
      drop-shadow(0 0 8px rgba(0,166,81,0.22))
      drop-shadow(0 0 18px rgba(0,166,81,0.10));
  }

  50% {
    filter:
      drop-shadow(0 0 12px rgba(0,166,81,0.55))
      drop-shadow(0 0 26px rgba(0,166,81,0.28));
  }

  100% {
    filter:
      drop-shadow(0 0 8px rgba(0,166,81,0.22))
      drop-shadow(0 0 18px rgba(0,166,81,0.10));
  }
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform:
      translateY(-10px)
      scale(0.95);
  }

  to {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
  }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__content {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    background: rgba(5,5,5,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.88)
      ),
      url("../img/hero-fullbrain.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__feature:nth-child(2) {
    border-right: none;
  }

  .hero__feature {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .hero__feature:nth-child(3),
  .hero__feature:nth-child(4) {
    border-bottom: none;
  }

  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card--large {
    grid-row: span 1;
  }

  .quote-section__content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    letter-spacing: -2px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 410px;
  }
}

@media (max-width: 560px) {
  .header .btn {
    display: none;
  }

  .hero__content {
    padding-top: 110px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero p {
    font-size: 16px;
  }

  .hero__features {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .hero__feature {
    border-right: none;
    padding: 22px;
  }

  .hero__feature:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .hero__feature:last-child {
    border-bottom: none;
  }

  .services,
  .why-us,
  .portfolio,
  .quote-section {
    padding: 72px 0;
  }

  .section__header h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .service-card {
    min-height: 400px;
  }

  .service-card__image {
    height: 160px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 14px;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form input,
  .quote-form select,
  .file-field {
    min-height: 58px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0;
  }
}