/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f4f3ef;
  color: #111111;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {
  --black: #111111;
  --dark: #171717;
  --white: #ffffff;
  --cream: #f4f3ef;
  --soft: #e7e5df;
  --muted: #777777;
  --line: rgba(17, 17, 17, 0.12);
  --green: #c7f65b;
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 82px;

  padding: 0 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 1000;

  background: rgba(244, 243, 239, 0.82);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  background: var(--black);
  color: var(--white);

  border-radius: 11px;

  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 18px;

  transform: rotate(-4deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: -0.5px;
}

.brand-text small {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav > a:not(.nav-cta) {
  font-size: 13px;
  font-weight: 500;
  color: #4c4c4c;

  transition: color 0.25s ease;
}

.nav > a:not(.nav-cta):hover {
  color: #000;
}

.nav-cta {
  background: var(--black);
  color: white;

  padding: 12px 18px;
  border-radius: 100px;

  font-size: 13px;
  font-weight: 600;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #292929;
}

.menu-btn {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 50%;

  background: var(--black);

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 17px;
  height: 1.5px;
  background: white;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;

  top: 82px;
  left: 0;

  width: 100%;

  padding: 30px 6vw 35px;

  background: #111;
  color: white;

  z-index: 999;

  display: none;
  flex-direction: column;
  gap: 20px;

  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 19px;
}

.mobile-cta {
  margin-top: 8px;

  padding: 15px 20px;

  background: white;
  color: black;

  text-align: center;

  border-radius: 100px;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  min-height: 100vh;

  padding:
    150px 5vw
    80px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, 0.95fr);

  align-items: center;

  gap: 5vw;

  overflow: hidden;
}

.hero-bg {
  position: absolute;

  width: 700px;
  height: 700px;

  right: -280px;
  top: 70px;

  background:
    radial-gradient(
      circle,
      rgba(199, 246, 91, 0.22),
      transparent 67%
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 750px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 13px;

  border: 1px solid var(--line);

  border-radius: 100px;

  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 700;

  color: #555;

  margin-bottom: 25px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #80a827;
}

.hero h1 {
  font-family: "Manrope", sans-serif;

  font-size: clamp(52px, 7vw, 100px);

  line-height: 0.94;

  letter-spacing: -5px;

  max-width: 850px;

  font-weight: 800;
}

.hero h1 span {
  color: #777;
}

.hero-description {
  max-width: 590px;

  margin-top: 29px;

  font-size: 17px;

  line-height: 1.75;

  color: #696969;
}

.hero-buttons {
  display: flex;
  gap: 12px;

  margin-top: 36px;
}

.btn {
  min-height: 51px;

  padding: 0 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border-radius: 100px;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--black);
  color: white;
}

.btn-dark span {
  font-size: 18px;
}

.btn-light {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
}

.hero-meta {
  display: flex;

  gap: 38px;

  margin-top: 55px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-meta strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.hero-meta span {
  color: #888;
  font-size: 11px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
  position: relative;

  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-main {
  width: min(500px, 90%);

  min-height: 460px;

  background: #161616;
  color: white;

  border-radius: 28px;

  padding: 24px;

  transform: rotate(3deg);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.2);
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 10px;
  letter-spacing: 2px;

  color: #aaa;
}

.visual-dots {
  display: flex;
  gap: 5px;
}

.visual-dots i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #555;
}

.visual-content {
  margin-top: 115px;
}

.mini-label {
  color: #a9a9a9;

  font-size: 9px;

  letter-spacing: 2.5px;
}

.visual-content h3 {
  font-family: "Manrope", sans-serif;

  font-size: clamp(40px, 4vw, 62px);

  line-height: 0.96;

  letter-spacing: -3px;

  margin-top: 14px;
}

.visual-line {
  width: 100%;
  height: 1px;

  background: rgba(255,255,255,0.14);

  margin-top: 60px;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 22px;
}

.visual-stats div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.visual-stats strong {
  font-size: 12px;
}

.visual-stats span {
  font-size: 9px;
  color: #777;
}

.floating-card {
  position: absolute;

  background: white;

  border: 1px solid rgba(0,0,0,0.08);

  padding: 16px 18px;

  border-radius: 14px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.08);

  z-index: 4;
}

.floating-card span {
  font-size: 9px;
  color: #999;
}

