@font-face {
  font-family: "PoppinsBold";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PoppinsMedium";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PoppinsRegular";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PoppinsSemiBold";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.woff2") format("woff2"),
    url("../fonts/BebasNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "PoppinsRegular", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #181818;
  color: #ffffff;
}

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

.header {
  padding: 24px 0;
  background-color: #181818;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.nav a:hover {
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #ff7a00;
  color: #fff;
}

.btn-accent {
  background-color: #ff7a00;
  color: #fff;
  margin-top: 32px;
}

.btn:hover {
  background-color: #ff8f26;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.hero {
  padding: 60px 0 80px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  min-height: calc(100vh - 100px);
}

.hero-text {
  font-family: "PoppinsSemiBold";
  max-width: 520px;
}

.hero-intro {
  font-family: "PoppinsSemiBold";
  font-size: 16px;
  margin-bottom: 6px;
}

.hero-name {
  font-family: "PoppinsSemiBold";
  font-size: 20px;
  font-weight: 600;
  color: #ff7a00;
  margin-bottom: 18px;
}

.hero-title {
  font-family: "PoppinsMedium";
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-description {
  font-family: "PoppinsRegular";
  font-size: 14px;
  color: #c4c4c4;
  line-height: 1.7;
}

.hero-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.photo-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 8px solid #ff7a00;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-circle img {
  width: 100%;
  height: auto;
}

.social-links {
  display: flex;
  gap: 18px;
}

.about {
  padding: 60px 0 80px;
  background-color: #181818;
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 8px solid #ff7a00;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo img {
  width: 100%;
  height: auto;
}

.about-right {
  flex: 1.2;
}

.about-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #c4c4c4;
  max-width: 520px;
  margin-bottom: 24px;
}

.skills {
  margin-top: 8px;
}

.skill {
  margin-bottom: 20px;
}

.skill-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.skill-line {
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 999px;
  position: relative;
}

.skill-fill {
  height: 100%;
  background-color: #ff7a00;
  border-radius: 999px;
  position: relative;
}

.skill-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 3px solid #ff7a00;
}
.about-right {
  max-width: 100%;
}

.services {
  background: #181818;
  padding: 80px 0;
}

.services-title {
  font-family: "PoppinsSemiBold";
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.services-subtitle {
  font-family: "PoppinsRegular";
  text-align: center;
  color: #d9d9d9;
  max-width: 932px;
  margin: 15px auto 50px;
  line-height: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 330px);
  justify-content: center;
  gap: 30px;
}

.service-card {
  width: 330px;
  height: 346px;
  align-content: center;
  background: #fff;
  border-radius: 18px;
  padding: 34px 26px;
  box-sizing: border-box;
}

.service-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.service-name {
  width: 95px;
  height: 48px;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  letter-spacing: 3%;
  line-height: 100%;
}

.service-text {
  margin: 0;
  color: #333;
  line-height: 1.6;
  font-size: 14px;
}

.title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
  margin-top: 139px;
}

.desc {
  max-width: 921px;
  margin: 22px auto 26px;
  color: #cfcfcf;
  line-height: 1.4;
  font-size: 18px;
  text-align: center;
}

.filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  background: #eee;
  color: #111;
  cursor: pointer;
  font-size: 14px;
}

.filter-btn.active {
  background: #ff7a00;
  color: #fff;
}

.cards {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}

.card {
  width: 360px;
}

