/* =========================
        SECTION-1
========================= */

.sec-1-main {
  position: relative;
  overflow: hidden;

  padding: 200px 20px 90px;

  background: linear-gradient(
    rgb(248 250 252 / 95%),
    rgba(248, 250, 252, 0.97)
  );

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sec-1-main::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);

  background-size: 50px 50px;

  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);

  pointer-events: none;
}

/* =========================
        CONTAINER
========================= */

.sec-1-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  width: 90%;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;
  align-items: center;
}

.sec-1-content,
.sec-1-visual {
  min-width: 0;
}

.sec-1-content {
  max-width: 540px;
}

/* =========================
          CONTENT
========================= */

.sec-1-tag {
  display: inline-flex;
  align-items: center;

  padding: 8px 16px;

  background: rgba(255, 255, 255, 0.85);

  border: 1px solid var(--border);

  border-radius: 999px;

  color: var(--primary);

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
}

.sec-1-title {
  margin-top: 20px;
  margin-bottom: 20px;

  font-family: var(--font-heading);

  font-size: clamp(2rem, 4vw, 3rem);

  font-weight: 400;

  line-height: 1.15;

  letter-spacing: -0.04em;

  color: var(--text-primary);
}

.sec-1-description {
  max-width: 520px;

  color: var(--text-secondary);

  font-size: 0.98rem;

  line-height: 1.9;
}

/* =========================
         IMAGE AREA
========================= */

.sec-1-visual {
  position: relative;
}

.sec-1-image-wrapper {
  position: relative;

  overflow: hidden;
}

/* =========================
           SLIDER
========================= */

.sec-1-slider {
  width: 100%;
  min-width: 0;
}

.sec-1-slider .slick-list {
  overflow: hidden;

  border-radius: 20px;
}

.sec-1-slider .slick-track {
  display: flex;
}

.sec-1-slider .slick-slide {
  height: inherit;
}

.sec-1-slider .slick-slide > div {
  height: 100%;
}

.sec-1-dashboard {
  width: 100%;

  height: 400px;

  object-fit: cover;

  display: block;

  border-radius: 20px;

  border: 1px solid var(--border);
}

/* =========================
      SLIDER CONTROLS
========================= */

.sec-1-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 12px;

  padding: 0;
}

.sec-1-slider-btn {
  width: 48px;
  height: 48px;

  border: 1px solid var(--border);

  border-radius: 14px;

  background: var(--secondary);
  color: var(--text-primary);

  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  transition: all 0.3s ease;
}

.sec-1-slider-btn:hover {
  background: var(--primary);
}

/* =========================
         SLICK DOTS
========================= */

.sec-1-slider .slick-prev,
.sec-1-slider .slick-next {
  display: none !important;
}

.sec-1-slider .slick-dots {
  bottom: 18px;
}

.sec-1-slider .slick-dots li {
  margin: 0 2px;
}

.sec-1-slider .slick-dots li button:before {
  color: #ffffff;

  opacity: 0.5;

  font-size: 9px;
}

.sec-1-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* =========================
          BADGES
========================= */

