@media (max-width: 1366px) {
  :root {
    --section-py: 100px;
    --container: 1200px;
  }

  .hero {
    padding-top: 140px;
    min-height: 760px;
  }

  .hero__grid {
    min-height: 620px;
  }

  .process__timeline {
    height: 440px;
  }
}

@media (max-width: 1280px) {
  .navbar__menu {
    gap: 0;
  }

  .navbar__link {
    padding: 8px 12px;
    font-size: var(--fs-xs);
  }

  .hero__reviews {
    right: 0;
    width: 280px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .container {
    padding: 0 24px;
  }

  .navbar__menu {
    display: none;
  }

  .navbar__toggle {
    display: inline-flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__inner {
    padding: 12px 16px 12px 24px;
  }

  .navbar__logo-img {
    height: 44px;
    width: 44px;
  }

  .navbar__logo-main {
    font-size: 16px;
  }

  .navbar__logo-sub {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "reviews"
      "title"
      "desc"
      "start";
    gap: var(--space-5);
    min-height: auto;
    padding-bottom: var(--space-8);
    text-align: center;
    justify-items: center;
  }

  .hero__badge,
  .hero__title,
  .hero__description,
  .hero__reviews,
  .hero__start-wrap {
    justify-self: center;
    text-align: center;
  }

  .hero__description {
    text-align: center;
  }

  .hero__reviews {
    text-align: left;
    max-width: 320px;
  }

  .hero__start-wrap {
    display: flex;
    justify-content: center;
  }

  .hero__photo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% - 40px);
    max-width: 420px;
    height: 500px;
    margin: 0 auto var(--space-6);
    order: -1;
    border-radius: var(--radius-lg);
  }

  .hero__overlay {
    background: linear-gradient(180deg,
      rgba(17, 26, 34, 0.3) 0%,
      rgba(17, 26, 34, 0.1) 40%,
      rgba(17, 26, 34, 0.75) 100%);
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    padding: var(--space-8) 0 var(--space-6);
    text-align: center;
  }

  .stat-card {
    align-items: center;
  }

  .about__grid,
  .services__header,
  .projects__header,
  .process__header,
  .testimonials__header,
  .faq__grid,
  .cta-final__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .testimonials__header {
    align-items: flex-start;
  }

  .cta-final__inner {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .process__timeline {
    height: auto;
    display: none;
  }

  .process__mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: relative;
  }

  .process__mobile::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), rgba(201, 167, 77, 0.2));
  }

  .process__step {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    flex-direction: row;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-5);
  }

  .process__step--mobile {
    display: flex;
    align-items: center;
    gap: var(--space-4);
  }

  .process__step-dot {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .process__step-content {
    flex: 1;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }

  .process__step-title {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--text-dark);
    margin-bottom: var(--space-1);
  }

  .process__step-text {
    font-size: var(--fs-sm);
    color: var(--text-secondary-dark);
  }
}

@media (min-width: 1025px) {
  .process__mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    padding-top: 110px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .hero__title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .hero__photo {
    height: 440px;
    width: calc(100% - 32px);
  }

  .hero__reviews {
    max-width: 300px;
    padding: var(--space-4);
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    padding: var(--space-8) 0;
    text-align: center;
  }

  .stat-card {
    align-items: center;
  }

  .hero__reviews-platforms .platform {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .about__title,
  .services__title,
  .projects__title,
  .process__title,
  .testimonials__title,
  .faq__title,
  .cta-final__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .service-card {
    flex: 0 0 300px;
  }

  .projects__table-head,
  .projects__table-row {
    grid-template-columns: 1.5fr 1fr 1fr 60px;
    gap: var(--space-3);
    padding: var(--space-4) 0;
  }

  .projects__row-title {
    font-size: var(--fs-md);
  }

  .projects__row-date {
    font-size: var(--fs-sm);
  }

  .projects__table-row--active .projects__row-image {
    display: none;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .testimonial__avatar {
    max-width: 200px;
  }

  .testimonial__card {
    padding: var(--space-6);
  }

  .testimonial__quote-mark {
    font-size: 120px;
    top: -10px;
    right: var(--space-6);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__hero-text {
    font-size: clamp(80px, 22vw, 160px);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__photo {
    height: 400px;
    width: calc(100% - 24px);
  }

  .hero__photo img {
    object-position: 35% center;
  }

  .hero__reviews {
    max-width: 280px;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    text-align: center;
  }

  .stat-card {
    align-items: center;
  }

  .stat-card__value {
    font-size: 28px;
  }

  .service-card {
    flex: 0 0 86vw;
  }

  .service-card__image {
    height: 180px;
  }

  .projects__table-head,
  .projects__table-row {
    grid-template-columns: 1fr 1fr 60px;
  }

  .projects__table-head .projects__row-category,
  .projects__table-row .projects__row-category {
    display: none;
  }

  .projects__table-head {
    display: none;
  }

  .projects__table-row {
    grid-template-columns: 1fr 60px;
    grid-template-rows: auto auto;
    gap: var(--space-2);
  }

  .projects__row-category {
    grid-column: 1;
    justify-self: start;
  }

  .projects__row-date {
    grid-column: 1;
    font-size: var(--fs-xs);
    color: var(--text-secondary-dark);
  }

  .projects__row-action {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .projects__table-row--active {
    background: var(--gold);
  }

  .process__mobile {
    gap: var(--space-4);
  }

  .process__mobile::before {
    left: 24px;
  }

  .process__step-dot {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .faq__question {
    padding: var(--space-4) var(--space-5);
    font-size: var(--fs-sm);
  }

  .footer__hero {
    min-height: 200px;
  }

  .footer__hero-text {
    font-size: 60px;
  }

  .footer__hero-logo {
    width: clamp(240px, 70vw, 360px);
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__photo {
    height: 360px;
    width: calc(100% - 20px);
  }

  .hero__reviews {
    max-width: 260px;
  }

  .stat-card__value {
    font-size: 26px;
  }

  .hero__stats {
    gap: var(--space-4);
  }
}
