* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #050505;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}

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

.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 50px;
}

.header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-word {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.logo-lead {
  color: #ffffff;
}

.logo-up {
  color: #ff5a00;
  position: relative;
  display: inline-block;
}

.logo-up::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 17px;
  top: -9px;
  right: -18px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='17' viewBox='0 0 20 17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 13 C7 11 10 7 14 4' stroke='%23ff5a00' stroke-width='2.8' stroke-linecap='round' fill='none'/%3E%3Cpath d='M12 3 L19 1 L17 8 Z' fill='%23ff5a00'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.logo-up::before {
  content: none;
}

.logo-sub {
  margin-top: 6px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 9px;
  text-transform: uppercase;
  opacity: 1;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-img {
  width: 190px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #c7c7c7;
  font-size: 15px;
}

.nav a:hover {
  color: #ff5a00;
}

.top-btn,
.btn,
.order-btn,
.telegram-btn {
  border-radius: 6px;
  transition: 0.2s;
}

.top-btn {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  padding: 18px 28px;
  font-weight: 700;
}

.top-btn:hover,
.btn.primary:hover,
.telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 90, 0, 0.35);
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 80px 80px auto auto;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.3), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.eyebrow {
  color: #b9b9b9;
  font-size: 17px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.eyebrow::after {
  content: "";
  width: 38px;
  height: 2px;
  background: #ff5a00;
}

h1 {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-weight: 950;
}

h1 span {
  color: #ff5a00;
}

.hero-text {
  margin-top: 24px;
  color: #b8b8b8;
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn.primary {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
}

.btn.secondary {
  border: 1px solid rgba(255, 90, 0, 0.55);
  color: #d8d8d8;
}

.proof {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b8b8b8;
}

.proof b {
  color: #ff5a00;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd3bd, #6e6e6e);
  border: 2px solid #050505;
  margin-left: -8px;
  color: #151515;
  font-weight: 800;
}

.avatars span:first-child {
  margin-left: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  position: relative;
}

.laptop-card {
  width: min(520px, 100%);
  aspect-ratio: 1.35 / 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent),
    radial-gradient(circle at 75% 45%, rgba(255, 90, 0, 0.45), transparent 30%),
    #0b0b0b;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 70px rgba(255, 90, 0, 0.16);
  transform: perspective(900px) rotateY(-12deg) rotateX(6deg);
  padding: 22px;
}

.screen {
  height: 100%;
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 122, 0, 0.35), transparent 28%),
    linear-gradient(135deg, #151515, #060606);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  color: #a4a4a4;
  font-size: 12px;
}

.screen-content p {
  color: #cfcfcf;
  margin-bottom: 8px;
}

.screen-content h3 {
  font-size: 27px;
  max-width: 280px;
  line-height: 1.1;
}

.screen-content button {
  margin-top: 18px;
  background: #ff7a00;
  border: none;
  color: #111;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 800;
}

.screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.screen-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.screen-stats b {
  font-size: 18px;
}

.screen-stats span {
  color: #929292;
  font-size: 12px;
}

.section {
  margin-top: 44px;
}

.section h2 {
  color: #ff5a00;
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}

.feature {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.09);
}

.feature:last-child {
  border-right: none;
}

.icon {
  color: #ff5a00;
  font-size: 34px;
  margin-bottom: 12px;
}

.feature h3,
.work h3,
.price-card h3,
.process h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p,
.work p,
.price-card p,
.process p,
.faq p,
.contact p {
  color: #aaa;
  line-height: 1.5;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(255,90,0,0.32), transparent 35%);
  z-index: -1;
}