.sec-1-badge {
  position: absolute;

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid var(--border);

  border-radius: 14px;

  padding: 10px 16px;

  color: var(--text-primary);

  font-size: 0.82rem;
  font-weight: 700;

  backdrop-filter: blur(12px);

  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.sec-1-badge-top {
  top: -18px;
  left: -20px;
}

.sec-1-badge-middle {
  top: 38%;
  right: -20px;
}

.sec-1-badge-bottom {
  left: 40px;
  bottom: -18px;
}

/* =========================
        RESPONSIVE
========================= */

@media (max-width: 992px) {
  .sec-1-main {
    padding: 160px 20px 70px;
  }

  .sec-1-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sec-1-content {
    max-width: 100%;
    text-align: center;
  }

  .sec-1-description {
    max-width: 100%;
  }

  .sec-1-title {
    font-size: 2.3rem;
  }

  .sec-1-dashboard {
    height: 400px;
  }

  .sec-1-slider-controls {
    justify-content: center;
  }

  .sec-1-badge {
    display: none;
  }
}

@media (max-width: 576px) {
  .sec-1-title {
    font-size: 2rem;
  }

  .sec-1-description {
    font-size: 0.95rem;
  }

  .sec-1-dashboard {
    height: 280px;

    border-radius: 14px;
  }

  .sec-1-slider-btn {
    width: 44px;
    height: 44px;
  }
}



/* =========================
        SECTION-2
========================= */

.sec-2-main {
  padding: 100px 20px;
  background-color: var(--bg-secondary);
}

.sec-2-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.sec-2-heading-wrap {
  max-width: 750px;
  margin: 0 auto 70px;
  text-align: center;
}

.sec-2-tag {
  display: inline-flex;

  padding: 8px 16px;

  border-radius: 999px;

  background: rgba(51, 65, 85, 0.06);

  color: var(--primary);

  font-size: 0.75rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sec-2-title {
  margin: 18px 0;

  font-family: var(--font-heading);

  font-size: clamp(2rem, 4vw, 3rem);

  font-weight: 400;

  color: var(--text-primary);
}

.sec-2-description {
  color: var(--text-secondary);

  font-size: 1rem;

  line-height: 1.9;
}

.sec-2-services {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sec-2-card {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  padding: 30px;

  border-radius: 32px;

  background: var(--bg-secondary);

  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.sec-2-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.sec-2-card-reverse .sec-2-image-wrap {
  order: 2;
}

.sec-2-image-wrap {
  overflow: hidden;
  border-radius: 24px;
}

.sec-2-image {
  width: 100%;
  height: 360px;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.sec-2-card:hover .sec-2-image {
  transform: scale(1.05);
}

.sec-2-number {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--primary);

  font-size: 0.85rem;
  font-weight: 800;

  letter-spacing: 0.08em;
}

.sec-2-card-title {
  margin-bottom: 16px;

  font-family: var(--font-heading);

  font-size: 2rem;

  line-height: 1.3;

  color: var(--text-primary);
}

.sec-2-card-text {
  color: var(--text-secondary);

  font-size: 1rem;

  line-height: 1.9;
}

@media (max-width: 992px) {
  .sec-2-main {
    padding: 70px 20px;
  }

  .sec-2-card,
  .sec-2-card-reverse {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .sec-2-card-reverse .sec-2-image-wrap {
    order: 0;
  }

  .sec-2-image {
    height: 280px;
  }

  .sec-2-card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .sec-2-card {
    padding: 20px;
  }

  .sec-2-image {
    height: 220px;
  }

  .sec-2-title {
    font-size: 2rem;
  }

  .sec-2-card-title {
    font-size: 1.4rem;
  }
}




/* =========================
        SECTION-3
========================= */


.sec-3-main {
  padding: 100px 20px;
}

.sec-3-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.sec-3-card {
  position: relative;

  padding: 60px;

  background: var(--bg-secondary);

  border: 1px solid var(--border);

  border-radius: 32px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.sec-3-quote-mark {
  font-family: var(--font-heading);

  font-size: 6rem;

  line-height: 1;

  color: rgba(51, 65, 85, 0.12);

  margin-bottom: 10px;
}

.sec-3-testimonial {
  font-size: 1.3rem;

  line-height: 1.9;

  color: var(--text-primary);

  max-width: 720px;

  margin: 0 auto;
}

.sec-3-divider {
  width: 80px;
  height: 1px;

  background: var(--border);

  margin: 40px auto;
}

.sec-3-author {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;
}

.sec-3-avatar {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary);

  color: white;

  font-size: 0.95rem;
  font-weight: 700;
}

.sec-3-author-info {
  text-align: left;
}

.sec-3-author-name {
  font-size: 1rem;
  font-weight: 800;

  color: var(--text-primary);

  margin-bottom: 4px;
}

.sec-3-author-role {
  color: var(--text-muted);

  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sec-3-main {
    padding: 70px 20px;
  }

  .sec-3-card {
    padding: 35px 25px;
  }

  .sec-3-quote-mark {
    font-size: 4rem;
  }

  .sec-3-testimonial {
    font-size: 1.05rem;
  }

  .sec-3-author {
    flex-direction: column;
  }

  .sec-3-author-info {
    text-align: center;
  }
}
