/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-light: #ff6b6b;
  --accent: #ff8500;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #333;
  --text-light: #666;
  --light: #f8f9fa;
  --white: #fff;
  --gray: #e9ecef;
  --gray-2: #dee2e6;
  --success: #2ecc71;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-card: 0 8px 30px rgba(0,0,0,.06);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section__title {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark);
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin: 12px auto 0;
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="zoom-in"] {
  transform: scale(.9);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230,57,70,.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230,57,70,.45);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
}

.btn__price {
  background: rgba(255,255,255,.2);
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.5px;
}

.logo span {
  color: var(--primary);
}

.nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  gap: 8px;
}

.nav.active {
  display: flex;
}

.nav__link {
  padding: 12px 16px;
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  transition: all var(--transition);
  color: var(--text);
}

.nav__link:hover {
  background: var(--light);
  color: var(--primary);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  text-align: center;
  margin-top: 4px;
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 4px 15px rgba(230,57,70,.3);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 80px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f5 50%, #f0f4ff 100%);
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,.4); }
  50% { box-shadow: 0 0 0 10px rgba(230,57,70,0); }
}

.hero__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero__price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__old-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.hero__price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
}

.hero__timer-label {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.timer__item {
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 65px;
}

.timer__item span {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timer__item small {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .7;
  margin-top: 4px;
}

.timer__sep {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.timer--light .timer__item {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(5px);
}

.timer--light .timer__sep {
  color: var(--white);
}

.hero__image {
  position: relative;
  max-width: 400px;
}

.hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  opacity: .15;
  z-index: -1;
}

.hero__image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: .1;
  z-index: -1;
}

/* =============================================
   DESCRIPTION
   ============================================= */
.description__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.description__text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-light);
}

.description__text strong {
  color: var(--dark);
}

.description__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  background: var(--light);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,57,70,.15);
}

.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery__item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  transform: scale(.9);
  transition: transform .4s ease;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  z-index: 10;
  transition: all var(--transition);
}

.lightbox__close:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  padding: 12px;
  z-index: 10;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,.25);
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
}

/* =============================================
   SPECS
   ============================================= */
.specs {
  background: var(--light);
}

.specs__table {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.specs__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray);
  transition: background var(--transition);
}

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

.specs__row:hover {
  background: #fef9f5;
}

.specs__label {
  font-weight: 600;
  color: var(--dark);
  font-size: .92rem;
}

.specs__value {
  color: var(--text-light);
  font-size: .92rem;
  text-align: right;
}

/* =============================================
   PACKAGE
   ============================================= */
.package__list {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-weight: 500;
}

.package__item:hover {
  background: #fff5f5;
  transform: translateX(6px);
}

.package__icon {
  font-size: 1.4rem;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--light);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-us__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.why-us__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-us__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.why-us__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-us__card p {
  font-size: .9rem;
  color: var(--text-light);
}

/* =============================================
   ORDER
   ============================================= */
.order {
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f5 100%);
}

.order__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.order__product {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.order__product img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

.order__product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.order__product-info p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.order__qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.order__qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 2px solid var(--gray-2);
}

.order__qty-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.order__qty-value {
  font-size: 1.3rem;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

.order__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order__old-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.order__total {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(230,57,70,.1);
}

.form-group textarea {
  resize: vertical;
}

.order__note {
  font-size: .82rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 0;
}

.cta-banner__inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #8b0000 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
}

.cta-banner__inner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-banner__inner p {
  font-size: 1rem;
  opacity: .9;
  margin-bottom: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.logo--footer {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%);
  transition: transform .4s ease;
}

.social-btn:hover::before {
  transform: translateX(0);
}

.social-btn--fb {
  background: #1877f2;
  box-shadow: 0 4px 15px rgba(24,119,242,.3);
}

.social-btn--fb:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24,119,242,.4);
}

.social-btn--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 15px rgba(220,39,67,.3);
}

.social-btn--ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220,39,67,.4);
}

.footer__copy {
  font-size: .82rem;
  opacity: .5;
}

/* =============================================
   SCROLL TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(230,57,70,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230,57,70,.5);
}

/* =============================================
   MODAL
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  transform: scale(.9);
  transition: transform .4s ease;
  position: relative;
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.modal__close:hover {
  color: var(--primary);
}

.modal__icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.modal__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal__content p {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* =============================================
   TABLET (min-width: 480px)
   ============================================= */
@media (min-width: 480px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   TABLET LARGE (min-width: 768px)
   ============================================= */
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__price {
    font-size: 2.8rem;
  }

  .description__grid {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .description__text,
  .description__image {
    flex: 1;
  }

  .order__product {
    flex-direction: row;
    align-items: center;
  }

  .order__product img {
    max-width: 250px;
    max-height: none;
  }

  .cta-banner__inner {
    padding: 60px 40px;
  }

  .cta-banner__inner h2 {
    font-size: 2rem;
  }
}

/* =============================================
   DESKTOP (min-width: 1024px)
   ============================================= */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 100px 0;
  }

  .header__inner {
    height: 70px;
  }

  .nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    gap: 4px;
  }

  .nav__link {
    padding: 8px 16px;
  }

  .burger {
    display: none;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__inner {
    flex-direction: row;
    gap: 60px;
  }

  .hero__content {
    text-align: left;
    flex: 1;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .hero__price-block {
    justify-content: flex-start;
  }

  .timer {
    justify-content: flex-start;
  }

  .hero__image {
    flex: 1;
    max-width: 500px;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .why-us__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .order__inner {
    flex-direction: row;
    max-width: 100%;
    gap: 40px;
  }

  .order__product,
  .order__form {
    flex: 1;
  }

  .order__product {
    flex-direction: column;
  }

  .order__product img {
    max-width: 100%;
    max-height: 300px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* =============================================
   LARGE DESKTOP (min-width: 1280px)
   ============================================= */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 3.6rem;
  }
}