.floating-card strong {
  font-size: 12px;
}

.floating-one {
  left: 0;
  bottom: 100px;
  transform: rotate(-5deg);
}

.floating-two {
  right: 0;
  top: 100px;
  transform: rotate(5deg);
}


/* =========================
   TRUST
========================= */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  padding: 24px 5vw;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  color: #8a8a8a;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 140px 5vw;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 700;

  color: #858585;
}

.section-label span {
  color: #111;
}

.section h2 {
  font-family: "Manrope", sans-serif;

  font-size: clamp(42px, 5vw, 76px);

  line-height: 0.98;

  letter-spacing: -4px;

  font-weight: 800;
}

.section h2 span {
  color: #8a8a8a;
}


/* =========================
   ABOUT
========================= */

.about {
  background: #fff;
}

.about-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  gap: 10vw;
}

.about-heading h2 {
  max-width: 780px;
}

.about-copy {
  padding-top: 10px;
}

.about-copy p {
  color: #737373;

  line-height: 1.8;

  font-size: 15px;

  margin-bottom: 23px;
}

.text-link {
  display: inline-flex;
  gap: 10px;

  margin-top: 15px;

  font-size: 13px;
  font-weight: 700;

  border-bottom: 1px solid #111;

  padding-bottom: 6px;
}


/* =========================
   WORK
========================= */

.work {
  background: var(--cream);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;
}

.section-head h2 {
  margin-top: 28px;
}

.section-head > p {
  max-width: 310px;

  color: #777;

  font-size: 14px;
  line-height: 1.7;
}

.projects-grid {
  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;
}

.project-card {
  background: white;

  border-radius: 22px;

  overflow: hidden;

  border: 1px solid rgba(0,0,0,0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.08);
}

