*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --primary-blue: #254283;
  --secondary-gray: #b2b3b3;
  --bg-color: #FDFBF7;
  --dark-bg: #111111;
  --text-main: #1A1A1A;
  --text-muted: #666666;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  padding-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Abril Fatface', serif;
  color: var(--text-main);
  margin: 0;
  text-transform: uppercase;
}

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

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Hide default nav and footer to use the custom ones that match the design */
header .navbar-fixed,
header .sidenav,
header nav,
footer,
.page-footer {
  display: none !important;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-bg);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Custom Nav */
.custom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: var(--bg-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.custom-nav .logo {
  font-family: 'Abril Fatface', serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.custom-nav .links {
  display: flex;
  gap: 30px;
}

.custom-nav .links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  transition: color 0.3s;
}

.custom-nav .links a:hover,
.custom-nav .links a.active {
  color: var(--primary-blue);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 2.2rem;
  color: var(--primary-blue);
}

.custom-nav .actions {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  background: var(--primary-blue);
  color: #fff;
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Hero Section */
.hero-section {
  display: flex;
  min-height: 75vh;
  padding: 2rem 0 2rem 5%;
  align-items: center;
  position: relative;
  background: var(--bg-color);
  /* #FDFBF7 */
}

.hero-left {
  flex: 1.2;
  position: relative;
  z-index: 3;
  padding-right: 5%;
}

.hero-title {
  font-size: 4.8rem;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: 0px;
  font-weight: 900;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 450px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.new-year-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.circles {
  display: flex;
}

.circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.circle.c2 {
  background: var(--secondary-gray);
  margin-left: -20px;
  mix-blend-mode: multiply;
}

.ny-text {
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.9rem;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: 75vh;
}

.dark-bg-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #112031;
  z-index: 1;
}

.orange-square {
  position: absolute;
  top: 25%;
  left: -5%;
  width: 350px;
  height: 350px;
  background-color: var(--secondary-gray);
  z-index: 2;
}

.worker-wrapper {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 115%;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.worker-wrapper .hero-img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}



/* Section Headings */
.section-heading {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

/* New Arrivals */
.new-arrivals {
  padding: 6rem 5%;
}

.na-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 3rem;
}

.na-large {
  display: flex;
  flex-direction: column;
}

.na-large img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
  margin-bottom: 15px;
}

.na-large h3,
.na-small h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
  margin: 0;
  color: #000;
}

.na-small-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.na-small {
  display: flex;
  flex-direction: column;
}

.na-small img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
  margin-bottom: 15px;
}

/* Choose Styles */
.choose-styles {
  padding: 6rem 5%;
  text-align: center;
}

.choose-styles .section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: -2rem auto 3rem;
}