.img-box {
  background: #f1e7dc;
  border-radius: 12px;
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag {
  margin-top: 14px;
  color: #ff7a00;
  font-size: 13px;
}

.card-title {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.card:hover .img-box {
  transform: translateY(-3px);
  transition: 0.2s;
}

.testimonials {
  padding: 100px 0;
  background: #181818;
  text-align: center;
}

.testimonials-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonials-desc {
  max-width: 760px;
  margin: 0 auto 60px;
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 900px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.testimonial-photo {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  color: #333;
}

.testimonial-text {
  font-size: 21px;
  line-height: 100%;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 2%;
}

.quote {
  color: #ff7a00;
  font-size: 32px;
  font-weight: 700;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #000;
}

.testimonial-role {
  font-size: 13px;
  color: #666;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots span {
  width: 28px;
  height: 8px;
  background: #d9d9d9;
  border-radius: 20px;
}

.testimonial-dots span.active {
  background: #ff7a00;
}

.contact {
  padding: 90px 0;
}

.contact-title {
  text-align: center;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-desc {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
  color: #d9d9d9;
  line-height: 1.6;
  font-size: 14px;
}

.contact-form {
  max-width: 950px;
  margin: 0 auto;
}

.contact-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.contact-row input {
  width: 312px;
  height: 76px;
  border-radius: 12px;
  border: none;
  outline: none;
  padding: 0 22px;
  font-size: 16px;
}

.contact-form textarea {
  width: 950px;
  height: 116px;
  padding: 20px;
  margin-bottom: 26px;
  border: 1px;
  border-radius: 14px;
}

.contact-btn {
  display: block;
  margin: 0 auto;
  border: none;
  background: #ff7a00;
  color: #fff;
  padding: 16px 60px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.contact-btn:hover {
  background: #ff8f26;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-box {
  width: min(560px, 95%);
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 26px 22px;
  text-align: center;
}

.modal-box p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 18px;
}

.modal-btn {
  border: none;
  background: #ff7a00;
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  width: 100%;
  min-height: 547px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-inner {
  background: #181818;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-top: 200px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials img {
  margin-top: 80px;
}

.footer-bottom {
  background: #111;
  color: #cfcfcf;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

.menu-btn {
  display: none;
  width: 38px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 99px;
  margin: 6px 0;
}

@media (max-width: 420px) {
  .container {
    width: 90%;
  }

  .header {
    padding: 18px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .btn-primary {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-inner {
    flex-direction: column;
    min-height: auto;
    gap: 28px;
    align-items: flex-start;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-image-block {
    width: 100%;
    align-items: center;
  }

  .photo-circle {
    width: 240px;
    height: 240px;
    border-width: 7px;
  }

  .social-links img {
    width: 22px;
    height: 22px;
    display: block;
  }

  .about-inner {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-photo {
    width: 240px;
    height: 240px;
    border-width: 7px;
    margin: 0 auto;
  }

  .about-title {
    font-size: 28px;
  }

  .services {
    padding: 60px 0;
  }

  .services-title {
    font-size: 30px;
  }

  .services-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin: 12px auto 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    width: 100%;
    height: auto;
  }

  .service-name {
    font-size: 22px;
    width: auto;
    height: auto;
  }

  .title {
    font-size: 30px;
    margin-top: 70px;
  }

  .desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .filters {
    gap: 10px;
    justify-content: flex-start;
  }

  .filter-btn {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .card {
    width: 100%;
    max-width: 340px;
  }

  .img-box {
    height: 420px;
  }

  .testimonials {
    padding: 70px 0;
  }

  .testimonials-title {
    font-size: 30px;
  }

  .testimonials-desc {
    font-size: 13px;
    margin: 0 auto 30px;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: left;
    padding: 26px 18px;
    gap: 18px;
  }

  .testimonial-photo {
    width: 90px;
    height: 90px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .testimonial-dots span {
    width: 26px;
    height: 8px;
  }

  .contact {
    padding: 60px 0 80px;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-desc {
    font-size: 13px;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-row {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
  }

  .contact-row input {
    width: 100%;
    height: 60px;
    border-radius: 12px;
  }

  .contact-form textarea {
    width: 100%;
    height: 110px;
    border-radius: 12px;
  }

  .contact-btn {
    width: 100%;
    max-width: 260px;
    padding: 14px 0;
  }

  .footer {
    min-height: auto;
  }

  .footer-inner {
    margin-top: 0;
    padding: 50px 0;
    gap: 24px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-socials img {
    margin-top: 0;
    width: 22px;
    height: 22px;
    display: block;
  }
}

.burger {
  display: none;
}