.project-image {
  height: 410px;

  padding: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.project-one .project-image {
  background: #e9e4d9;
}

.project-two .project-image {
  background: #dfe4df;
}

.project-three .project-image {
  background: #ddd9e4;
}

.project-four .project-image {
  background: #202020;
}

.project-browser {
  width: 88%;
  height: 84%;

  background: white;

  border-radius: 12px;

  overflow: hidden;

  box-shadow:
    0 25px 50px rgba(0,0,0,0.16);

  transform: rotate(-2deg);

  transition: transform 0.4s ease;
}

.project-card:hover .project-browser {
  transform: rotate(0deg) scale(1.02);
}

.browser-bar {
  height: 27px;

  display: flex;
  align-items: center;

  gap: 5px;

  padding: 0 10px;

  background: #f1f1f1;
}

.browser-bar span {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #bbb;
}

.project-preview {
  height: calc(100% - 27px);

  padding: 26px;

  display: flex;
  flex-direction: column;
}

.preview-one {
  background:
    linear-gradient(140deg, #f7f1e4, #ded4c2);
  color: #222;
}

.preview-two {
  background:
    linear-gradient(140deg, #d6e0d7, #8d9d91);
  color: #142019;
}

.preview-three {
  background:
    linear-gradient(140deg, #e8e5ec, #a8a1b4);
  color: #28252e;
}

.preview-four {
  background:
    linear-gradient(140deg, #252525, #050505);
  color: white;
}

.preview-brand {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}

.preview-title {
  margin-top: auto;

  font-family: "Manrope", sans-serif;

  font-size: clamp(25px, 3vw, 44px);

  line-height: 0.95;

  letter-spacing: -2px;

  font-weight: 800;
}

.preview-button {
  width: fit-content;

  margin-top: 18px;

  padding: 7px 12px;

  border-radius: 100px;

  background: rgba(255,255,255,0.55);

  font-size: 8px;
  font-weight: 700;
}

.project-info {
  padding: 27px 30px 31px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 25px;
}

.project-number {
  color: #aaa;

  font-size: 9px;
  letter-spacing: 1px;
}

.project-info h3 {
  margin-top: 7px;

  font-family: "Manrope", sans-serif;

  font-size: 21px;
  letter-spacing: -0.8px;
}

.project-info p {
  margin-top: 6px;

  font-size: 11px;

  color: #888;
}

.project-link {
  white-space: nowrap;

  font-size: 11px;
  font-weight: 700;

  border-bottom: 1px solid #111;

  padding-bottom: 4px;
}

.work-note {
  margin-top: 45px;

  padding-top: 23px;

  border-top: 1px solid var(--line);

  display: flex;
  justify-content: space-between;

  color: #888;
}

.work-note span {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #111;
}

.work-note p {
  font-size: 12px;
}


/* =========================
   SERVICES
========================= */

.services {
  background: #fff;
}

.services-heading {
  margin-top: 55px;
}

.services-list {
  margin-top: 70px;

  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;

  grid-template-columns:
    80px
    1fr
    1fr
    40px;

  align-items: center;

  gap: 30px;

  min-height: 145px;

  border-bottom: 1px solid var(--line);

  transition:
    padding 0.3s ease,
    background 0.3s ease;
}

.service-row:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: #fafafa;
}

.service-number {
  color: #999;

  font-size: 10px;
  letter-spacing: 1px;
}

.service-title h3 {
  font-family: "Manrope", sans-serif;

  font-size: clamp(25px, 3vw, 39px);

  letter-spacing: -1.5px;
}

.service-description p {
  color: #777;

  font-size: 13px;
  line-height: 1.7;

  max-width: 370px;
}

.service-arrow {
  font-size: 20px;
}


/* =========================
   PRICING
========================= */

.pricing {
  background: var(--cream);
}

.pricing-grid {
  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.price-card {
  position: relative;

  background: white;

  border-radius: 20px;

  padding: 30px;

  min-height: 500px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(0,0,0,0.06);
}

.price-card.featured {
  background: #161616;
  color: white;
}

.featured-badge {
  position: absolute;

  top: 0;
  right: 28px;

  padding: 7px 11px;

  border-radius: 0 0 8px 8px;

  background: var(--green);
  color: #111;

  font-size: 7px;
  letter-spacing: 1.4px;
  font-weight: 800;
}

.price-top {
  display: flex;
  justify-content: space-between;

  align-items: center;
}

.price-label {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 800;
}

.price-number {
  font-size: 10px;
  color: #999;
}

.price-card h3 {
  margin-top: 45px;

  font-family: "Manrope", sans-serif;

  font-size: 42px;

  letter-spacing: -2px;
}

.price-description {
  margin-top: 10px;

  color: #888;

  font-size: 12px;
  line-height: 1.6;
}

.featured .price-description {
  color: #aaa;
}

.price-divider {
  height: 1px;

  background: var(--line);

  margin: 30px 0 20px;
}

.featured .price-divider {
  background: rgba(255,255,255,0.12);
}

.price-card ul {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 13px;
}

.price-card li {
  font-size: 12px;
  color: #666;
}

.featured li {
  color: #d0d0d0;
}

.price-bottom {
  margin-top: auto;

  padding-top: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--line);
}

.featured .price-bottom {
  border-color: rgba(255,255,255,0.12);
}

.price-bottom span {
  font-size: 10px;
  color: #999;
}

.price-bottom a {
  font-size: 10px;
  font-weight: 800;

  border-bottom: 1px solid currentColor;

  padding-bottom: 4px;
}

.advance-note {
  text-align: center;

  margin-top: 25px;

  font-size: 11px;

  color: #888;
}


/* =========================
   PROCESS
========================= */

.process {
  background: #fff;
}

.process-heading {
  margin-top: 55px;
}

.process-grid {
  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-card {
  min-height: 300px;

  padding: 28px;

  border-right: 1px solid var(--line);

  display: flex;
  flex-direction: column;
}

.process-card:last-child {
  border-right: none;
}

.process-card > span {
  font-size: 10px;
  color: #999;
}

.process-card h3 {
  margin-top: auto;

  font-family: "Manrope", sans-serif;

  font-size: 25px;

  letter-spacing: -1px;
}

.process-card p {
  margin-top: 13px;

  color: #777;

  font-size: 12px;
  line-height: 1.7;
}


/* =========================
   CONTACT
========================= */

.contact {
  background: var(--cream);

  padding-top: 80px;
}

.contact-card {
  position: relative;

  overflow: hidden;

  min-height: 540px;

  background: #111;

  color: white;

  border-radius: 28px;

  padding: 70px;

  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  align-items: center;

  gap: 50px;
}

.contact-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -100px;
  bottom: -250px;

  background:
    radial-gradient(
      circle,
      rgba(199,246,91,0.18),
      transparent 68%
    );
}

.section-label.light {
  color: #777;
}

.section-label.light span {
  color: #aaa;
}

.contact h2 {
  margin-top: 25px;

  max-width: 800px;

  font-family: "Manrope", sans-serif;

  font-size: clamp(43px, 6vw, 78px);

  line-height: 0.97;

  letter-spacing: -4px;
}

.contact h2 span {
  color: #777;
}

.contact-content > p {
  margin-top: 25px;

  max-width: 530px;

  color: #999;

  font-size: 14px;
  line-height: 1.7;
}

.contact-button {
  margin-top: 35px;

  display: inline-flex;
  align-items: center;
  gap: 20px;

  padding: 15px 21px;

  background: white;
  color: #111;

  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;

  transition: transform 0.25s ease;
}

.contact-button:hover {
  transform: translateY(-3px);
}

.contact-button span {
  font-size: 17px;
}

.contact-side {
  position: relative;
  z-index: 2;

  justify-self: end;

  width: 230px;
  height: 230px;

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 50%;

  display: flex;
  flex-direction: column;

  justify-content: center;

  padding: 35px;
}

.contact-side span {
  font-size: 8px;
  letter-spacing: 2px;
  color: #777;
}

.contact-side strong {
  margin-top: 18px;

  font-family: "Manrope", sans-serif;

  font-size: 24px;

  line-height: 1;

  letter-spacing: -1px;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: #111;

  color: white;

  padding: 65px 5vw 30px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  padding-bottom: 65px;
}

.footer-brand .brand-mark {
  background: white;
  color: #111;
}

.footer-brand .brand-text small {
  color: #666;
}

.footer-main > p {
  color: #777;

  font-size: 12px;

  margin-right: auto;
  margin-left: 70px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #aaa;

  font-size: 11px;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,0.09);

  display: flex;
  justify-content: space-between;

  color: #555;

  font-size: 9px;
}


/* =========================
   ANIMATIONS
========================= */

.hero-content,
.hero-visual {
  animation: reveal 0.8s ease both;
}

.hero-visual {
  animation-delay: 0.15s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

  .nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .hero-content {
    max-width: 850px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 440px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:nth-child(2) {
    border-right: none;
  }

  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-side {
    display: none;
  }

}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

  .header {
    height: 72px;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .mobile-menu {
    top: 72px;
  }

  .hero {
    padding:
      120px 6vw
      70px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    gap: 22px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .card-main {
    min-height: 390px;
  }

  .floating-one {
    left: -5px;
    bottom: 55px;
  }

  .floating-two {
    right: -5px;
    top: 55px;
  }

  .section {
    padding: 95px 6vw;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip {
    overflow: hidden;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .service-row {
    grid-template-columns: 45px 1fr 35px;
  }

  .service-description {
    grid-column: 2 / 3;
    padding-bottom: 25px;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 220px;

    border-right: none !important;

    border-bottom: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: none;
  }

  .contact-card {
    padding: 50px 30px;
    min-height: 500px;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-main > p {
    margin: 0;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 520px) {

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -3px;
  }

  .hero-description {
    line-height: 1.65;
  }

  .hero-meta {
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 390px;
  }

  .card-main {
    width: 95%;
    min-height: 340px;
    padding: 18px;
  }

  .visual-content {
    margin-top: 80px;
  }

  .visual-content h3 {
    font-size: 39px;
  }

  .floating-card {
    padding: 12px 14px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .section h2 {
    font-size: 43px;
    letter-spacing: -2.5px;
  }

  .projects-grid {
    gap: 20px;
  }

  .project-image {
    height: 300px;
    padding: 20px;
  }

  .project-info {
    padding: 22px;
  }

  .project-info h3 {
    font-size: 18px;
  }

  .project-info p {
    max-width: 150px;
  }

  .service-row {
    min-height: 125px;
    gap: 15px;
  }

  .service-title h3 {
    font-size: 23px;
  }

  .service-description p {
    font-size: 11px;
  }

  .price-card {
    min-height: 450px;
    padding: 25px;
  }

  .price-card h3 {
    font-size: 38px;
  }

  .contact {
    padding-top: 50px;
  }

  .contact-card {
    border-radius: 20px;
    padding: 40px 25px;
  }

  .contact h2 {
    font-size: 43px;
    letter-spacing: -2.5px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

}