.style-pills {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid #ddd;
  background: transparent;
  padding: 8px 25px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.pill.active,
.pill:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

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

.product-card {
  display: flex;
  flex-direction: column;
}

.product-img {
  width: 100%;
  height: 320px;
  background: #f5f5f5;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card .stars {
  color: var(--primary-blue);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.product-card .reviews {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 5px;
}

.product-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.product-card .price {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.add-btn {
  border: 1px solid #ddd;
  background: transparent;
  padding: 10px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.add-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

/* Deals of the Month */
.deals-section {
  background: var(--dark-bg);
  color: #fff;
  padding: 6rem 5%;
}

.deals-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.deals-left img {
  width: 100%;
  background: #f5f5f5;
  object-fit: cover;
  max-height: 600px;
}

.deals-right .best-seller {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.deals-right h3 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.deals-right p {
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.6;
}

.deals-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.deals-price del {
  color: #666;
  font-size: 1.2rem;
  margin-left: 10px;
}

.countdown {
  display: flex;
  gap: 15px;
}

.cd-box {
  background: #222;
  padding: 15px;
  text-align: center;
  min-width: 80px;
  border: 1px solid #333;
}

.cd-box .num {
  display: block;
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  margin-bottom: 5px;
}

.cd-box .label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 5%;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testi-card {
  padding: 20px;
}

.testi-card .stars {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testi-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testi-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-card .author {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Footer Clone */
.footer-clone {
  background: #fff;
  padding: 4rem 5% 2rem;
  border-top: 1px solid #eee;
}

.fc-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 3rem;
}

.fc-logo {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

.fc-col h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.fc-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-col ul li {
  margin-bottom: 10px;
}

.fc-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.fc-col ul li a:hover {
  color: var(--primary-blue);
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    padding-top: 4rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .na-grid,
  .deals-container {
    grid-template-columns: 1fr;
  }

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

  .play-wrapper {
    display: none;
  }

  .hero-right {
    justify-content: center;
    margin-top: 2rem;
  }
}

/* ── Botón WhatsApp ── */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  padding: 14px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* ── Hero ── */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ── Categorías ── */
.categories-section {
  padding: 6rem 5%;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}

.cat-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cat-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 66, 131, 0.1);
}

.cat-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.cat-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.cat-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Por qué Redez ── */
.why-section {
  position: relative;
  background: linear-gradient(135deg, #111111 0%, #1a1a2e 100%);
  color: #fff;
  padding: 8rem 5%;
  overflow: hidden;
  z-index: 1;
}

.why-section::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 66, 131, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.why-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.why-section .section-heading {
  color: #fff;
  margin-bottom: 1rem;
}

.why-section .section-subheading {
  text-align: center;
  color: #bbb;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 2rem;
  justify-content: center;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.why-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(37, 66, 131, 0.5);
}

.why-item:hover::before {
  opacity: 1;
}

.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(37, 66, 131, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border: 1px solid rgba(37, 66, 131, 0.4);
  position: relative;
  z-index: 2;
  transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
}

.why-item:hover .why-icon-wrap {
  background: var(--primary-blue);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(37, 66, 131, 0.3);
}

.why-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

/* ── Cómo cotizar ── */
.how-section {
  padding: 6rem 5%;
  text-align: center;
  background: var(--bg-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 3rem auto 3.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), #25D366);
  z-index: 0;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: 48px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(37, 66, 131, 0.08);
}

.step-num {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 66, 131, 0.3);
}

.step-icon {
  font-size: 2.2rem;
  color: var(--primary-blue);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37, 66, 131, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 66, 131, 0.1);
}

.step-icon i {
  font-size: inherit;
}

.step-card:hover .step-icon {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 66, 131, 0.2);
}

.step-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* ── Productos destacados ── */
.featured-section {
  padding: 6rem 5%;
  background: #fff;
  margin-bottom: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.feat-card {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feat-img-wrap {
  height: 200px;
  background: #e8ecf5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-img-wrap .feat-icon {
  font-size: 4.5rem;
  color: var(--primary-blue);
  opacity: 0.35;
}

.feat-body {
  padding: 1.4rem 1.5rem;
}

.feat-tag {
  display: inline-block;
  background: rgba(37, 66, 131, 0.08);
  color: var(--primary-blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}

.feat-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-main);
  margin: 0 0 0.5rem;
}

.feat-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.2rem;
  line-height: 1.5;
}

.feat-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
  text-decoration: none;
}

.feat-link:hover {
  gap: 10px;
}

/* ── Pre-footer ── */
.pre-footer {
  background: var(--primary-blue);
  color: #f0f0f0;
  padding: 4rem 5% 2rem;
}

.pf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 2.5rem;
}

.pf-col h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: #fff;
}

.pf-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-col ul li {
  margin-bottom: 10px;
}

.pf-col ul li a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.pf-col ul li a:hover {
  color: #fff;
}

.pf-col p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 10px 0 0;
  max-width: 220px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .custom-nav {
    padding: 15px 5%;
  }

  .custom-nav .links {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    padding-top: 40px;
    gap: 40px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }

  .custom-nav .links.active {
    left: 0;
  }

  .hero-section,
  .categories-section,
  .why-section,
  .how-section,
  .featured-section {
    margin: 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 1.05rem;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
  }

  .btn-whatsapp, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    min-height: auto;
    margin-top: 3rem;
    width: 100%;
  }

  .worker-wrapper {
    position: relative;
    height: auto;
    width: 100%;
  }

  .worker-wrapper .hero-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .orange-square {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .dark-bg-panel {
    display: none;
  }

  .categories-section,
  .why-section,
  .how-section,
  .featured-section {
    padding: 4rem 5%;
  }

  .why-section::after,
  .why-section::before {
    display: none;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .steps-grid::before {
    display: none;
  }

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

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

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

  .section-heading {
    font-size: 1.8rem;
  }
}