.work-1 {
  background: linear-gradient(135deg, #27120b, #050505);
}

.work-2 {
  background: linear-gradient(135deg, #1c1c1c, #050505);
}

.work-3 {
  background: linear-gradient(135deg, #21150e, #050505);
}

.work strong {
  display: block;
  margin-top: 12px;
  color: #ff5a00;
  font-size: 28px;
}

.work a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 24px;
}

.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
}

.price-card.popular {
  border-color: #ff5a00;
  box-shadow: 0 0 35px rgba(255, 90, 0, 0.13);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  color: #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
}

.price {
  margin: 22px 0 16px;
  color: #aaa;
}

.price b {
  color: #ff5a00;
  font-size: 30px;
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.price-card li {
  color: #cfcfcf;
}

.price-card li::before {
  content: "✓";
  color: #ff8a00;
  margin-right: 8px;
}

.order-btn {
  width: 100%;
  height: 48px;
  border: 1px solid #ff5a00;
  display: grid;
  place-items: center;
  color: #ff5a00;
  font-weight: 800;
}

.order-btn.filled {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  color: white;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}

.process b {
  color: #ff5a00;
}

.faq {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}

details {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 22px;
}

details:last-child {
  border-bottom: none;
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  color: #d6d6d6;
}

summary::after {
  content: "+";
  color: #fff;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 12px;
}

.contact {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 90% 50%, rgba(255, 90, 0, 0.25), transparent 25%),
    rgba(255,255,255,0.025);
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.telegram-btn {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  padding: 17px 28px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .header {
    height: auto;
    padding: 28px 0;
    flex-direction: column;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .top-btn {
    width: 100%;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .proof {
    justify-content: center;
  }

  .features,
  .portfolio,
  .prices,
  .process {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }

  .feature:last-child {
    border-bottom: none;
  }

  .contact {
    flex-direction: column;
    text-align: center;
  }

  .telegram-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .laptop-card {
    transform: none;
  }

  .screen-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 22px 14px;
    gap: 18px;
  }
  .services-section {
    padding: 18px 0 6px;
}

.services-section h2 {
    font-size: 18px;
    margin-bottom: 16px;
}

.features {
    grid-template-columns: 1fr;
}

.feature {
    min-height: auto;
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature:last-child {
    border-bottom: none;
}

.feature .icon {
    font-size: 26px;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 15px;
    line-height: 1.55;
}

  .logo-img {
    width: 120px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    font-size: 15px;
    line-height: 1.2;
  }

  .top-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 8px;
  }

  .hero {
    padding: 34px 14px 60px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
    letter-spacing: -1px;
    max-width: 100%;
    overflow-wrap: break-word;
}

  .hero-text {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}
.services-section {
  padding: 28px 0 10px;
}

.services-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ff6a00;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.feature {
  padding: 22px 20px 20px;
  min-height: 170px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature:last-child {
  border-right: none;
}

.feature .icon {
  font-size: 28px;
  line-height: 1;
  color: #ff6a00;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0 0 12px;
  line-height: 1.25;
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}
@media (max-width: 900px) {
    .services-section .features {
        display: grid;
        grid-template-columns: 1fr !important;
      }

    .services-section .feature {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 16px;
}

.services-section .feature .icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.services-section .feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.services-section .feature p {
    font-size: 15px;
    line-height: 1.5;
}

    .services-section .feature:last-child {
        border-bottom: none;
    }
}
/* Portfolio section upgrade */

#portfolio {
    padding-top: 34px;
}

#portfolio h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #ff6a00;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.portfolio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.work {
    position: relative;
    min-height: 190px;
    padding: 24px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 85% 35%, rgba(255, 106, 0, 0.25), transparent 34%),
        linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(255, 255, 255, 0.03) 45%, rgba(0, 0, 0, 0.9));
}

.work::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35));
    z-index: 0;
}

.work > div,
.work > a {
    position: relative;
    z-index: 1;
}

.work h3 {
    max-width: 250px;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.work p {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 14px;
}

.work strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #ff5a00;
}

.work a {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.35);
}

.work a:hover {
    border-color: #ff6a00;
    background: rgba(255, 106, 0, 0.16);
}
@media (max-width: 900px) {
    #portfolio {
        padding-top: 28px;
    }

    #portfolio h2 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .portfolio {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .work {
        min-height: 160px;
        padding: 22px 18px;
        border-radius: 14px;
    }

    .work h3 {
        max-width: 300px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .work p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .work strong {
        font-size: 30px;
    }

    .work a {
        width: 42px;
        height: 42px;
        right: 16px;
        bottom: 16px;
        font-size: 24px;
    }
}
#prices {
    padding-top: 28px;
}
#prices h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ff6a00;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    #prices {
        padding-top: 28px;
    }
        #prices h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
}
/* ===== Improved pricing cards ===== */

