
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #F9F6F1;
  color: #2E2E2E;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.hero {
  padding: 80px 20px;
  background-color: #FFFDFC;
}

.logo {
  max-width: 220px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8rem;
  color: #A9746E;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.25rem;
  color: #6C6C6C;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #A9746E;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #93655F;
}

.services {
  background-color: #F9F6F1;
  padding: 60px 20px;
}

.services h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: #FFFDFC;
  border-radius: 10px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.icon-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background-image: url('../images/services-icons.png');
  background-size: 400%;
  background-repeat: no-repeat;
  background-position: center;
}

.service-dev .icon-image { background-position: 0% 0%; }
.service-mod .icon-image { background-position: 33.3% 0%; }
.service-int .icon-image { background-position: 66.6% 0%; }
.service-sup .icon-image { background-position: 100% 0%; }

.service-card h3 {
  font-size: 1.2rem;
  color: #2E2E2E;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

.icon-image {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.why-us {
  background-color: #FFFDFC;
  padding: 60px 20px;
}

.why-us h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 40px;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.reason-card {
  background-color: #F3EFEB;
  border-radius: 10px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.reason-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #A9746E;
}

.reason-card h3 {
  font-size: 1.2rem;
  color: #2E2E2E;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 1rem;
  color: #555;
}

.why-us {
  background-color: #FFFDFC;
  padding: 60px 20px;
}

.why-us h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.advantage {
  background-color: #F3EFEB;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.advantage h3 {
  color: #2E2E2E;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.advantage p {
  color: #555;
  font-size: 1rem;
}

.cases {
  background-color: #F9F6F1;
  padding: 60px 20px;
}

.cases h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 40px;
}

.cases-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
}

.case-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #FFFDFC;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.case-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.case-card h3 {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  color: #2E2E2E;
}

.case-card p {
  font-size: 0.95rem;
  color: #555;
}

.workflow {
  background-color: #FFFDFC;
  padding: 60px 20px;
}

.workflow h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 40px;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background-color: #F3EFEB;
  border-radius: 10px;
  padding: 25px 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  position: relative;
}

.step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #A9746E;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1rem;
}

.cases {
  background-color: #F9F6F1;
  padding: 60px 20px;
}

.cases h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 40px;
}

.cases-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
}

.case-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #FFFDFC;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.case-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.case-card h3 {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  color: #2E2E2E;
}

.case-card p {
  font-size: 0.95rem;
  color: #555;
}

.workflow {
  background-color: #FFFDFC;
  padding: 60px 20px;
}

.workflow h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 40px;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background-color: #F3EFEB;
  border-radius: 10px;
  padding: 25px 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  position: relative;
}

.step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #A9746E;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact {
  background-color: #F3EFEB;
  padding: 60px 20px;
}

.contact h2 {
  font-size: 2rem;
  color: #A9746E;
  margin-bottom: 30px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  border: none;
  background-color: #A9746E;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #93655F;
}

.contact-info {
  flex: 1 1 250px;
  font-size: 1rem;
  color: #333;
}

.contact-info p {
  margin: 10px 0;
}

.site-footer {
  background-color: #2E2E2E;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.95rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.site-header {
  background-color: #FFFDFC;
  padding: 0px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.navbar {
  position: relative;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #2E2E2E;
  font-weight: bold;
  font-size: 0.95rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 2px;
}

/* Адаптив */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #FFFDFC;
    position: absolute;
    right: 0;
    top: 60px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    width: 180px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