#prices :is(.pricing-grid, .prices-grid, .tariffs-grid, .pricing-cards) {
  gap: 22px;
  align-items: stretch;
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255, 106, 0, 0.22);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card):hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 106, 0, 0.12);
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

#prices :is(.price, .pricing-price, .tariff-price, .amount) {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0 22px;
  color: #ff6a00;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 30px;
  padding: 0;
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) li {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) a,
#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) button {
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6a00, #ff8a00);
  color: #0b0b0b;
  border: none;
  box-shadow: 0 14px 34px rgba(255, 106, 0, 0.24);
}

/* выделение второго тарифа */
#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card):nth-child(2) {
  border-color: rgba(255, 106, 0, 0.62);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.6),
    0 0 55px rgba(255, 106, 0, 0.16);
}

#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card):nth-child(2)::before {
  content: "Найпопулярніший";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.14);
  border: 1px solid rgba(255, 106, 0, 0.45);
  color: #ff8a00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

/* mobile pricing */
@media (max-width: 900px) {
#prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card) {
  padding: 28px 22px;
  border-radius: 22px;
}

  #prices :is(.price, .pricing-price, .tariff-price, .amount) {
    font-size: 36px;
  }

  #prices :is(.pricing-card, .price-card, .tariff-card, .plan-card, .card):nth-child(2)::before {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
}
/* ===== Header logo desktop fix ===== */

.logo img,
.header-logo img,
.nav-logo img,
header img {
  max-height: 86px;
}

.logo,
.header-logo,
.nav-logo {
  display: flex;
  align-items: center;
}

/* ===== Process section improvement ===== */

:is(#process, #work, .process, .work, .steps) {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

:is(#process, #work, .process, .work, .steps) h2 {
  text-align: center;
  color: #ff6a00;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 38px;
  text-transform: uppercase;
}

:is(.steps-grid, .process-grid, .work-grid) {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  border-top: 1px solid rgba(255, 106, 0, 0.22);
  padding-top: 34px;
}

:is(.step, .process-step, .work-step) {
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid rgba(255, 106, 0, 0.14);
}

:is(.step, .process-step, .work-step) span,
:is(.step, .process-step, .work-step) .number {
  display: block;
  color: #ff6a00;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

:is(.step, .process-step, .work-step) h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}

:is(.step, .process-step, .work-step) p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 900px) {
  .logo img,
  .header-logo img,
  .nav-logo img,
  header img {
    max-height: 62px;
  }

  :is(#process, #work, .process, .work, .steps) {
    padding-left: 20px;
    padding-right: 20px;
  }

  :is(.steps-grid, .process-grid, .work-grid) {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .logo .logo-img {
    width: 170px;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 10px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: visible;
}

.hero-mac {
  width: 145%;
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  margin-left: -18%;
}

/* Планшет */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    margin-top: 10px;
  }

  .hero-mac {
    max-width: 560px;
    margin: 0 auto;
  }
}

/* Телефон */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

 .hero-image {
  margin-top: 28px;
  overflow: visible;
}

.hero-mac {
  width: 108%;
  max-width: 470px;
  margin-left: -4%;
}
}
.why-section {
  padding: 35px 0 70px;
  background: #050505;
}

.section-label {
  color: #ff5a00;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.why-section h2 {
  text-align: center;
  color: #ff5a00;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 34px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.why-card {
  min-height: 260px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 0, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  transition: 0.25s ease;
}

.why-card:last-child {
  border-right: none;
}

.why-card:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 0, 0.28), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.why-icon {
  width: 72px;
  height: 72px;
  color: #ff5a00;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 26px;
  flex-shrink: 0;
}

.why-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.why-card h3 {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .why-section {
    padding: 70px 0 50px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .why-card {
    min-height: auto;
    padding: 28px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-card:last-child {
    border-bottom: none;
  }

  .why-icon {
    margin-bottom: 20px;
  }

  .why-card h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

  .why-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
}
.contact-section {
  padding: 80px 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(12, 12, 12, 0.95));
}

.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 48px);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

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

.hidden-field {
  display: none;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
  }
}